summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Brown <neilb@suse.de>2006-05-26 02:29:12 +0000
committerNeil Brown <neilb@suse.de>2006-05-26 02:29:12 +0000
commit2998bc013c2f4a6cc576efab9c0492eb889c8853 (patch)
treef00a3926f097612099930cb96ef7f0a2048a259d
parente7bb5d23a9b29ae6f316fe3ce8970301e1bc0d4d (diff)
downloadmdadm-2998bc013c2f4a6cc576efab9c0492eb889c8853.tar.gz
Improve names reported by --examine --brief
Instead of depending (too much) on what is in /dev, we make names based on the content of the superblock. Signed-off-by: Neil Brown <neilb@suse.de>
-rw-r--r--super0.c12
-rw-r--r--super1.c12
2 files changed, 20 insertions, 4 deletions
diff --git a/super0.c b/super0.c
index 87ef1e0..7bb64eb 100644
--- a/super0.c
+++ b/super0.c
@@ -227,10 +227,17 @@ static void brief_examine_super0(void *sbv)
{
mdp_super_t *sb = sbv;
char *c=map_num(pers, sb->level);
- char *nm;
+ char devname[20];
+ struct stat stb;
+
+ sprintf(devname, "/dev/md%d", sb->md_minor);
+ if (stat(devname, &stb) != 0) {
+ /* /dev/mdX doesn't exist, so use /dev/md/X */
+ sprintf(devname, "/dev/md/%d", sb->md_minor);
+ }
printf("ARRAY %s level=%s num-devices=%d UUID=",
- nm = get_md_name(sb->md_minor),
+ devname,
c?c:"-unknown-", sb->raid_disks);
if (sb->minor_version >= 90)
printf("%08x:%08x:%08x:%08x", sb->set_uuid0, sb->set_uuid1,
@@ -238,7 +245,6 @@ static void brief_examine_super0(void *sbv)
else
printf("%08x", sb->set_uuid0);
printf("\n");
- put_md_name(nm);
}
static void detail_super0(void *sbv, char *homehost)
diff --git a/super1.c b/super1.c
index 488aabe..9f07ddc 100644
--- a/super1.c
+++ b/super1.c
@@ -308,10 +308,20 @@ static void brief_examine_super1(void *sbv)
{
struct mdp_superblock_1 *sb = sbv;
int i;
+ char *nm;
+
+ nm = strchr(sb->set_name, ':');
+ if (nm)
+ nm++;
+ else if (sb->set_name[0])
+ nm = sb->set_name;
+ else
+ nm = "??";
char *c=map_num(pers, __le32_to_cpu(sb->level));
- printf("ARRAY /dev/?? level=%s metadata=1 num-devices=%d UUID=",
+ printf("ARRAY /dev/md/%s level=%s metadata=1 num-devices=%d UUID=",
+ nm,
c?c:"-unknown-", sb->raid_disks);
for (i=0; i<16; i++) {
printf("%02x", sb->set_uuid[i]);