From: Czarnowska, Anna Date: Thu, 17 Feb 2011 22:43:19 +0000 (+0000) Subject: modified message on failure to read metadata in Manage X-Git-Tag: mdadm-3.2.1~106 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0081eb007cc5853fae716393307062f5d57a2cbc;p=thirdparty%2Fmdadm.git modified message on failure to read metadata in Manage Loading container may fail if e.g. one of the disks in container has been detached but udev has not realized the change. Addition to such array will fail because reading superblock from one of disks in array fails. Current message is a bit confusing. Signed-off-by: Anna Czarnowska Signed-off-by: NeilBrown --- diff --git a/Manage.c b/Manage.c index 8c86a532..5fc67d77 100644 --- a/Manage.c +++ b/Manage.c @@ -637,7 +637,7 @@ int Manage_subdevs(char *devname, int fd, /* FIXME this is a bad test to be using */ if (!tst->sb) { close(tfd); - fprintf(stderr, Name ": cannot find valid superblock in this array - HELP\n"); + fprintf(stderr, Name ": cannot load array metadata from %s\n", devname); return 1; }