From 5df766a0f8bb66f325b7d378a18c0dc1d094a6e9 Mon Sep 17 00:00:00 2001 From: phk Date: Mon, 20 Mar 2000 11:29:10 +0000 Subject: Rename the existing BUF_STRATEGY() to DEV_STRATEGY() substitute BUF_WRITE(foo) for VOP_BWRITE(foo->b_vp, foo) substitute BUF_STRATEGY(foo) for VOP_STRATEGY(foo->b_vp, foo) This patch is machine generated except for the ccd.c and buf.h parts. --- sys/vm/vm_swap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/vm/vm_swap.c') diff --git a/sys/vm/vm_swap.c b/sys/vm/vm_swap.c index 11ca203..5b2b514 100644 --- a/sys/vm/vm_swap.c +++ b/sys/vm/vm_swap.c @@ -150,7 +150,7 @@ swapdev_strategy(ap) } pbreassignbuf(bp, sp->sw_vp); splx(s); - VOP_STRATEGY(bp->b_vp, bp); + BUF_STRATEGY(bp); return 0; } -- cgit v1.1