The patch titled Subject: linux-next-rejects has been added to the -mm tree. Its filename is linux-next-rejects.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/linux-next-rejects.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/linux-next-rejects.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: linux-next-rejects Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/cgroup/cgroup.c | 56 ++++++++++++++++----------------------- 1 file changed, 24 insertions(+), 32 deletions(-) diff -puN kernel/cgroup/cgroup.c~linux-next-rejects kernel/cgroup/cgroup.c --- a/kernel/cgroup/cgroup.c~linux-next-rejects +++ a/kernel/cgroup/cgroup.c @@ -1734,27 +1734,32 @@ int cgroup_show_path(struct seq_file *sf return len; } -static int parse_cgroup_root_flags(char *data, unsigned int *root_flags) +static int cgroup2_parse_option(struct fs_context *fc, char *token) { - char *token; + struct cgroup_fs_context *ctx = cgroup_fc2context(fc); - *root_flags = 0; + if (!strcmp(token, "nsdelegate")) { + ctx->flags |= CGRP_ROOT_NS_DELEGATE; + return 0; + } - if (!data) + if (!strcmp(token, "groupoom")) { + ctx->flags |= CGRP_GROUP_OOM; return 0; + } - while ((token = strsep(&data, ",")) != NULL) { - if (!strcmp(token, "nsdelegate")) { - *root_flags |= CGRP_ROOT_NS_DELEGATE; - continue; - } else if (!strcmp(token, "groupoom")) { - *root_flags |= CGRP_GROUP_OOM; - continue; - } + return -EINVAL; +} - pr_err("cgroup2: unknown option \"%s\"\n", token); - return -EINVAL; - } +static int cgroup_show_options(struct seq_file *seq, struct kernfs_root *kf_root) +{ + if (current->nsproxy->cgroup_ns != &init_cgroup_ns) + return 0; + + if (cgrp_dfl_root.flags & CGRP_ROOT_NS_DELEGATE) + seq_puts(seq, ",nsdelegate"); + if (cgrp_dfl_root.flags & CGRP_GROUP_OOM) + seq_puts(seq, ",groupoom"); return 0; } @@ -1774,25 +1779,12 @@ static void apply_cgroup_root_flags(unsi } } -static int cgroup_show_options(struct seq_file *seq, struct kernfs_root *kf_root) +static int +cgroup_reconfigure(struct kernfs_root *kf_root, struct fs_context *fc) { - if (cgrp_dfl_root.flags & CGRP_ROOT_NS_DELEGATE) - seq_puts(seq, ",nsdelegate"); - if (cgrp_dfl_root.flags & CGRP_GROUP_OOM) - seq_puts(seq, ",groupoom"); - return 0; -} - -static int cgroup_remount(struct kernfs_root *kf_root, int *flags, char *data) -{ - unsigned int root_flags; - int ret; - - ret = parse_cgroup_root_flags(data, &root_flags); - if (ret) - return ret; + struct cgroup_fs_context *ctx = cgroup_fc2context(fc); - apply_cgroup_root_flags(root_flags); + apply_cgroup_root_flags(ctx->flags); return 0; } _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are i-need-old-gcc.patch arm-arch-arm-include-asm-pageh-needs-personalityh.patch mm.patch list_lru-prefetch-neighboring-list-entries-before-acquiring-lock-fix.patch mm-oom-cgroup-aware-oom-killer-fix.patch mm-oom-cgroup-aware-oom-killer-fix-2.patch mm-oom-docs-describe-the-cgroup-aware-oom-killer-fix-2-fix.patch linux-next-rejects.patch kernel-forkc-export-kernel_thread-to-modules.patch slab-leaks3-default-y.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html