All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] fix -ESRCH on self-restart
@ 2009-06-15 20:20 Serge E. Hallyn
       [not found] ` <20090615202022.GA18223-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 2+ messages in thread
From: Serge E. Hallyn @ 2009-06-15 20:20 UTC (permalink / raw)
  To: Oren Laadan; +Cc: Linux Containers

when doing a self-restart, we can't search for ourselves on our
list of children...

Signed-off-by: Serge E. Hallyn <serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
---
 checkpoint/restart.c |   32 +++++++++++++++++++++++---------
 1 files changed, 23 insertions(+), 9 deletions(-)

diff --git a/checkpoint/restart.c b/checkpoint/restart.c
index b87d0e1..13f48fb 100644
--- a/checkpoint/restart.c
+++ b/checkpoint/restart.c
@@ -569,16 +569,16 @@ static int wait_all_tasks_finish(struct ckpt_ctx *ctx)
 	return ret;
 }
 
-/* setup restart-specific parts of ctx */
-static int init_restart_ctx(struct ckpt_ctx *ctx, pid_t pid)
+static struct task_struct *choose_root_task(struct ckpt_ctx *ctx, pid_t pid)
 {
-	struct task_struct *task;
-	struct nsproxy *nsproxy;
+	struct task_struct *task = current;
 
-	/*
-	 * No need for explicit cleanup here, because if an error
-	 * occurs then ckpt_ctx_free() is eventually called.
-	 */
+	if (ctx->uflags & RESTART_TASKSELF) {
+		ctx->root_pid = pid;
+		ctx->root_task = task;
+		get_task_struct(current);
+		return current;
+	}
 
 	read_lock(&tasklist_lock);
 	list_for_each_entry(task, &current->children, sibling) {
@@ -590,11 +590,25 @@ static int init_restart_ctx(struct ckpt_ctx *ctx, pid_t pid)
 		}
 	}
 	read_unlock(&tasklist_lock);
+	return task;
+}
+
+/* setup restart-specific parts of ctx */
+static int init_restart_ctx(struct ckpt_ctx *ctx, pid_t pid)
+{
+	struct nsproxy *nsproxy;
+
+	/*
+	 * No need for explicit cleanup here, because if an error
+	 * occurs then ckpt_ctx_free() is eventually called.
+	 */
+
+	ctx->root_task = choose_root_task(ctx, pid);
 	if (!ctx->root_task)
 		return -ESRCH;
 
 	rcu_read_lock();
-	nsproxy = task_nsproxy(task);
+	nsproxy = task_nsproxy(ctx->root_task);
 	if (nsproxy) {
 		get_nsproxy(nsproxy);
 		ctx->root_nsproxy = nsproxy;
-- 
1.6.1

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

* Re: [PATCH 1/1] fix -ESRCH on self-restart
       [not found] ` <20090615202022.GA18223-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
@ 2009-06-16  0:57   ` Oren Laadan
  0 siblings, 0 replies; 2+ messages in thread
From: Oren Laadan @ 2009-06-16  0:57 UTC (permalink / raw)
  To: Serge E. Hallyn; +Cc: Linux Containers


Applied, thanks.

Serge E. Hallyn wrote:
> when doing a self-restart, we can't search for ourselves on our
> list of children...
> 
> Signed-off-by: Serge E. Hallyn <serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
> ---
>  checkpoint/restart.c |   32 +++++++++++++++++++++++---------
>  1 files changed, 23 insertions(+), 9 deletions(-)
> 
> diff --git a/checkpoint/restart.c b/checkpoint/restart.c
> index b87d0e1..13f48fb 100644
> --- a/checkpoint/restart.c
> +++ b/checkpoint/restart.c
> @@ -569,16 +569,16 @@ static int wait_all_tasks_finish(struct ckpt_ctx *ctx)
>  	return ret;
>  }
>  
> -/* setup restart-specific parts of ctx */
> -static int init_restart_ctx(struct ckpt_ctx *ctx, pid_t pid)
> +static struct task_struct *choose_root_task(struct ckpt_ctx *ctx, pid_t pid)
>  {
> -	struct task_struct *task;
> -	struct nsproxy *nsproxy;
> +	struct task_struct *task = current;
>  
> -	/*
> -	 * No need for explicit cleanup here, because if an error
> -	 * occurs then ckpt_ctx_free() is eventually called.
> -	 */
> +	if (ctx->uflags & RESTART_TASKSELF) {
> +		ctx->root_pid = pid;
> +		ctx->root_task = task;
> +		get_task_struct(current);
> +		return current;
> +	}
>  
>  	read_lock(&tasklist_lock);
>  	list_for_each_entry(task, &current->children, sibling) {
> @@ -590,11 +590,25 @@ static int init_restart_ctx(struct ckpt_ctx *ctx, pid_t pid)
>  		}
>  	}
>  	read_unlock(&tasklist_lock);
> +	return task;
> +}
> +
> +/* setup restart-specific parts of ctx */
> +static int init_restart_ctx(struct ckpt_ctx *ctx, pid_t pid)
> +{
> +	struct nsproxy *nsproxy;
> +
> +	/*
> +	 * No need for explicit cleanup here, because if an error
> +	 * occurs then ckpt_ctx_free() is eventually called.
> +	 */
> +
> +	ctx->root_task = choose_root_task(ctx, pid);
>  	if (!ctx->root_task)
>  		return -ESRCH;
>  
>  	rcu_read_lock();
> -	nsproxy = task_nsproxy(task);
> +	nsproxy = task_nsproxy(ctx->root_task);
>  	if (nsproxy) {
>  		get_nsproxy(nsproxy);
>  		ctx->root_nsproxy = nsproxy;

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

end of thread, other threads:[~2009-06-16  0:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-15 20:20 [PATCH 1/1] fix -ESRCH on self-restart Serge E. Hallyn
     [not found] ` <20090615202022.GA18223-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2009-06-16  0:57   ` Oren Laadan

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.