summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Williams <dan.j.williams@intel.com>2009-05-18 10:02:58 -0700
committerDan Williams <dan.j.williams@intel.com>2009-05-18 10:02:58 -0700
commit1124b3cf29dad544e8a5aa01e5f9e94e7be1765a (patch)
tree54c51ba1fc0d6239eb6b781ecba2877428f4c57f
parent81062a36abd28d2354036da398c2e090fa759198 (diff)
downloadmdadm-1124b3cf29dad544e8a5aa01e5f9e94e7be1765a.tar.gz
mdadm-1124b3cf29dad544e8a5aa01e5f9e94e7be1765a.tar.xz
mdadm-1124b3cf29dad544e8a5aa01e5f9e94e7be1765a.zip
imsm: kill "auto=" in brief_examine_super_imsm
The auto parameter is obsolete after kernel version 2.6.28 as all arrays are partitionable via block device extended minor support. Environments that requre the mdp style of array can always edit the configuration file to specify auto=mdp. Signed-off-by: Dan Williams <dan.j.williams@intel.com>
-rw-r--r--super-intel.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/super-intel.c b/super-intel.c
index 35c43f4..73fe5fa 100644
--- a/super-intel.c
+++ b/super-intel.c
@@ -768,15 +768,14 @@ static void brief_examine_super_imsm(struct supertype *st, int verbose)
getinfo_super_imsm(st, &info);
fname_from_uuid(st, &info, nbuf, ':');
- printf("ARRAY metadata=imsm auto=md UUID=%s\n", nbuf + 5);
+ printf("ARRAY metadata=imsm UUID=%s\n", nbuf + 5);
for (i = 0; i < super->anchor->num_raid_devs; i++) {
struct imsm_dev *dev = get_imsm_dev(super, i);
super->current_vol = i;
getinfo_super_imsm(st, &info);
fname_from_uuid(st, &info, nbuf1, ':');
- printf("ARRAY /dev/md/%.16s container=%s\n"
- " member=%d auto=mdp UUID=%s\n",
+ printf("ARRAY /dev/md/%.16s container=%s member=%d UUID=%s\n",
dev->volume, nbuf + 5, i, nbuf1 + 5);
}
}