1
0
Fork 0

dm raid1: fix do_failures

Missing braces.  Commit 1f965b1943 (dm raid1: separate region_hash interface
part1) broke it.

Signed-off-by: Ilpo Jarvinen <ilpo.jarvinen@helsinki.fi>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Cc: Heinz Mauelshagen <hjm@redhat.com>
hifive-unleashed-5.1
Ilpo Jarvinen 2008-10-30 13:33:07 +00:00 committed by Alasdair G Kergon
parent e946217e4f
commit b34578a484
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}