projects
/
profile
/
ivi
/
kernel-x86-ivi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1f0324c
)
md: revert change to raid_disks on failure.
author
NeilBrown
<neilb@suse.de>
Mon, 31 Jan 2011 00:57:42 +0000
(11:57 +1100)
committer
NeilBrown
<neilb@suse.de>
Mon, 31 Jan 2011 00:57:42 +0000
(11:57 +1100)
If we try to update_raid_disks and it fails, we should put
'delta_disks' back to zero. This is important because some code,
such as slot_store, assumes that delta_disks has been validated.
Signed-off-by: NeilBrown <neilb@suse.de>
drivers/md/md.c
patch
|
blob
|
history
diff --git
a/drivers/md/md.c
b/drivers/md/md.c
index
b76cfc8
..
e636e40
100644
(file)
--- a/
drivers/md/md.c
+++ b/
drivers/md/md.c
@@
-5578,6
+5578,8
@@
static int update_raid_disks(mddev_t *mddev, int raid_disks)
mddev->delta_disks = raid_disks - mddev->raid_disks;
rv = mddev->pers->check_reshape(mddev);
+ if (rv < 0)
+ mddev->delta_disks = 0;
return rv;
}