From: NeilBrown If a partitionable array is used, we should say e.g. Will configure md_d0 (super-block) from .... rather than Will configure md0 (super-block) from .... which implies non-partitionable. Signed-off-by: Neil Brown Signed-off-by: Andrew Morton --- usr/kinit/do_mounts_md.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN usr/kinit/do_mounts_md.c~md-fix-will-configure-message-when-interpreting-md=-kernel-parameter usr/kinit/do_mounts_md.c --- a/usr/kinit/do_mounts_md.c~md-fix-will-configure-message-when-interpreting-md=-kernel-parameter +++ a/usr/kinit/do_mounts_md.c @@ -205,8 +205,8 @@ static int md_setup(char *str) pername = "super-block"; } - fprintf(stderr, "md: Will configure md%d (%s) from %s, below.\n", - minor, pername, str); + fprintf(stderr, "md: Will configure md%s%d (%s) from %s, below.\n", + partitioned?"_d":"", minor, pername, str); md_setup_args[ent].device_names = str; md_setup_args[ent].partitioned = partitioned; md_setup_args[ent].minor = minor; _