aboutsummaryrefslogtreecommitdiff
path: root/sys/fs
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2003-01-05 10:03:57 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2003-01-05 10:03:57 +0000
commitf576a06e225547db504697780f60f101603b934f (patch)
treedf1f1dea920341a21ed857685a9dba680f393a3f /sys/fs
parent973418dbf50df21206133827a73a1f0efdffac3c (diff)
downloadsrc-f576a06e225547db504697780f60f101603b934f.tar.gz
src-f576a06e225547db504697780f60f101603b934f.zip
Don't take the detour over VOP_STRATEGY from spec_getpages, call our
own strategy directly.
Notes
Notes: svn path=/head/; revision=108707
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 a3d0d66e2618..0c0666243af3 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();