[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[dm-devel] [PATCH 5 of 7] DM RAID: allow metadata devices -- FIX
- From: Jonathan Brassow <jbrassow redhat com>
- To: dm-devel redhat com
- Subject: [dm-devel] [PATCH 5 of 7] DM RAID: allow metadata devices -- FIX
- Date: Tue, 28 Jun 2011 15:17:30 -0500
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);
/*
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]