md/raid5: correctly update sync_completed when we reach max_resync

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Linux Kernel Mailing List
Date: Thursday, June 18, 2009 - 3:02 pm

Gitweb:     http://git.kernel.org/linus/48606a9f2fc034f0b308d088c1f7ab6d407c462c
Commit:     48606a9f2fc034f0b308d088c1f7ab6d407c462c
Parent:     7a3ab908948b6296ee7e81d42f7c176361c51975
Author:     NeilBrown <neilb@suse.de>
AuthorDate: Thu Jun 18 09:14:12 2009 +1000
Committer:  NeilBrown <neilb@suse.de>
CommitDate: Thu Jun 18 09:14:12 2009 +1000

    md/raid5: correctly update sync_completed when we reach max_resync
    
    At the end of reshape_request we update cyrr_resync_completed
    if we are about to pause due to reaching resync_max.
    However we update it to the wrong value.  We need to add the
    "reshape_sectors" that have just been reshaped.
    
    Signed-off-by: NeilBrown <neilb@suse.de>
---
 drivers/md/raid5.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c
index 59e29c2..f9f991e 100644
--- a/drivers/md/raid5.c
+++ b/drivers/md/raid5.c
@@ -3946,7 +3946,7 @@ static sector_t reshape_request(mddev_t *mddev, sector_t sector_nr, int *skipped
 		wait_event(conf->wait_for_overlap,
 			   atomic_read(&conf->reshape_stripes) == 0);
 		mddev->reshape_position = conf->reshape_progress;
-		mddev->curr_resync_completed = mddev->curr_resync;
+		mddev->curr_resync_completed = mddev->curr_resync + reshape_sectors;
 		conf->reshape_checkpoint = jiffies;
 		set_bit(MD_CHANGE_DEVS, &mddev->flags);
 		md_wakeup_thread(mddev->thread);
--
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
md/raid5: correctly update sync_completed when we reach ma ..., Linux Kernel Mailing ..., (Thu Jun 18, 3:02 pm)