summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2012-04-24 10:23:16 +1000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-04-27 10:16:49 -0700
commitff459d1ea87ea7d3bdbe7e2eaee26a6b535d7d31 (patch)
tree24f4a39544431e63402f672d9cae0fb2378212ff
parentbad6c903cbb6b5f5437d6f977171194b3e1ef3ef (diff)
downloadlwn-ff459d1ea87ea7d3bdbe7e2eaee26a6b535d7d31.tar.gz
lwn-ff459d1ea87ea7d3bdbe7e2eaee26a6b535d7d31.zip
md: fix possible corruption of array metadata on shutdown.
commit 30b8aa9172dfeaac6d77897c67ee9f9fc574cdbb upstream. commit c744a65c1e2d59acc54333ce8 md: don't set md arrays to readonly on shutdown. removed the possibility of a 'BUG' when data is written to an array that has just been switched to read-only, but also introduced the possibility that the array metadata could be corrupted. If, when md_notify_reboot gets the mddev lock, the array is in a state where it is assembled but hasn't been started (as can happen if the personality module is not available, or in other unusual situations), then incorrect metadata will be written out making it impossible to re-assemble the array. So only call __md_stop_writes() if the array has actually been activated. This patch is needed for any stable kernel which has had the above commit applied. Reported-by: Christoph Nelles <evilazrael@evilazrael.de> Signed-off-by: NeilBrown <neilb@suse.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/md/md.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c
index c5164e179bf5..58027d8477c6 100644
--- a/drivers/md/md.c
+++ b/drivers/md/md.c
@@ -8160,7 +8160,8 @@ static int md_notify_reboot(struct notifier_block *this,
for_each_mddev(mddev, tmp) {
if (mddev_trylock(mddev)) {
- __md_stop_writes(mddev);
+ if (mddev->pers)
+ __md_stop_writes(mddev);
mddev->safemode = 2;
mddev_unlock(mddev);
}