All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] FIX: reshape_active flag is always set for external metadata
@ 2011-01-20 15:52 Adam Kwolek
  2011-01-24 21:05 ` NeilBrown
  2011-01-27  3:07 ` Neil Brown
  0 siblings, 2 replies; 5+ messages in thread
From: Adam Kwolek @ 2011-01-20 15:52 UTC (permalink / raw)
  To: neilb; +Cc: linux-raid, dan.j.williams, ed.ciechanowski, wojciech.neubauer

For external metadata based on reshape_active flag is taken decision about reshape
when it is equal to 1. At this momenta mdadm cannot give up when this flag is set
for external metadata.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
---

 Grow.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Grow.c b/Grow.c
index c9f4b9c..f220f50 100644
--- a/Grow.c
+++ b/Grow.c
@@ -1870,7 +1870,7 @@ started:
 
 	sra->new_chunk = info->new_chunk;
 	
-	if (info->reshape_active)
+	if ((info->reshape_active) && (st->ss->external == 0))
 		/* nothing needed here */;
 	else if (info->array.chunk_size == info->new_chunk &&
 	    reshape.before.layout == reshape.after.layout &&


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

end of thread, other threads:[~2011-01-27  7:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-20 15:52 [PATCH] FIX: reshape_active flag is always set for external metadata Adam Kwolek
2011-01-24 21:05 ` NeilBrown
2011-01-25  7:27   ` Kwolek, Adam
2011-01-27  3:07 ` Neil Brown
2011-01-27  7:56   ` Kwolek, Adam

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.