From: "Serge E. Hallyn" <serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
To: Oren Laadan <orenl-RdfvBDnrOixBDgjK7y7TUQ@public.gmane.org>
Cc: containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
Subject: Re: [PATCH] c/r: threads sync on restart (fix regression from commit afbe522c...)
Date: Sun, 4 Oct 2009 22:28:11 -0500 [thread overview]
Message-ID: <20091005032811.GA32201@us.ibm.com> (raw)
In-Reply-To: <1254610422-11441-1-git-send-email-orenl-RdfvBDnrOixBDgjK7y7TUQ@public.gmane.org>
Quoting Oren Laadan (orenl-RdfvBDnrOixBDgjK7y7TUQ@public.gmane.org):
> Initialize the new member signal->restart_count in copy_signal().
>
> The lack of which in commit afbe522ccf6b1deb5edfc01a00becfe6ee325d0c,
> c/r: let entire thread group in sys_restart before restoring a thread,
> can cause run-pthreads1.sh test failure.
>
> In this patch are two other small cleanups:
>
> 1) In post_restore_task() test if current->checkpoint_data is valid,
> and return immediately if not (meaning restart failed early).
>
> 2) Replace two instances of DECLARE_WAIT_QUEUE_HEAD(waitq) with
> DECLARE_WAIT_QUEUE_HEAD_ONSTACK(waitq), to please the lockdep checked.
>
> Signed-off-by: Oren Laadan <orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
Tested-by: Serge Hallyn <serue-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
thanks,
-serge
> ---
> checkpoint/process.c | 4 ++++
> checkpoint/restart.c | 4 ++--
> kernel/fork.c | 4 ++++
> 3 files changed, 10 insertions(+), 2 deletions(-)
>
> diff --git a/checkpoint/process.c b/checkpoint/process.c
> index c2832fe..424f688 100644
> --- a/checkpoint/process.c
> +++ b/checkpoint/process.c
> @@ -847,6 +847,10 @@ int pre_restore_task(struct ckpt_ctx *ctx)
> /* pre_restore_task - prepare the task for restore */
> void post_restore_task(struct ckpt_ctx *ctx)
> {
> + /* can happen if restart failed early */
> + if (!current->checkpoint_data)
> + return;
> +
> /* only now is it safe to unblock the restored task's signals */
> sigprocmask(SIG_SETMASK, ¤t->checkpoint_data->blocked, NULL);
>
> diff --git a/checkpoint/restart.c b/checkpoint/restart.c
> index b2dc139..3a58a76 100644
> --- a/checkpoint/restart.c
> +++ b/checkpoint/restart.c
> @@ -821,7 +821,7 @@ static int wait_task_sync(struct ckpt_ctx *ctx)
> /* grabs a reference to the @ctx on success; caller should free */
> static struct ckpt_ctx *wait_checkpoint_ctx(void)
> {
> - DECLARE_WAIT_QUEUE_HEAD(waitq);
> + DECLARE_WAIT_QUEUE_HEAD_ONSTACK(waitq);
> struct ckpt_ctx *ctx;
> int ret;
>
> @@ -912,7 +912,7 @@ static int wait_sync_threads(void)
> wake_up_process(p);
> read_unlock(&tasklist_lock);
> } else {
> - DECLARE_WAIT_QUEUE_HEAD(waitq);
> + DECLARE_WAIT_QUEUE_HEAD_ONSTACK(waitq);
> ret = wait_event_interruptible(waitq, !atomic_read(count));
> }
>
> diff --git a/kernel/fork.c b/kernel/fork.c
> index 0e226f5..04dffe9 100644
> --- a/kernel/fork.c
> +++ b/kernel/fork.c
> @@ -865,6 +865,10 @@ static int copy_signal(unsigned long clone_flags, struct task_struct *tsk)
>
> tty_audit_fork(sig);
>
> +#ifdef CONFIG_CHECKPOINT
> + atomic_set(&sig->restart_count, 0);
> +#endif
> +
> return 0;
> }
>
> --
> 1.6.0.4
prev parent reply other threads:[~2009-10-05 3:28 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-10-03 22:53 [PATCH] c/r: threads sync on restart (fix regression from commit afbe522c...) Oren Laadan
[not found] ` <1254610422-11441-1-git-send-email-orenl-RdfvBDnrOixBDgjK7y7TUQ@public.gmane.org>
2009-10-05 3:28 ` Serge E. Hallyn [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20091005032811.GA32201@us.ibm.com \
--to=serue-r/jw6+rmf7hqt0dzr+alfa@public.gmane.org \
--cc=containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org \
--cc=orenl-RdfvBDnrOixBDgjK7y7TUQ@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox