diff options
| author | Justin T. Gibbs <gibbs@FreeBSD.org> | 1997-04-04 19:50:04 +0000 |
|---|---|---|
| committer | Justin T. Gibbs <gibbs@FreeBSD.org> | 1997-04-04 19:50:04 +0000 |
| commit | 8d75a27388a1a1c9395a84c6da3fd86228276700 (patch) | |
| tree | 407a5f77b22b27c59fdd7092270e04b39e56a58f /sys/scsi | |
| parent | 4706824e3f49c88088ee2bfe3ef9a139a6273575 (diff) | |
Notes
Diffstat (limited to 'sys/scsi')
| -rw-r--r-- | sys/scsi/scsi_base.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/scsi/scsi_base.c b/sys/scsi/scsi_base.c index b4147611536c..369c4cd4895d 100644 --- a/sys/scsi/scsi_base.c +++ b/sys/scsi/scsi_base.c @@ -8,7 +8,7 @@ * file. * * Written by Julian Elischer (julian@dialix.oz.au) - * $Id: scsi_base.c,v 1.39.4.2 1997/01/30 22:49:29 joerg Exp $ + * $Id: scsi_base.c,v 1.39.4.3 1997/03/24 01:48:10 gibbs Exp $ */ #include "opt_bounce.h" @@ -25,9 +25,13 @@ #include <sys/uio.h> #include <sys/malloc.h> #include <sys/errno.h> + +#include <machine/clock.h> + #include <vm/vm.h> #include <vm/vm_param.h> #include <vm/pmap.h> + #include <scsi/scsi_all.h> #include <scsi/scsi_disk.h> #include <scsi/scsiconf.h> @@ -754,6 +758,7 @@ sc_err1(xs) * no, we could be at interrupt context.. use * timeout(scsi_resubmit,xs,hz); [jre] (not implimenteed yet) */ + DELAY(1000); case XS_TIMEOUT: return sc_done(xs, SCSIRET_DO_RETRY); |
