diff options
author | Neil Brown <neilb@suse.de> | 2006-05-19 09:19:04 +0200 |
---|---|---|
committer | Neil Brown <neilb@suse.de> | 2006-05-19 09:19:04 +0200 |
commit | a1cbd7d053e034bbfcf337bc9ee7b92ec4c6f6c0 (patch) | |
tree | 96ccd12c23643ef4ba48ab6c8768cf7ce75628e6 /Examine.c | |
parent | Include homehost information in --detail where appropriate. (diff) | |
download | mdadm-a1cbd7d053e034bbfcf337bc9ee7b92ec4c6f6c0.tar.xz mdadm-a1cbd7d053e034bbfcf337bc9ee7b92ec4c6f6c0.zip |
Include homehost information in --examine as appropriate
Signed-off-by: Neil Brown <neilb@suse.de>
Diffstat (limited to 'Examine.c')
-rw-r--r-- | Examine.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -35,7 +35,9 @@ #endif #include "md_u.h" #include "md_p.h" -int Examine(mddev_dev_t devlist, int brief, int scan, int SparcAdjust, struct supertype *forcest) +int Examine(mddev_dev_t devlist, int brief, int scan, + int SparcAdjust, struct supertype *forcest, + char *homehost) { /* Read the raid superblock from a device and @@ -124,7 +126,7 @@ int Examine(mddev_dev_t devlist, int brief, int scan, int SparcAdjust, struct su dl_add(ap->devs, d); } else { printf("%s:\n",devlist->devname); - st->ss->examine_super(super); + st->ss->examine_super(super, homehost); free(super); } } |