summaryrefslogtreecommitdiffstats
path: root/sys/cam
diff options
context:
space:
mode:
authormjacob <mjacob@FreeBSD.org>2001-11-17 18:26:00 +0000
committermjacob <mjacob@FreeBSD.org>2001-11-17 18:26:00 +0000
commitda12fd2ad37f43c6b84ab0f63563b5fcdd574f3e (patch)
treec4d261f13413fb2fbf7ab8c0a23be0106a5a8ba4 /sys/cam
parentee98411598d98471e24fc1bc874ca75c0edc7442 (diff)
downloadFreeBSD-src-da12fd2ad37f43c6b84ab0f63563b5fcdd574f3e.zip
FreeBSD-src-da12fd2ad37f43c6b84ab0f63563b5fcdd574f3e.tar.gz
Be very generous with timeouts for synchronize cache. We may wait a very long
time in the cases where it really sends the drive out to lunch, but it also allows us to catch very wierd edge cases of strange drives that might take a very long time (emulated disk drives over a network, e.g.).
Diffstat (limited to 'sys/cam')
-rw-r--r--sys/cam/scsi/scsi_da.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/cam/scsi/scsi_da.c b/sys/cam/scsi/scsi_da.c
index 3c40866..7401249 100644
--- a/sys/cam/scsi/scsi_da.c
+++ b/sys/cam/scsi/scsi_da.c
@@ -1680,7 +1680,7 @@ dashutdown(void * arg, int howto)
/*begin_lba*/0, /* whole disk */
/*lb_count*/0,
SSD_FULL_SIZE,
- 5 * 60 * 1000);
+ 60 * 60 * 1000);
xpt_polled_action(&ccb);
OpenPOWER on IntegriCloud