mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
IB/hfi1: Send 'reboot' as planned down remote reason
On host shutdown, driver sends 'SMA_Disabled' as a reason for link down. This is incorrect. Send 'reboot' as a linkdown reason. Signed-off-by: Jan Sokolowski <jan.sokolowski@intel.com> Reviewed-by: Jakub Byczkowski <jakub.byczkowski@intel.com> Signed-off-by: Dennis Dalessandro <dennis.dalessandro@intel.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:
parent
a276672ed7
commit
e8d5aff650
1 changed files with 3 additions and 3 deletions
|
@ -9786,9 +9786,9 @@ void hfi1_quiet_serdes(struct hfi1_pportdata *ppd)
|
|||
cancel_delayed_work_sync(&ppd->start_link_work);
|
||||
|
||||
ppd->offline_disabled_reason =
|
||||
HFI1_ODR_MASK(OPA_LINKDOWN_REASON_SMA_DISABLED);
|
||||
set_link_down_reason(ppd, OPA_LINKDOWN_REASON_SMA_DISABLED, 0,
|
||||
OPA_LINKDOWN_REASON_SMA_DISABLED);
|
||||
HFI1_ODR_MASK(OPA_LINKDOWN_REASON_REBOOT);
|
||||
set_link_down_reason(ppd, OPA_LINKDOWN_REASON_REBOOT, 0,
|
||||
OPA_LINKDOWN_REASON_REBOOT);
|
||||
set_link_state(ppd, HLS_DN_OFFLINE);
|
||||
|
||||
/* disable the port */
|
||||
|
|
Loading…
Reference in a new issue