From: Oren Laadan <orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
To: Dan Smith <danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
Cc: containers-qjLDD68F18O7TbgM5vRIOg@public.gmane.org
Subject: Re: [PATCH] Invert the NETNS checkpoint flag
Date: Sat, 24 Apr 2010 19:11:39 -0400 [thread overview]
Message-ID: <4BD37AAB.3090204@cs.columbia.edu> (raw)
In-Reply-To: <1270215265-29081-1-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
Applied for ckpt-v21-rc3.
Dan Smith wrote:
> Change CHECKPOINT_NONETNS to CHECKPOINT_NETNS. This makes it the default
> to ignore network namespaces and devices, unless specifically asked for
> by the caller.
>
> Signed-off-by: Dan Smith <danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
> ---
> include/linux/checkpoint.h | 4 ++--
> kernel/nsproxy.c | 4 ++--
> 2 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/include/linux/checkpoint.h b/include/linux/checkpoint.h
> index 6da0a2e..96693e2 100644
> --- a/include/linux/checkpoint.h
> +++ b/include/linux/checkpoint.h
> @@ -14,7 +14,7 @@
>
> /* checkpoint user flags */
> #define CHECKPOINT_SUBTREE 0x1
> -#define CHECKPOINT_NONETNS 0x2
> +#define CHECKPOINT_NETNS 0x2
>
> /* restart user flags */
> #define RESTART_TASKSELF 0x1
> @@ -59,7 +59,7 @@ extern long do_sys_restart(pid_t pid, int fd,
> /* ckpt_ctx: uflags */
> #define CHECKPOINT_USER_FLAGS \
> (CHECKPOINT_SUBTREE | \
> - CHECKPOINT_NONETNS)
> + CHECKPOINT_NETNS)
>
> #define RESTART_USER_FLAGS \
> (RESTART_TASKSELF | \
> diff --git a/kernel/nsproxy.c b/kernel/nsproxy.c
> index c19f5fa..041fb09 100644
> --- a/kernel/nsproxy.c
> +++ b/kernel/nsproxy.c
> @@ -249,7 +249,7 @@ int ckpt_collect_ns(struct ckpt_ctx *ctx, struct task_struct *t)
> if (ret < 0)
> goto out;
> #ifdef CONFIG_NETNS_CHECKPOINT
> - if (!(ctx->uflags & CHECKPOINT_NONETNS))
> + if (ctx->uflags & CHECKPOINT_NETNS)
> ret = ckpt_obj_collect(ctx, nsproxy->net_ns, CKPT_OBJ_NET_NS);
> if (ret < 0)
> goto out;
> @@ -295,7 +295,7 @@ static int do_checkpoint_ns(struct ckpt_ctx *ctx, struct nsproxy *nsproxy)
> goto out;
> h->ipc_objref = ret;
> #ifdef CONFIG_NETNS_CHECKPOINT
> - if (!(ctx->uflags & CHECKPOINT_NONETNS))
> + if (ctx->uflags & CHECKPOINT_NETNS)
> ret = checkpoint_obj(ctx, nsproxy->net_ns, CKPT_OBJ_NET_NS);
> else
> ret = 0;
prev parent reply other threads:[~2010-04-24 23:11 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-04-02 13:34 [PATCH] Invert the NETNS checkpoint flag Dan Smith
[not found] ` <1270215265-29081-1-git-send-email-danms-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2010-04-05 13:23 ` Serge E. Hallyn
2010-04-24 23:11 ` Oren Laadan [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=4BD37AAB.3090204@cs.columbia.edu \
--to=orenl-eqauephvms7envbuuze7ea@public.gmane.org \
--cc=containers-qjLDD68F18O7TbgM5vRIOg@public.gmane.org \
--cc=danms-r/Jw6+rmf7HQT0dZR+AlfA@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