diff options
author | NeilBrown <neilb@cse.unsw.edu.au> | 2005-07-27 18:43:28 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-27 23:25:48 (GMT) |
commit | 4b5c7ae83704320e2afb0912f4c42eadabc7535b (patch) | |
tree | 2db30198606683da3b683cabac531d902a249b27 /drivers/md/raid1.c | |
parent | b38817dda45bc2990a8d593f3a1b4d444b2dcf4f (diff) | |
download | linux-4b5c7ae83704320e2afb0912f4c42eadabc7535b.tar.xz |
[PATCH] md: when resizing an array, we need to update resync_max_sectors as well as size
Without this, and attempt to 'grow' an array will claim to have synced the
extra part without actually having done anything.
Signed-off-by: Neil Brown <neilb@cse.unsw.edu.au>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/md/raid1.c')
-rw-r--r-- | drivers/md/raid1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c index 5f253ee..d3a64a0 100644 --- a/drivers/md/raid1.c +++ b/drivers/md/raid1.c @@ -1468,6 +1468,7 @@ static int raid1_resize(mddev_t *mddev, sector_t sectors) set_bit(MD_RECOVERY_NEEDED, &mddev->recovery); } mddev->size = mddev->array_size; + mddev->resync_max_sectors = sectors; return 0; } |