linux-raid.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] FIX: Close unused handle in child process during reshape restart
@ 2011-10-26 16:16 Adam Kwolek
  2011-10-27  4:50 ` NeilBrown
  0 siblings, 1 reply; 2+ messages in thread
From: Adam Kwolek @ 2011-10-26 16:16 UTC (permalink / raw)
  To: neilb; +Cc: linux-raid, ed.ciechanowski, marcin.labun, dan.j.williams

When array reshape (e.g. raid0->raid5 migration) is restarted during
array assembly, file system placed on this array cannot be mounted until
reshape is finished due to "busy" error.

This is caused when reshape is executed on array for external metadata
and array handle is cloned /forked/ to child process environment but not
closed.

Handle can't be closed before executing Grow_continue() because it is
used later in code.

Close unused handle in child process /reshape_container()/.
It is similar to close fd handle in reshape_array() before calling
manage_reshape()/child_monitor() in Grow.c:2290.

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

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

diff --git a/Grow.c b/Grow.c
index 0e4dd10..93a69fd 100644
--- a/Grow.c
+++ b/Grow.c
@@ -1350,6 +1350,7 @@ static int reshape_array(char *container, int fd, char *devname,
 			 char *backup_file, int quiet, int forked,
 			 int restart, int freeze_reshape);
 static int reshape_container(char *container, char *devname,
+			     int mdfd,
 			     struct supertype *st, 
 			     struct mdinfo *info,
 			     int force,
@@ -1768,7 +1769,7 @@ int Grow_reshape(char *devname, int fd, int quiet, char *backup_file,
 		 * number of devices (On-Line Capacity Expansion) must be
 		 * performed at the level of the container
 		 */
-		rv = reshape_container(container, devname, st, &info,
+		rv = reshape_container(container, devname, -1, st, &info,
 				       force, backup_file, quiet, 0, 0);
 		frozen = 0;
 	} else {
@@ -2403,7 +2404,10 @@ release:
 	return 1;
 }
 
+/* mdfd handle is passed to be closed in child process (after fork).
+ */
 int reshape_container(char *container, char *devname,
+		      int mdfd,
 		      struct supertype *st, 
 		      struct mdinfo *info,
 		      int force,
@@ -2446,6 +2450,11 @@ int reshape_container(char *container, char *devname,
 		break;
 	}
 
+	/* close unused handle in child process
+	 */
+	if (mdfd > -1)
+		close(mdfd);
+
 	while(1) {
 		/* For each member array with reshape_active,
 		 * we need to perform the reshape.
@@ -3821,7 +3830,7 @@ int Grow_continue(int mdfd, struct supertype *st, struct mdinfo *info,
 		fmt_devname(container, st->container_dev);
 		st->ss->load_container(st, cfd, container);
 		close(cfd);
-		ret_val = reshape_container(container, NULL,
+		ret_val = reshape_container(container, NULL, mdfd,
 					    st, info, 0, backup_file,
 					    0, 1, freeze_reshape);
 	} else


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

* Re: [PATCH] FIX: Close unused handle in child process during reshape restart
  2011-10-26 16:16 [PATCH] FIX: Close unused handle in child process during reshape restart Adam Kwolek
@ 2011-10-27  4:50 ` NeilBrown
  0 siblings, 0 replies; 2+ messages in thread
From: NeilBrown @ 2011-10-27  4:50 UTC (permalink / raw)
  To: Adam Kwolek; +Cc: linux-raid, ed.ciechanowski, marcin.labun, dan.j.williams

[-- Attachment #1: Type: text/plain, Size: 3046 bytes --]

On Wed, 26 Oct 2011 18:16:55 +0200 Adam Kwolek <adam.kwolek@intel.com> wrote:

> When array reshape (e.g. raid0->raid5 migration) is restarted during
> array assembly, file system placed on this array cannot be mounted until
> reshape is finished due to "busy" error.
> 
> This is caused when reshape is executed on array for external metadata
> and array handle is cloned /forked/ to child process environment but not
> closed.
> 
> Handle can't be closed before executing Grow_continue() because it is
> used later in code.
> 
> Close unused handle in child process /reshape_container()/.
> It is similar to close fd handle in reshape_array() before calling
> manage_reshape()/child_monitor() in Grow.c:2290.
> 
> Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
> ---
> 
>  Grow.c |   13 +++++++++++--
>  1 files changed, 11 insertions(+), 2 deletions(-)
> 
> diff --git a/Grow.c b/Grow.c
> index 0e4dd10..93a69fd 100644
> --- a/Grow.c
> +++ b/Grow.c
> @@ -1350,6 +1350,7 @@ static int reshape_array(char *container, int fd, char *devname,
>  			 char *backup_file, int quiet, int forked,
>  			 int restart, int freeze_reshape);
>  static int reshape_container(char *container, char *devname,
> +			     int mdfd,
>  			     struct supertype *st, 
>  			     struct mdinfo *info,
>  			     int force,
> @@ -1768,7 +1769,7 @@ int Grow_reshape(char *devname, int fd, int quiet, char *backup_file,
>  		 * number of devices (On-Line Capacity Expansion) must be
>  		 * performed at the level of the container
>  		 */
> -		rv = reshape_container(container, devname, st, &info,
> +		rv = reshape_container(container, devname, -1, st, &info,
>  				       force, backup_file, quiet, 0, 0);
>  		frozen = 0;
>  	} else {
> @@ -2403,7 +2404,10 @@ release:
>  	return 1;
>  }
>  
> +/* mdfd handle is passed to be closed in child process (after fork).
> + */
>  int reshape_container(char *container, char *devname,
> +		      int mdfd,
>  		      struct supertype *st, 
>  		      struct mdinfo *info,
>  		      int force,
> @@ -2446,6 +2450,11 @@ int reshape_container(char *container, char *devname,
>  		break;
>  	}
>  
> +	/* close unused handle in child process
> +	 */
> +	if (mdfd > -1)
> +		close(mdfd);
> +
>  	while(1) {
>  		/* For each member array with reshape_active,
>  		 * we need to perform the reshape.
> @@ -3821,7 +3830,7 @@ int Grow_continue(int mdfd, struct supertype *st, struct mdinfo *info,
>  		fmt_devname(container, st->container_dev);
>  		st->ss->load_container(st, cfd, container);
>  		close(cfd);
> -		ret_val = reshape_container(container, NULL,
> +		ret_val = reshape_container(container, NULL, mdfd,
>  					    st, info, 0, backup_file,
>  					    0, 1, freeze_reshape);
>  	} else
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-raid" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html



Applied, thanks.

NeilBrown

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

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

end of thread, other threads:[~2011-10-27  4:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-26 16:16 [PATCH] FIX: Close unused handle in child process during reshape restart Adam Kwolek
2011-10-27  4:50 ` 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).