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/kern/vfs_aio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/kern/vfs_aio.c') diff --git a/sys/kern/vfs_aio.c b/sys/kern/vfs_aio.c index 10b1eab..3930d54 100644 --- a/sys/kern/vfs_aio.c +++ b/sys/kern/vfs_aio.c @@ -1032,7 +1032,7 @@ aio_qphysio(struct proc *p, struct aiocblist *aiocbe) splx(s); /* Perform transfer. */ - BUF_STRATEGY(bp, 0); + DEV_STRATEGY(bp, 0); s = splbio(); -- cgit v1.1