block: switch bios to blk_status_t
Replace bi_error with a new bi_status to allow for a clear conversion. Note that device mapper overloaded bi_error with a private value, which we'll have to keep arround at least for now and thus propagate to a proper blk_status_t value. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jens Axboe <axboe@fb.com>
This commit is contained in:
committed by
Jens Axboe
parent
fc17b6534e
commit
4e4cbee93d
@@ -2205,7 +2205,7 @@ static void lbmIODone(struct bio *bio)
|
||||
|
||||
bp->l_flag |= lbmDONE;
|
||||
|
||||
if (bio->bi_error) {
|
||||
if (bio->bi_status) {
|
||||
bp->l_flag |= lbmERROR;
|
||||
|
||||
jfs_err("lbmIODone: I/O error in JFS log");
|
||||
|
||||
@@ -280,7 +280,7 @@ static void metapage_read_end_io(struct bio *bio)
|
||||
{
|
||||
struct page *page = bio->bi_private;
|
||||
|
||||
if (bio->bi_error) {
|
||||
if (bio->bi_status) {
|
||||
printk(KERN_ERR "metapage_read_end_io: I/O error\n");
|
||||
SetPageError(page);
|
||||
}
|
||||
@@ -337,7 +337,7 @@ static void metapage_write_end_io(struct bio *bio)
|
||||
|
||||
BUG_ON(!PagePrivate(page));
|
||||
|
||||
if (bio->bi_error) {
|
||||
if (bio->bi_status) {
|
||||
printk(KERN_ERR "metapage_write_end_io: I/O error\n");
|
||||
SetPageError(page);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user