aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMatthew Dillon <dillon@FreeBSD.org>1999-02-25 05:37:18 +0000
committerMatthew Dillon <dillon@FreeBSD.org>1999-02-25 05:37:18 +0000
commit82e5072fcd3a64a7c1bb8614b10bfc6695853a32 (patch)
tree2bb67db1037e33b75d52932bc282ca02832b5b4f /sys
parent06f7b4ebd107bd3efecfe08eb9e1ac3336d9c735 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/vm/vm_swap.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/vm/vm_swap.c b/sys/vm/vm_swap.c
index 3dfd4fc398495..8856332d4f792 100644
--- a/sys/vm/vm_swap.c
+++ b/sys/vm/vm_swap.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)vm_swap.c 8.5 (Berkeley) 2/17/94
- * $Id: vm_swap.c,v 1.58 1999/01/21 08:29:12 dillon Exp $
+ * $Id: vm_swap.c,v 1.59 1999/01/21 10:17:12 dillon Exp $
*/
#include "opt_devfs.h"
@@ -110,6 +110,14 @@ swwrite(dev_t dev, struct uio *uio, int ioflag)
return (physio(swstrategy, NULL, dev, 0, minphys, uio));
}
+/*
+ * swstrategy:
+ *
+ * Perform swap strategy interleave device selection
+ *
+ * The bp is expected to be B_BUSY and *not* B_DONE on call.
+ */
+
static void
swstrategy(bp)
register struct buf *bp;