From dc4b3da26a98d09a314976ffc3a77a9cf66f31ba Mon Sep 17 00:00:00 2001 From: phk Date: Sun, 5 Jan 2003 10:03:57 +0000 Subject: Don't take the detour over VOP_STRATEGY from spec_getpages, call our own strategy directly. --- sys/fs/specfs/spec_vnops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/fs') 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(); -- cgit v1.1