[PATCH 1/1] cgroup mount: ignore nsroot=
Tycho Andersen
tycho.andersen at canonical.com
Wed Mar 30 22:04:27 UTC 2016
On Wed, Mar 30, 2016 at 04:02:36PM -0600, Tim Gardner wrote:
> On 03/30/2016 12:19 PM, Serge Hallyn wrote:
> > (I realize it's probably too late for anything but SRU at this point. The
> > motivator for this is criu live migration, where it is needed for container
> > restart (not checkpoint afaik))
> >
> > our mountinfo output now shows 'nsroot='. If userspace like
> > criu copy/pastes mount options from there into a new mount
> > command, we should ignore it.
> >
> > Signed-off-by: Serge Hallyn <serge.hallyn at ubuntu.com>
> > Tested-by: Tycho Andersen <tycho.andersen at canonical.com>
> > ---
> > kernel/cgroup.c | 4 ++++
> > 1 file changed, 4 insertions(+)
> >
> > diff --git a/kernel/cgroup.c b/kernel/cgroup.c
> > index ef0c25d..69fb112 100644
> > --- a/kernel/cgroup.c
> > +++ b/kernel/cgroup.c
> > @@ -1680,6 +1680,10 @@ static int parse_cgroupfs_options(char *data, struct cgroup_sb_opts *opts)
> > opts->none = true;
> > continue;
> > }
> > + if (!strncmp(token, "nsroot=", 7)) {
> > + /* ignore nsroot= copied from mountinfo */
> > + continue;
> > + }
> > if (!strcmp(token, "all")) {
> > /* Mutually exclusive option 'all' + subsystem name */
> > if (one_ss)
> >
>
> I need a bug number for tracking.
Here's one against CRIU, we can reassign it to the kernel if you want
or I can file a new one, let me know which is better.
https://bugs.launchpad.net/ubuntu/+source/criu/+bug/1563921
Tycho
More information about the kernel-team
mailing list