linux-raid.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] DM RAID: Fix for ineffective "sync" directive
@ 2012-08-23 15:31 Jonathan Brassow
  2012-09-05  1:44 ` NeilBrown
  2012-09-14 18:48 ` [PATCH - v2] " Jonathan Brassow
  0 siblings, 2 replies; 6+ messages in thread
From: Jonathan Brassow @ 2012-08-23 15:31 UTC (permalink / raw)
  To: linux-raid; +Cc: neilb, jbrassow

Neil,

There are two ways I see to fix the problem of the "sync" table argument
not causing the array to re-sync.  We could set mddev->events to
UINT_MAX and force an mddev/bitmap event mismatch - causing the bitmap
code to set BITMAP_STALE itself.  Otherwise, we can do as I have below
and set BITMAP_STALE ourselves.  The real difference is whether this is
done before or after md_run().  The first solution can be done before
md_run(); the second cannot because the bitmap is allocated during
md_run().  Either solution works and correctly sets the bitmap to stale
before bitmap_load() is called.  So, rather than having to think about
issues that come with setting events to UINT_MAX, I chose to set the
bitmap stale after md_run().

 brassow

DM RAID: Fix for "sync" directive ineffectiveness

There are two table arguments that can be given to a DM RAID target that
control whether the array is forced to (re)synchronize or skip initialization:
"sync" and "nosync".  When "sync" is given, we set mddev->recovery_cp to 0
in order to cause the device to resynchronize.  This is insufficient if there
is a bitmap in use, because the array will simply look at the bitmap and see
that there is no recovery necessary.

Once md_run() is called and creates the bitmap, we set the bitmap as stale.
When the bitmap is loaded during the resume phase, a full resync will
result.

Signed-off-by: Jonathan Brassow <jbrassow@redhat.com>

Index: linux-upstream/drivers/md/dm-raid.c
===================================================================
--- linux-upstream.orig/drivers/md/dm-raid.c
+++ linux-upstream/drivers/md/dm-raid.c
@@ -1123,6 +1123,10 @@ static int raid_ctr(struct dm_target *ti
 		ret = -EINVAL;
 		goto size_mismatch;
 	}
+
+	if (rs->print_flags & DMPF_SYNC)
+		set_bit(BITMAP_STALE, &(rs->md.bitmap->flags));
+
 	rs->callbacks.congested_fn = raid_is_congested;
 	dm_table_add_target_callbacks(ti->table, &rs->callbacks);
 



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-09-20  2:35 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-23 15:31 [PATCH] DM RAID: Fix for ineffective "sync" directive Jonathan Brassow
2012-09-05  1:44 ` NeilBrown
2012-09-05 14:32   ` Brassow Jonathan
2012-09-10  7:11     ` NeilBrown
2012-09-14 18:48 ` [PATCH - v2] " Jonathan Brassow
2012-09-20  2:35   ` NeilBrown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).