]> git.ipfire.org Git - thirdparty/mdadm.git/commitdiff
DDF: use some #defines instead of bare constants.
authorNeilBrown <neilb@suse.de>
Thu, 1 Aug 2013 05:21:24 +0000 (15:21 +1000)
committerNeilBrown <neilb@suse.de>
Thu, 1 Aug 2013 05:21:24 +0000 (15:21 +1000)
Signed-off-by: NeilBrown <neilb@suse.de>
super-ddf.c

index b1904e36e466d446a175c03ccb21dd5da3d07865..ac914575fcd8bbaada3910469eaf46ae31b333cb 100644 (file)
@@ -1432,12 +1432,12 @@ static void examine_vds(struct ddf_super *sb)
                printf("         unit[%d] : %d\n", i, be16_to_cpu(ve->unit));
                printf("        state[%d] : %s, %s%s\n", i,
                       map_num(ddf_state, ve->state & 7),
-                      (ve->state & 8) ? "Morphing, ": "",
-                      (ve->state & 16)? "Not Consistent" : "Consistent");
+                      (ve->state & DDF_state_morphing) ? "Morphing, ": "",
+                      (ve->state & DDF_state_inconsistent)? "Not Consistent" : "Consistent");
                printf("   init state[%d] : %s\n", i,
-                      map_num(ddf_init_state, ve->init_state&3));
+                      map_num(ddf_init_state, ve->init_state&DDF_initstate_mask));
                printf("       access[%d] : %s\n", i,
-                      map_num(ddf_access, (ve->init_state>>6) & 3));
+                      map_num(ddf_access, (ve->init_state & DDF_access_mask) >> 6));
                printf("         Name[%d] : %.16s\n", i, ve->name);
                examine_vd(i, sb, ve->guid);
        }