mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
md/raid1: submit_bio_wait() returns 0 on success
commit203d27b022upstream. This was introduced with9e882242c6which changed the return value of submit_bio_wait() to return != 0 on error, but didn't update the caller accordingly. Fixes:9e882242c6("block: Add submit_bio_wait(), remove from md") Reported-by: Bill Kuzeja <William.Kuzeja@stratus.com> Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: NeilBrown <neilb@suse.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
4f277ccd28
commit
26b70a8981
@@ -2248,7 +2248,7 @@ static int narrow_write_error(struct r1bio *r1_bio, int i)
|
|||||||
bio_trim(wbio, sector - r1_bio->sector, sectors);
|
bio_trim(wbio, sector - r1_bio->sector, sectors);
|
||||||
wbio->bi_iter.bi_sector += rdev->data_offset;
|
wbio->bi_iter.bi_sector += rdev->data_offset;
|
||||||
wbio->bi_bdev = rdev->bdev;
|
wbio->bi_bdev = rdev->bdev;
|
||||||
if (submit_bio_wait(WRITE, wbio) == 0)
|
if (submit_bio_wait(WRITE, wbio) < 0)
|
||||||
/* failure! */
|
/* failure! */
|
||||||
ok = rdev_set_badblocks(rdev, sector,
|
ok = rdev_set_badblocks(rdev, sector,
|
||||||
sectors, 0)
|
sectors, 0)
|
||||||
|
|||||||
Reference in New Issue
Block a user