projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e946217
)
dm raid1: fix do_failures
author
Ilpo Jarvinen
<ilpo.jarvinen@helsinki.fi>
Thu, 30 Oct 2008 13:33:07 +0000
(13:33 +0000)
committer
Alasdair G Kergon
<agk@redhat.com>
Thu, 30 Oct 2008 13:33:07 +0000
(13:33 +0000)
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>
drivers/md/dm-raid1.c
patch
|
blob
|
history
diff --git
a/drivers/md/dm-raid1.c
b/drivers/md/dm-raid1.c
index 92dcc06832a462a3210fbd521c323abce9b43cd0..9d7b53ed75b228e05bc865571afdd424da92f483 100644
(file)
--- a/
drivers/md/dm-raid1.c
+++ b/
drivers/md/dm-raid1.c
@@
-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;
}