diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2000-04-02 15:24:56 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2000-04-02 15:24:56 +0000 |
| commit | c244d2de435ed1913d6a7da017b205bffb44b36d (patch) | |
| tree | 46bc33c5a3d3f0f652e9af40acac38ed8c4492c6 /sys/gnu | |
| parent | 4c9805fafa5fb041fa369df26cd26fee579223fe (diff) | |
Notes
Diffstat (limited to 'sys/gnu')
| -rw-r--r-- | sys/gnu/ext2fs/ext2_bmap.c | 3 | ||||
| -rw-r--r-- | sys/gnu/fs/ext2fs/ext2_bmap.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/gnu/ext2fs/ext2_bmap.c b/sys/gnu/ext2fs/ext2_bmap.c index 2f2a4dc44fdc..d8c61b1e76a5 100644 --- a/sys/gnu/ext2fs/ext2_bmap.c +++ b/sys/gnu/ext2fs/ext2_bmap.c @@ -193,7 +193,8 @@ ufs_bmaparray(vp, bn, bnp, ap, nump, runp, runb) #endif bp->b_blkno = blkptrtodb(ump, daddr); bp->b_iocmd = BIO_READ; - bp->b_flags &= ~(B_INVAL|B_ERROR); + bp->b_flags &= ~B_INVAL; + bp->b_ioflags &= ~BIO_ERROR; vfs_busy_pages(bp, 0); BUF_STRATEGY(bp); curproc->p_stats->p_ru.ru_inblock++; /* XXX */ diff --git a/sys/gnu/fs/ext2fs/ext2_bmap.c b/sys/gnu/fs/ext2fs/ext2_bmap.c index 2f2a4dc44fdc..d8c61b1e76a5 100644 --- a/sys/gnu/fs/ext2fs/ext2_bmap.c +++ b/sys/gnu/fs/ext2fs/ext2_bmap.c @@ -193,7 +193,8 @@ ufs_bmaparray(vp, bn, bnp, ap, nump, runp, runb) #endif bp->b_blkno = blkptrtodb(ump, daddr); bp->b_iocmd = BIO_READ; - bp->b_flags &= ~(B_INVAL|B_ERROR); + bp->b_flags &= ~B_INVAL; + bp->b_ioflags &= ~BIO_ERROR; vfs_busy_pages(bp, 0); BUF_STRATEGY(bp); curproc->p_stats->p_ru.ru_inblock++; /* XXX */ |
