B_ERROR is BIO_ERROR on -current.

Now it compiles, I don't know if it works.
This commit is contained in:
Poul-Henning Kamp 2001-11-04 08:53:38 +00:00
parent 54056d2da9
commit d7c95b6e27
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=86009
2 changed files with 2 additions and 2 deletions

View file

@ -436,7 +436,7 @@ cd9660_blkatoff(vp, offset, res, bpp)
&bp->b_blkno, NULL, NULL); &bp->b_blkno, NULL, NULL);
if (error) { if (error) {
bp->b_error = error; bp->b_error = error;
bp->b_flags |= B_ERROR; bp->b_flags |= BIO_ERROR;
brelse(bp); brelse(bp);
*bpp = NULL; *bpp = NULL;
return (error); return (error);

View file

@ -436,7 +436,7 @@ cd9660_blkatoff(vp, offset, res, bpp)
&bp->b_blkno, NULL, NULL); &bp->b_blkno, NULL, NULL);
if (error) { if (error) {
bp->b_error = error; bp->b_error = error;
bp->b_flags |= B_ERROR; bp->b_flags |= BIO_ERROR;
brelse(bp); brelse(bp);
*bpp = NULL; *bpp = NULL;
return (error); return (error);