diff options
author | Andre Noll <maan@systemlinux.org> | 2009-06-17 22:48:06 (GMT) |
---|---|---|
committer | NeilBrown <neilb@suse.de> | 2009-06-17 22:48:06 (GMT) |
commit | 8c6ac868b107ed50a46204f6d14e2ad9443ff146 (patch) | |
tree | a0690ce92ed1993cc3211448948f3964c389c082 /drivers/md/md.c | |
parent | 50ac168a6e0a061bf5346d53aa9e7beb94c97527 (diff) | |
download | linux-fsl-qoriq-8c6ac868b107ed50a46204f6d14e2ad9443ff146.tar.xz |
md: Push down reconstruction log message to personality code.
Currently, the md layer checks in analyze_sbs() if the raid level
supports reconstruction (mddev->level >= 1) and if reconstruction is
in progress (mddev->recovery_cp != MaxSector).
Move that printk into the personality code of those raid levels that
care (levels 1, 4, 5, 6, 10).
Signed-off-by: Andre Noll <maan@systemlinux.org>
Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'drivers/md/md.c')
-rw-r--r-- | drivers/md/md.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c index 80f039e..9014737 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -2604,15 +2604,6 @@ static void analyze_sbs(mddev_t * mddev) clear_bit(In_sync, &rdev->flags); } } - - - - if (mddev->recovery_cp != MaxSector && - mddev->level >= 1) - printk(KERN_ERR "md: %s: raid array is not clean" - " -- starting background reconstruction\n", - mdname(mddev)); - } static void md_safemode_timeout(unsigned long data); |