[dm-devel] [PATCH 5 of 7] DM RAID: allow metadata devices -- FIX

Jonathan Brassow jbrassow at redhat.com
Tue Jun 28 20:17:30 UTC 2011


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);
 
 	/*





More information about the dm-devel mailing list