Use VOP_SPECSTRATEGY() instead of VOP_STRATEGY().

This commit is contained in:
Poul-Henning Kamp 2003-01-28 21:46:21 +00:00
parent 5bd38a39ed
commit a439334437
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=110005
2 changed files with 2 additions and 2 deletions

View File

@ -1528,7 +1528,7 @@ ext2_strategy(ap)
}
vp = ip->i_devvp;
bp->b_dev = vp->v_rdev;
VOP_STRATEGY(vp, bp);
VOP_SPECSTRATEGY(vp, bp);
return (0);
}

View File

@ -1528,7 +1528,7 @@ ext2_strategy(ap)
}
vp = ip->i_devvp;
bp->b_dev = vp->v_rdev;
VOP_STRATEGY(vp, bp);
VOP_SPECSTRATEGY(vp, bp);
return (0);
}