aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi
diff options
context:
space:
mode:
authorJeff Skirvin <jeffrey.d.skirvin@intel.com>2011-06-20 17:09:31 -0400
committerDan Williams <dan.j.williams@intel.com>2011-07-03 07:04:50 -0400
commit9b917987fd16d0687afe550a02f68099419f5d43 (patch)
treec7fa80125750e2c624a271867eca5d3e61e25aae /drivers/scsi
parentfd0527ab15bfd96f04b084b1b2550f80cf151b60 (diff)
isci: Disable link layer hang detection
Some targets exceed the hang detect timer. Use the OS timeout to catch hung tasks. Signed-off-by: Jeff Skirvin <jeffrey.d.skirvin@intel.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r--drivers/scsi/isci/phy.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/scsi/isci/phy.c b/drivers/scsi/isci/phy.c
index 784c9a71333a..93a401dfbd30 100644
--- a/drivers/scsi/isci/phy.c
+++ b/drivers/scsi/isci/phy.c
@@ -242,11 +242,8 @@ scic_sds_phy_link_layer_initialization(struct scic_sds_phy *sci_phy,
242 &sci_phy->link_layer_registers->maximum_arbitration_wait_timer_timeout); 242 &sci_phy->link_layer_registers->maximum_arbitration_wait_timer_timeout);
243 } 243 }
244 244
245 /* 245 /* Disable link layer hang detection, rely on the OS timeout for I/O timeouts. */
246 * Set the link layer hang detection to 500ms (0x1F4) from its default 246 writel(0, &sci_phy->link_layer_registers->link_layer_hang_detection_timeout);
247 * value of 128ms. Max value is 511 ms.
248 */
249 writel(0x1F4, &sci_phy->link_layer_registers->link_layer_hang_detection_timeout);
250 247
251 /* We can exit the initial state to the stopped state */ 248 /* We can exit the initial state to the stopped state */
252 sci_change_state(&sci_phy->sm, SCI_PHY_STOPPED); 249 sci_change_state(&sci_phy->sm, SCI_PHY_STOPPED);