diff options
author | Andre Noll <maan@systemlinux.org> | 2009-06-17 18:48:06 -0400 |
---|---|---|
committer | NeilBrown <neilb@suse.de> | 2009-06-17 18:48:06 -0400 |
commit | 8c6ac868b107ed50a46204f6d14e2ad9443ff146 (patch) | |
tree | a0690ce92ed1993cc3211448948f3964c389c082 /drivers/md/raid5.c | |
parent | 50ac168a6e0a061bf5346d53aa9e7beb94c97527 (diff) |
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/raid5.c')
-rw-r--r-- | drivers/md/raid5.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c index 5ea2bdece278..8f2e3740a05a 100644 --- a/drivers/md/raid5.c +++ b/drivers/md/raid5.c | |||
@@ -4454,6 +4454,10 @@ static int run(mddev_t *mddev) | |||
4454 | int working_disks = 0; | 4454 | int working_disks = 0; |
4455 | mdk_rdev_t *rdev; | 4455 | mdk_rdev_t *rdev; |
4456 | 4456 | ||
4457 | if (mddev->recovery_cp != MaxSector) | ||
4458 | printk(KERN_NOTICE "raid5: %s is not clean" | ||
4459 | " -- starting background reconstruction\n", | ||
4460 | mdname(mddev)); | ||
4457 | if (mddev->reshape_position != MaxSector) { | 4461 | if (mddev->reshape_position != MaxSector) { |
4458 | /* Check that we can continue the reshape. | 4462 | /* Check that we can continue the reshape. |
4459 | * Currently only disks can change, it must | 4463 | * Currently only disks can change, it must |