summaryrefslogtreecommitdiffstats
path: root/sys/fs
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2003-01-05 10:03:57 +0000
committerphk <phk@FreeBSD.org>2003-01-05 10:03:57 +0000
commitdc4b3da26a98d09a314976ffc3a77a9cf66f31ba (patch)
treedf1f1dea920341a21ed857685a9dba680f393a3f /sys/fs
parent759be6dc0183755bfcca73876abde9d1afa46ac9 (diff)
downloadFreeBSD-src-dc4b3da26a98d09a314976ffc3a77a9cf66f31ba.zip
FreeBSD-src-dc4b3da26a98d09a314976ffc3a77a9cf66f31ba.tar.gz
Don't take the detour over VOP_STRATEGY from spec_getpages, call our
own strategy directly.
Diffstat (limited to 'sys/fs')
-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 a3d0d66..0c06662 100644
--- a/sys/fs/specfs/spec_vnops.c
+++ b/sys/fs/specfs/spec_vnops.c
@@ -862,7 +862,7 @@ spec_getpages(ap)
cnt.v_vnodepgsin += pcount;
/* Do the input. */
- VOP_STRATEGY(bp->b_vp, bp);
+ spec_xstrategy(bp->b_vp, bp);
s = splbio();
OpenPOWER on IntegriCloud