diff options
author | NeilBrown <neilb@suse.de> | 2006-06-26 03:27:40 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-26 12:58:37 -0400 |
commit | 5fd6c1dce06ec24ef3de20fe0c7ecf2ba9fe5ef9 (patch) | |
tree | bd7cc8c22615e8622d3d63b7fc68dcc3ac1964de /drivers/md/raid5.c | |
parent | a8a55c387da28d67d98f56e4f5021462cb61f7a6 (diff) |
[PATCH] md: allow checkpoint of recovery with version-1 superblock
For a while we have had checkpointing of resync. The version-1 superblock
allows recovery to be checkpointed as well, and this patch implements that.
Due to early carelessness we need to add a feature flag to signal that the
recovery_offset field is in use, otherwise older kernels would assume that a
partially recovered array is in fact fully recovered.
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/md/raid5.c')
-rw-r--r-- | drivers/md/raid5.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c index 9ba73074df04..970eb03ec6c0 100644 --- a/drivers/md/raid5.c +++ b/drivers/md/raid5.c | |||
@@ -3555,6 +3555,7 @@ static int raid5_start_reshape(mddev_t *mddev) | |||
3555 | set_bit(In_sync, &rdev->flags); | 3555 | set_bit(In_sync, &rdev->flags); |
3556 | conf->working_disks++; | 3556 | conf->working_disks++; |
3557 | added_devices++; | 3557 | added_devices++; |
3558 | rdev->recovery_offset = 0; | ||
3558 | sprintf(nm, "rd%d", rdev->raid_disk); | 3559 | sprintf(nm, "rd%d", rdev->raid_disk); |
3559 | sysfs_create_link(&mddev->kobj, &rdev->kobj, nm); | 3560 | sysfs_create_link(&mddev->kobj, &rdev->kobj, nm); |
3560 | } else | 3561 | } else |