The patch titled Subject: cgroup: fix seq_show_option merge with legacy_name has been removed from the -mm tree. Its filename was cgroup-fix-seq_show_option-merge-with-legacy_name.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Kees Cook <keescook@xxxxxxxxxxxx> Subject: cgroup: fix seq_show_option merge with legacy_name When seq_show_option (068acf2ee776) was merged, it did not correctly collide with cgroup's addition of legacy_name (3e1d2eed39d8) changes. This fixes the reported name. Signed-off-by: Kees Cook <keescook@xxxxxxxxxxxx> Acked-by: Tejun Heo <tj@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/cgroup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/cgroup.c~cgroup-fix-seq_show_option-merge-with-legacy_name kernel/cgroup.c --- a/kernel/cgroup.c~cgroup-fix-seq_show_option-merge-with-legacy_name +++ a/kernel/cgroup.c @@ -1342,7 +1342,7 @@ static int cgroup_show_options(struct se if (root != &cgrp_dfl_root) for_each_subsys(ss, ssid) if (root->subsys_mask & (1 << ssid)) - seq_show_option(seq, ss->name, NULL); + seq_show_option(seq, ss->legacy_name, NULL); if (root->flags & CGRP_ROOT_NOPREFIX) seq_puts(seq, ",noprefix"); if (root->flags & CGRP_ROOT_XATTR) _ Patches currently in -mm which might be from keescook@xxxxxxxxxxxx are lib-string_helpers-clarify-esc-arg-in-string_escape_mem.patch lib-string_helpers-rename-esc-arg-to-only.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