diff options
Diffstat (limited to 'sys/dev/mcd/mcd.c')
-rw-r--r-- | sys/dev/mcd/mcd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/mcd/mcd.c b/sys/dev/mcd/mcd.c index 8b41449..70614d7 100644 --- a/sys/dev/mcd/mcd.c +++ b/sys/dev/mcd/mcd.c @@ -402,7 +402,7 @@ mcdstrategy(struct buf *bp) unit, (long)bp->b_blkno, bp->b_bcount); printf("mcd: mcdstratregy failure"); bp->b_error = EINVAL; - bp->b_flags |= B_ERROR; + bp->b_ioflags |= BIO_ERROR; goto bad; } @@ -448,7 +448,7 @@ MCD_TRACE("strategy: drive not valid\n"); return; bad: - bp->b_flags |= B_ERROR; + bp->b_ioflags |= BIO_ERROR; done: bp->b_resid = bp->b_bcount; biodone(bp); @@ -1184,7 +1184,7 @@ readerr: } harderr: /* invalidate the buffer */ - bp->b_flags |= B_ERROR; + bp->b_ioflags |= BIO_ERROR; bp->b_resid = bp->b_bcount; biodone(bp); |