summaryrefslogtreecommitdiffstats
path: root/sys/fs/specfs
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/fs/specfs
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/fs/specfs')
-rw-r--r--sys/fs/specfs/spec_vnops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/specfs/spec_vnops.c b/sys/fs/specfs/spec_vnops.c
index ec5cc46..09860dd 100644
--- a/sys/fs/specfs/spec_vnops.c
+++ b/sys/fs/specfs/spec_vnops.c
@@ -869,7 +869,7 @@ spec_getpages(ap)
cnt.v_vnodepgsin += pcount;
/* Do the input. */
- BUF_STRATEGY(bp);
+ VOP_STRATEGY(bp->b_vp, bp);
s = splbio();
OpenPOWER on IntegriCloud