Commit b34578a4 authored by Ilpo Jarvinen's avatar Ilpo Jarvinen Committed by Alasdair G Kergon

dm raid1: fix do_failures

Missing braces.  Commit 1f965b19 (dm raid1: separate region_hash interface
part1) broke it.
Signed-off-by: default avatarIlpo Jarvinen <ilpo.jarvinen@helsinki.fi>
Signed-off-by: default avatarAlasdair G Kergon <agk@redhat.com>
Cc: Heinz Mauelshagen <hjm@redhat.com>
parent e946217e
......@@ -656,9 +656,10 @@ static void do_failures(struct mirror_set *ms, struct bio_list *failures)
return;
if (!ms->log_failure) {
while ((bio = bio_list_pop(failures)))
while ((bio = bio_list_pop(failures))) {
ms->in_sync = 0;
dm_rh_mark_nosync(ms->rh, bio, bio->bi_size, 0);
}
return;
}
......
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