summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rdma/hfi1/chip.c
diff options
context:
space:
mode:
authorDean Luick2015-12-01 21:38:16 +0100
committerGreg Kroah-Hartman2015-12-21 22:51:55 +0100
commit05087f3b224ad42086c019ff11679298faeb50f2 (patch)
tree2543b278640995cdf2663142888beed1f765c6ad /drivers/staging/rdma/hfi1/chip.c
parentstaging/rdma/hfi1: Add one-time LCB reset (diff)
downloadkernel-qcow2-linux-05087f3b224ad42086c019ff11679298faeb50f2.tar.gz
kernel-qcow2-linux-05087f3b224ad42086c019ff11679298faeb50f2.tar.xz
kernel-qcow2-linux-05087f3b224ad42086c019ff11679298faeb50f2.zip
staging/rdma/hfi1: Extend quiet timeout
The longest quiet timeout is now 6s. Extend the driver wait to 6s. The driver wasn't following our internal specification: 6 seconds. This patch corrects that issue. Reviewed-by: Dennis Dalessandro <dennis.dalessandro@intel.com> Signed-off-by: Dean Luick <dean.luick@intel.com> Signed-off-by: Jubin John <jubin.john@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rdma/hfi1/chip.c')
-rw-r--r--drivers/staging/rdma/hfi1/chip.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/staging/rdma/hfi1/chip.c b/drivers/staging/rdma/hfi1/chip.c
index 62813052fc99..03a665f0254e 100644
--- a/drivers/staging/rdma/hfi1/chip.c
+++ b/drivers/staging/rdma/hfi1/chip.c
@@ -6379,9 +6379,10 @@ static int goto_offline(struct hfi1_pportdata *ppd, u8 rem_reason)
* depending on how the link went down. The 8051 firmware
* will observe the needed wait time and only move to ready
* when that is completed. The largest of the quiet timeouts
- * is 2.5s, so wait that long and then a bit more.
+ * is 6s, so wait that long and then at least 0.5s more for
+ * other transitions, and another 0.5s for a buffer.
*/
- ret = wait_fm_ready(dd, 3000);
+ ret = wait_fm_ready(dd, 7000);
if (ret) {
dd_dev_err(dd,
"After going offline, timed out waiting for the 8051 to become ready to accept host requests\n");