aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2010-02-08 20:31:47 -0500
committerNeilBrown <neilb@suse.de>2010-02-09 00:34:29 -0500
commit9eb07c259207d048e3ee8be2a77b2a4680b1edd4 (patch)
treeaad711b891fd43920c832da2158aab0764c7fe49 /drivers/md
parent6339204ecc2aa2067a99595522de0403f0854bb8 (diff)
md: fix 'degraded' calculation when starting a reshape.
This code was written long ago when it was not possible to reshape a degraded array. Now it is so the current level of degraded-ness needs to be taken in to account. Also newly addded devices should only reduce degradedness if they are deemed to be in-sync. In particular, if you convert a RAID5 to a RAID6, and increase the number of devices at the same time, then the 5->6 conversion will make the array degraded so the current code will produce a wrong value for 'degraded' - "-1" to be precise. If the reshape runs to completion end_reshape will calculate a correct new value for 'degraded', but if a device fails during the reshape an incorrect decision might be made based on the incorrect value of "degraded". This patch is suitable for 2.6.32-stable and if they are still open, 2.6.31-stable and 2.6.30-stable as well. Cc: stable@kernel.org Reported-by: Michael Evans <mjevans1983@gmail.com> Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'drivers/md')
-rw-r--r--drivers/md/raid5.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c
index e84204eb12df..b5629c3e14fa 100644
--- a/drivers/md/raid5.c
+++ b/drivers/md/raid5.c
@@ -5464,11 +5464,11 @@ static int raid5_start_reshape(mddev_t *mddev)
5464 !test_bit(Faulty, &rdev->flags)) { 5464 !test_bit(Faulty, &rdev->flags)) {
5465 if (raid5_add_disk(mddev, rdev) == 0) { 5465 if (raid5_add_disk(mddev, rdev) == 0) {
5466 char nm[20]; 5466 char nm[20];
5467 if (rdev->raid_disk >= conf->previous_raid_disks) 5467 if (rdev->raid_disk >= conf->previous_raid_disks) {
5468 set_bit(In_sync, &rdev->flags); 5468 set_bit(In_sync, &rdev->flags);
5469 else 5469 added_devices++;
5470 } else
5470 rdev->recovery_offset = 0; 5471 rdev->recovery_offset = 0;
5471 added_devices++;
5472 sprintf(nm, "rd%d", rdev->raid_disk); 5472 sprintf(nm, "rd%d", rdev->raid_disk);
5473 if (sysfs_create_link(&mddev->kobj, 5473 if (sysfs_create_link(&mddev->kobj,
5474 &rdev->kobj, nm)) 5474 &rdev->kobj, nm))
@@ -5480,9 +5480,12 @@ static int raid5_start_reshape(mddev_t *mddev)
5480 break; 5480 break;
5481 } 5481 }
5482 5482
5483 /* When a reshape changes the number of devices, ->degraded
5484 * is measured against the large of the pre and post number of
5485 * devices.*/
5483 if (mddev->delta_disks > 0) { 5486 if (mddev->delta_disks > 0) {
5484 spin_lock_irqsave(&conf->device_lock, flags); 5487 spin_lock_irqsave(&conf->device_lock, flags);
5485 mddev->degraded = (conf->raid_disks - conf->previous_raid_disks) 5488 mddev->degraded += (conf->raid_disks - conf->previous_raid_disks)
5486 - added_devices; 5489 - added_devices;
5487 spin_unlock_irqrestore(&conf->device_lock, flags); 5490 spin_unlock_irqrestore(&conf->device_lock, flags);
5488 } 5491 }