summaryrefslogtreecommitdiffstats
path: root/sys/scsi
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1994-04-05 03:23:32 +0000
committerdg <dg@FreeBSD.org>1994-04-05 03:23:32 +0000
commit9c6c99e9ff56c7cd0b5685b0c99f1009332e1f5b (patch)
tree3746093c92bf7a5e609bf02610875796510f0b51 /sys/scsi
parentb4d4ec15af099c3255c12641f3b8e6fafa4f1113 (diff)
downloadFreeBSD-src-9c6c99e9ff56c7cd0b5685b0c99f1009332e1f5b.zip
FreeBSD-src-9c6c99e9ff56c7cd0b5685b0c99f1009332e1f5b.tar.gz
from John Dyson:
1) fixed some bugs related to the bounce buffer code 2) vnode pager now supports clustered pageouts 3) experimental code for clustering all I/O via a new "cldisksort" 4) added >16MB check to Bustek driver 5) made some experimental algorithmic changes to the pageout daemon 6) fixed bugs in truncating mapped files (esp when mapped via NFS) 7) reorganized vnode pager I/O code
Diffstat (limited to 'sys/scsi')
-rw-r--r--sys/scsi/sd.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/scsi/sd.c b/sys/scsi/sd.c
index aa2b524..7831071 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.20 1994/03/15 20:49:09 ats Exp $
+ * $Id: sd.c,v 1.21 1994/03/23 09:15:59 davidg Exp $
*/
#define SPLSD splbio
@@ -430,7 +430,11 @@ sdstrategy(bp)
/*
* Place it in the queue of disk activities for this disk
*/
+#if 0
+ cldisksort(dp, bp, 64*1024);
+#else
disksort(dp, bp);
+#endif
/*
* Tell the device to get going on the transfer if it's
OpenPOWER on IntegriCloud