diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1993-09-20 06:28:13 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1993-09-20 06:28:13 +0000 |
commit | 00d21e535d9f681719a7a1d3cfaa240aab707a0f (patch) | |
tree | 3b013d28d12c91fe5d581f4ca066b756d61f00b0 /sys/scsi | |
parent | c56db4c78ab571bc91840bb8a394911b9d15e7ee (diff) | |
download | FreeBSD-src-00d21e535d9f681719a7a1d3cfaa240aab707a0f.zip FreeBSD-src-00d21e535d9f681719a7a1d3cfaa240aab707a0f.tar.gz |
Increase the timeout from 2000 counts to 6000 counts, reported by someone
on the net (I lost the mail). This should fix some units not showing up
during probes.
Diffstat (limited to 'sys/scsi')
-rw-r--r-- | sys/scsi/sd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/scsi/sd.c b/sys/scsi/sd.c index c587e77..3ee38d2 100644 --- a/sys/scsi/sd.c +++ b/sys/scsi/sd.c @@ -14,7 +14,7 @@ * * Ported to run under 386BSD by Julian Elischer (julian@dialix.oz.au) Sept 1992 * - * $Id: sd.c,v 1.8 1993/09/10 18:03:21 ats Exp $ + * $Id: sd.c,v 1.9 1993/09/20 06:27:04 rgrimes Exp $ */ #define SPLSD splbio @@ -807,7 +807,7 @@ sd_size(unit, flags) sizeof(scsi_cmd), &rdcap, sizeof(rdcap), - 2000, + 6000, NULL, flags | SCSI_DATA_IN) != 0) { |