diff options
author | Steven Hartland <smh@FreeBSD.org> | 2014-11-21 21:01:24 +0000 |
---|---|---|
committer | Steven Hartland <smh@FreeBSD.org> | 2014-11-21 21:01:24 +0000 |
commit | 85c9dd9d895261632d58cf98da6608b93dd5d7f8 (patch) | |
tree | 5ebdafcf9900ec8ee871257dadfca8fdc7f4aa95 /sys/dev/mps | |
parent | 7db6c5cde6083b3cf76f1f85225c19052722dfd5 (diff) | |
download | src-85c9dd9d895261632d58cf98da6608b93dd5d7f8.tar.gz src-85c9dd9d895261632d58cf98da6608b93dd5d7f8.zip |
Notes
Diffstat (limited to 'sys/dev/mps')
-rw-r--r-- | sys/dev/mps/mps_sas.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mps/mps_sas.c b/sys/dev/mps/mps_sas.c index e729d1c552c3..b2481e1c993c 100644 --- a/sys/dev/mps/mps_sas.c +++ b/sys/dev/mps/mps_sas.c @@ -1839,8 +1839,8 @@ mpssas_action_scsiio(struct mpssas_softc *sassc, union ccb *ccb) } } - callout_reset(&cm->cm_callout, (ccb->ccb_h.timeout * hz) / 1000, - mpssas_scsiio_timeout, cm); + callout_reset_sbt(&cm->cm_callout, SBT_1MS * ccb->ccb_h.timeout, 0, + mpssas_scsiio_timeout, cm, 0); targ->issued++; targ->outstanding++; |