aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/lpfc/lpfc_scsi.c
diff options
context:
space:
mode:
authorJames Smart <james.smart@emulex.com>2013-04-17 20:14:58 -0400
committerJames Bottomley <JBottomley@Parallels.com>2013-05-02 15:39:54 -0400
commit256ec0d05f8050339a9cc4e92bdc96cec1ce82bd (patch)
tree41efc3e2b178401629b9a201011d06c3e4133d9a /drivers/scsi/lpfc/lpfc_scsi.c
parent737d42483ed843b93b67bae9a166bc9fdbc6070b (diff)
[SCSI] lpfc 8.3.39: Remove driver dependency on HZ
Signed-off-by: James Smart <james.smart@emulex.com> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/lpfc/lpfc_scsi.c')
-rw-r--r--drivers/scsi/lpfc/lpfc_scsi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/lpfc/lpfc_scsi.c b/drivers/scsi/lpfc/lpfc_scsi.c
index dacde58b602c..d096402ae4d7 100644
--- a/drivers/scsi/lpfc/lpfc_scsi.c
+++ b/drivers/scsi/lpfc/lpfc_scsi.c
@@ -4771,7 +4771,7 @@ lpfc_abort_handler(struct scsi_cmnd *cmnd)
4771 /* Wait for abort to complete */ 4771 /* Wait for abort to complete */
4772 wait_event_timeout(waitq, 4772 wait_event_timeout(waitq,
4773 (lpfc_cmd->pCmd != cmnd), 4773 (lpfc_cmd->pCmd != cmnd),
4774 (2*vport->cfg_devloss_tmo*HZ)); 4774 msecs_to_jiffies(2*vport->cfg_devloss_tmo*1000));
4775 lpfc_cmd->waitq = NULL; 4775 lpfc_cmd->waitq = NULL;
4776 4776
4777 if (lpfc_cmd->pCmd == cmnd) { 4777 if (lpfc_cmd->pCmd == cmnd) {