]> git.ipfire.org Git - thirdparty/mdadm.git/commitdiff
Assemble/super0: allow non-in-sync devices to be assembled without complaint.
authorNeilBrown <neilb@suse.de>
Tue, 17 Nov 2009 01:31:10 +0000 (12:31 +1100)
committerNeilBrown <neilb@suse.de>
Tue, 17 Nov 2009 01:31:10 +0000 (12:31 +1100)
Other metadata formats already did not worry about whether 'sync' was
missing or not.  super0 needs that now, but only for 0.91 metadata
that is undergoing reshape.

Signed-off-by: NeilBrown <neilb@suse.de>
super0.c

index 69fb460613753ddd4c9af2f7e33cce53f32bbe7b..9f78b9452dec9e04792760500310769a0b277258 100644 (file)
--- a/super0.c
+++ b/super0.c
@@ -478,7 +478,14 @@ static int update_super0(struct supertype *st, struct mdinfo *info,
        if (strcmp(update, "assemble")==0) {
                int d = info->disk.number;
                int wonly = sb->disks[d].state & (1<<MD_DISK_WRITEMOSTLY);
-               if ((sb->disks[d].state & ~(1<<MD_DISK_WRITEMOSTLY))
+               int mask = (1<<MD_DISK_WRITEMOSTLY);
+               int add = 0;
+               if (sb->minor_version >= 91)
+                       /* During reshape we don't insist on everything
+                        * being marked 'sync'
+                        */
+                       add = (1<<MD_DISK_SYNC);
+               if (((sb->disks[d].state & ~mask) | add)
                    != info->disk.state) {
                        sb->disks[d].state = info->disk.state | wonly;
                        rv = 1;