aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_physio.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2000-03-20 11:29:10 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2000-03-20 11:29:10 +0000
commitb99c307a21423935df9af6a532033f28b62e2966 (patch)
tree0a181e005933f6282f198aeeb060a7edd54d0817 /sys/kern/kern_physio.c
parent3ef5063241caabe589ea159cdd84b6478e2d2010 (diff)
downloadsrc-b99c307a21423935df9af6a532033f28b62e2966.tar.gz
src-b99c307a21423935df9af6a532033f28b62e2966.zip
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.
Notes
Notes: svn path=/head/; revision=58349
Diffstat (limited to 'sys/kern/kern_physio.c')
-rw-r--r--sys/kern/kern_physio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_physio.c b/sys/kern/kern_physio.c
index 1510bf1f562e..f5b81e8bc555 100644
--- a/sys/kern/kern_physio.c
+++ b/sys/kern/kern_physio.c
@@ -109,7 +109,7 @@ physio(dev_t dev, struct uio *uio, int ioflag)
vmapbuf(bp);
}
- BUF_STRATEGY(bp, 0);
+ DEV_STRATEGY(bp, 0);
spl = splbio();
while ((bp->b_flags & B_DONE) == 0)
tsleep((caddr_t)bp, PRIBIO, "physstr", 0);