diff options
author | Artur Paszkiewicz <artur.paszkiewicz@intel.com> | 2017-03-29 11:54:16 +0200 |
---|---|---|
committer | Jes Sorensen <Jes.Sorensen@gmail.com> | 2017-03-29 17:32:27 +0200 |
commit | 65884368cd42d79b567f12d3e84adc7009e12d72 (patch) | |
tree | e3e2eb7a3024c6c85f2d7cde0fb8062583bc9305 /super-ddf.c | |
parent | Generic support for --consistency-policy and PPL (diff) | |
download | mdadm-65884368cd42d79b567f12d3e84adc7009e12d72.tar.xz mdadm-65884368cd42d79b567f12d3e84adc7009e12d72.zip |
Detail: show consistency policy
Show the currently enabled consistency policy in the output from
--detail. Add 3 spaces to all existing items in Detail output to align
with "Consistency Policy : ".
Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Signed-off-by: Jes Sorensen <Jes.Sorensen@gmail.com>
Diffstat (limited to 'super-ddf.c')
-rw-r--r-- | super-ddf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/super-ddf.c b/super-ddf.c index cdd16a47..c6037c1c 100644 --- a/super-ddf.c +++ b/super-ddf.c @@ -1742,10 +1742,10 @@ static void detail_super_ddf(struct supertype *st, char *homehost) struct ddf_super *sb = st->sb; int cnt = be16_to_cpu(sb->virt->populated_vdes); - printf(" Container GUID : "); print_guid(sb->anchor.guid, 1); + printf(" Container GUID : "); print_guid(sb->anchor.guid, 1); printf("\n"); - printf(" Seq : %08x\n", be32_to_cpu(sb->active->seq)); - printf(" Virtual Disks : %d\n", cnt); + printf(" Seq : %08x\n", be32_to_cpu(sb->active->seq)); + printf(" Virtual Disks : %d\n", cnt); printf("\n"); } #endif |