Convert VOP_STRATEGY to VOP_SPECSTRATEGY in the generic getpages and

the pager input for small filesystems.
This commit is contained in:
Poul-Henning Kamp 2003-01-05 20:32:03 +00:00
parent 5bb97e771a
commit 5266a767e5

View File

@ -493,7 +493,7 @@ vnode_pager_input_smlfs(object, m)
runningbufspace += bp->b_runningbufspace;
/* do the input */
VOP_STRATEGY(bp->b_vp, bp);
VOP_SPECSTRATEGY(bp->b_vp, bp);
/* we definitely need to be at splvm here */
@ -823,7 +823,7 @@ vnode_pager_generic_getpages(vp, m, bytecount, reqpage)
cnt.v_vnodepgsin += count;
/* do the input */
VOP_STRATEGY(bp->b_vp, bp);
VOP_SPECSTRATEGY(bp->b_vp, bp);
s = splvm();
/* we definitely need to be at splvm here */