Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 200576
b: refs/heads/master
c: 3424bf6
h: refs/heads/master
v: v3
  • Loading branch information
NeilBrown committed Jun 24, 2010
1 parent 3144212 commit 5add97b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2f115882499f3e5eca33d1df07b8876cc752a1ff
refs/heads/master: 3424bf6a772cff606fc4bc24a3639c937afb547f
9 changes: 7 additions & 2 deletions trunk/drivers/md/raid5.c
Original file line number Diff line number Diff line change
Expand Up @@ -5526,8 +5526,13 @@ static int raid5_start_reshape(mddev_t *mddev)

/* Add some new drives, as many as will fit.
* We know there are enough to make the newly sized array work.
* Don't add devices if we are reducing the number of
* devices in the array. This is because it is not possible
* to correctly record the "partially reconstructed" state of
* such devices during the reshape and confusion could result.
*/
list_for_each_entry(rdev, &mddev->disks, same_set)
if (mddev->delta_disks >= 0)
list_for_each_entry(rdev, &mddev->disks, same_set)
if (rdev->raid_disk < 0 &&
!test_bit(Faulty, &rdev->flags)) {
if (raid5_add_disk(mddev, rdev) == 0) {
Expand All @@ -5549,7 +5554,7 @@ static int raid5_start_reshape(mddev_t *mddev)
}

/* When a reshape changes the number of devices, ->degraded
* is measured against the large of the pre and post number of
* is measured against the larger of the pre and post number of
* devices.*/
if (mddev->delta_disks > 0) {
spin_lock_irqsave(&conf->device_lock, flags);
Expand Down

0 comments on commit 5add97b

Please sign in to comment.