Commit 5aa2781d authored by Mikulas Patocka's avatar Mikulas Patocka Committed by Alasdair G Kergon

dm: store only first barrier error

With the following patches, more than one error can occur during
processing.  Change md->barrier_error so that only the first one is
recorded and returned to the caller.
Signed-off-by: default avatarMikulas Patocka <mpatocka@redhat.com>
Signed-off-by: default avatarAlasdair G Kergon <agk@redhat.com>
parent 2761e95f
...@@ -555,6 +555,7 @@ static void dec_pending(struct dm_io *io, int error) ...@@ -555,6 +555,7 @@ static void dec_pending(struct dm_io *io, int error)
* a per-device variable for error reporting. * a per-device variable for error reporting.
* Note that you can't touch the bio after end_io_acct * Note that you can't touch the bio after end_io_acct
*/ */
if (!md->barrier_error)
md->barrier_error = io_error; md->barrier_error = io_error;
end_io_acct(io); end_io_acct(io);
} else { } else {
...@@ -867,6 +868,7 @@ static void __split_and_process_bio(struct mapped_device *md, struct bio *bio) ...@@ -867,6 +868,7 @@ static void __split_and_process_bio(struct mapped_device *md, struct bio *bio)
if (!bio_barrier(bio)) if (!bio_barrier(bio))
bio_io_error(bio); bio_io_error(bio);
else else
if (!md->barrier_error)
md->barrier_error = -EIO; md->barrier_error = -EIO;
return; return;
} }
...@@ -1448,15 +1450,14 @@ static void dm_flush(struct mapped_device *md) ...@@ -1448,15 +1450,14 @@ static void dm_flush(struct mapped_device *md)
static void process_barrier(struct mapped_device *md, struct bio *bio) static void process_barrier(struct mapped_device *md, struct bio *bio)
{ {
dm_flush(md); md->barrier_error = 0;
if (bio_empty_barrier(bio)) { dm_flush(md);
bio_endio(bio, 0);
return;
}
if (!bio_empty_barrier(bio)) {
__split_and_process_bio(md, bio); __split_and_process_bio(md, bio);
dm_flush(md); dm_flush(md);
}
if (md->barrier_error != DM_ENDIO_REQUEUE) if (md->barrier_error != DM_ENDIO_REQUEUE)
bio_endio(bio, md->barrier_error); bio_endio(bio, md->barrier_error);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment