summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsteve <steve@FreeBSD.org>1997-08-23 21:05:32 +0000
committersteve <steve@FreeBSD.org>1997-08-23 21:05:32 +0000
commite6d5ddc8d4f66ec3d8fbdc8726ab087791686d35 (patch)
treed78ee941271a3ad82c99915da8a41e0c668555f1
parent6180152ea763a704711c59b68accdd938d7ceda1 (diff)
downloadFreeBSD-src-e6d5ddc8d4f66ec3d8fbdc8726ab087791686d35.zip
FreeBSD-src-e6d5ddc8d4f66ec3d8fbdc8726ab087791686d35.tar.gz
Increase the retry timeouts.
PR: kern/3447 Submitted by: dawes@rf900.physics.usyd.edu.au
-rw-r--r--sys/scsi/st.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/scsi/st.c b/sys/scsi/st.c
index 49bf3d0..c00fe71 100644
--- a/sys/scsi/st.c
+++ b/sys/scsi/st.c
@@ -12,7 +12,7 @@
* on the understanding that TFS is not responsible for the correct
* functioning of this software in any circumstances.
*
- * $Id: st.c,v 1.77 1997/03/23 06:33:53 bde Exp $
+ * $Id: st.c,v 1.78 1997/03/24 11:25:03 bde Exp $
*/
/*
@@ -968,7 +968,7 @@ ststart(unit, flags)
(u_char *) bp->b_un.b_addr,
bp->b_bcount,
0, /* can't retry a read on a tape really */
- 100000,
+ 1000000,
bp,
flags) == SUCCESSFULLY_QUEUED) {
} else {
@@ -1213,7 +1213,7 @@ st_read(unit, buf, size, flags)
(u_char *) buf,
size,
0, /* not on io commands */
- 100000,
+ 1000000,
NULL,
flags | SCSI_DATA_IN));
}
@@ -1608,7 +1608,7 @@ st_write_filemarks(unit, number, flags)
0,
0,
0, /* no retries, just fail */
- 100000, /* 10 secs.. (may need to repos head ) */
+ 1000000, /* 100 secs.. (may need to repos head ) */
NULL,
flags);
}
OpenPOWER on IntegriCloud