summaryrefslogtreecommitdiffstats
path: root/super-ddf.c
diff options
context:
space:
mode:
authorNeil Brown <neilb@suse.de>2008-07-12 20:27:39 +1000
committerNeil Brown <neilb@suse.de>2008-07-12 20:27:39 +1000
commit0d481d3723398828c81963dcd58b1bf768e2c0c2 (patch)
tree5049802ad93400e8f797fbf2e9c6422d40110990 /super-ddf.c
parentf7e7067b47d2ca9994f9222dfa5833ac84ce3b22 (diff)
downloadmdadm-0d481d3723398828c81963dcd58b1bf768e2c0c2.tar.gz
mdadm-0d481d3723398828c81963dcd58b1bf768e2c0c2.tar.xz
mdadm-0d481d3723398828c81963dcd58b1bf768e2c0c2.zip
External metadata shouldn't set array.*_version
It doesn't mean anything and is never used.
Diffstat (limited to 'super-ddf.c')
-rw-r--r--super-ddf.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/super-ddf.c b/super-ddf.c
index 378a5d2..50fd16b 100644
--- a/super-ddf.c
+++ b/super-ddf.c
@@ -1226,9 +1226,6 @@ static void getinfo_super_ddf(struct supertype *st, struct mdinfo *info)
{
struct ddf_super *ddf = st->sb;
- info->array.major_version = 1000;
- info->array.minor_version = 0; /* FIXME use ddf->revision somehow */
- info->array.patch_version = 0;
info->array.raid_disks = __be16_to_cpu(ddf->phys->used_pdes);
info->array.level = LEVEL_CONTAINER;
info->array.layout = 0;
@@ -1280,9 +1277,6 @@ static void getinfo_super_ddf_bvd(struct supertype *st, struct mdinfo *info)
/* FIXME this returns BVD info - what if we want SVD ?? */
- info->array.major_version = 1000;
- info->array.minor_version = 0; /* FIXME use ddf->revision somehow */
- info->array.patch_version = 0;
info->array.raid_disks = __be16_to_cpu(vd->prim_elmnt_count);
info->array.level = map_num1(ddf_level_num, vd->prl);
info->array.layout = rlq_to_layout(vd->rlq, vd->prl,
@@ -2495,9 +2489,6 @@ static struct mdinfo *container_content_ddf(struct supertype *st)
this->next = rest;
rest = this;
- this->array.major_version = 1000;
- this->array.minor_version = 0;
- this->array.patch_version = 0;
this->array.level = map_num1(ddf_level_num, vc->conf.prl);
this->array.raid_disks =
__be16_to_cpu(vc->conf.prim_elmnt_count);