This patch fixes an improper conditional in the 5th patch of the dm-raid updates series. brassow Set the synchronization offset if the '[no]sync' parameters were /not/ specified. Index: linux-2.6/drivers/md/dm-raid.c =================================================================== --- linux-2.6.orig/drivers/md/dm-raid.c +++ linux-2.6/drivers/md/dm-raid.c @@ -709,7 +709,7 @@ static int super_init_validation(mddev_t return -EINVAL; } - if (rs->print_flags & (DMPF_SYNC | DMPF_NOSYNC)) + if (!(rs->print_flags & (DMPF_SYNC | DMPF_NOSYNC))) mddev->recovery_cp = le64_to_cpu(sb->array_resync_offset); /* -- dm-devel mailing list dm-devel@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/dm-devel