The patch titled md: remove nuisance message at shutdown has been removed from the -mm tree. Its filename is md-remove-nuisance-message-at-shutdown.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: md: remove nuisance message at shutdown From: NeilBrown <neilb@xxxxxxx> At shutdown, we switch all arrays to read-only, which creates a message for every instantiated array, even those which aren't actually active. So remove the message for non-active arrays. Signed-off-by: Neil Brown <neilb@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/md/md.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/md/md.c~md-remove-nuisance-message-at-shutdown drivers/md/md.c --- a/drivers/md/md.c~md-remove-nuisance-message-at-shutdown +++ a/drivers/md/md.c @@ -2911,7 +2911,7 @@ static int do_md_stop(mddev_t * mddev, i if (disk) set_capacity(disk, 0); mddev->changed = 1; - } else + } else if (mddev->pers) printk(KERN_INFO "md: %s switched to read-only mode.\n", mdname(mddev)); err = 0; _ Patches currently in -mm which might be from neilb@xxxxxxx are origin.patch generic_file_buffered_write-deadlock-on-vectored-write.patch md-dm-reduce-stack-usage-with-stacked-block-devices.patch lockdep-annotate-sunrpc-code.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html