summaryrefslogtreecommitdiffstats
path: root/sys/gnu/ext2fs
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2003-01-03 06:32:15 +0000
committerphk <phk@FreeBSD.org>2003-01-03 06:32:15 +0000
commitdaf6948653371fc707e009c01cb68aaf25092743 (patch)
treec1a67015350cd075392cc71ce5ac0f487b1e3711 /sys/gnu/ext2fs
parentcd377db9e281126ef0a7198c61f61ba5ebfea726 (diff)
downloadFreeBSD-src-daf6948653371fc707e009c01cb68aaf25092743.zip
FreeBSD-src-daf6948653371fc707e009c01cb68aaf25092743.tar.gz
Convert calls to BUF_STRATEGY to VOP_STRATEGY calls. This is a no-op since
all BUF_STRATEGY did in the first place was call VOP_STRATEGY.
Diffstat (limited to 'sys/gnu/ext2fs')
-rw-r--r--sys/gnu/ext2fs/ext2_bmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/gnu/ext2fs/ext2_bmap.c b/sys/gnu/ext2fs/ext2_bmap.c
index 31ed99b..69a069f 100644
--- a/sys/gnu/ext2fs/ext2_bmap.c
+++ b/sys/gnu/ext2fs/ext2_bmap.c
@@ -196,7 +196,7 @@ ext2_bmaparray(vp, bn, bnp, runp, runb)
bp->b_flags &= ~B_INVAL;
bp->b_ioflags &= ~BIO_ERROR;
vfs_busy_pages(bp, 0);
- BUF_STRATEGY(bp);
+ VOP_STRATEGY(bp->b_vp, bp);
curproc->p_stats->p_ru.ru_inblock++; /* XXX */
error = bufwait(bp);
if (error) {
OpenPOWER on IntegriCloud