diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2004-10-24 20:03:41 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2004-10-24 20:03:41 +0000 |
| commit | b792bebeea678f9c06d3ac261f0fa969916eb223 (patch) | |
| tree | 220ef3feb4e3c7063a6550b7466cbd964e346c84 /sys/gnu/ext2fs | |
| parent | 9d6c85734da768cfcde6fc3d9d327444be87e612 (diff) | |
Notes
Diffstat (limited to 'sys/gnu/ext2fs')
| -rw-r--r-- | sys/gnu/ext2fs/ext2_bmap.c | 2 | ||||
| -rw-r--r-- | sys/gnu/ext2fs/ext2_inode.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/gnu/ext2fs/ext2_bmap.c b/sys/gnu/ext2fs/ext2_bmap.c index 7c0dfe57c8181..fa93bc61e08a7 100644 --- a/sys/gnu/ext2fs/ext2_bmap.c +++ b/sys/gnu/ext2fs/ext2_bmap.c @@ -193,7 +193,7 @@ ext2_bmaparray(vp, bn, bnp, runp, runb) bp->b_ioflags &= ~BIO_ERROR; vfs_busy_pages(bp, 0); bp->b_iooffset = dbtob(bp->b_blkno); - VOP_STRATEGY(bp->b_vp, bp); + bstrategy(bp); curproc->p_stats->p_ru.ru_inblock++; /* XXX */ error = bufwait(bp); if (error) { diff --git a/sys/gnu/ext2fs/ext2_inode.c b/sys/gnu/ext2fs/ext2_inode.c index 0fbf51f92d9d6..24f41d9a73433 100644 --- a/sys/gnu/ext2fs/ext2_inode.c +++ b/sys/gnu/ext2fs/ext2_inode.c @@ -399,7 +399,7 @@ ext2_indirtrunc(ip, lbn, dbn, lastbn, level, countp) bp->b_blkno = dbn; vfs_busy_pages(bp, 0); bp->b_iooffset = dbtob(bp->b_blkno); - VOP_STRATEGY(vp, bp); + bstrategy(bp); error = bufwait(bp); } if (error) { |
