The patch titled Add CTL_PROC back has been removed from the -mm tree. Its filename was add-ctl_proc-back.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Add CTL_PROC back From: Alexey Dobriyan <adobriyan@xxxxx> commit eab03ac7bd3e0da99eb9dc068772a85a5e3f3577 aka "[PATCH] Get rid of /proc/sys/proc" was good commit except strace(1) compile breakage it introduced: system.c:1581: error: 'CTL_PROC' undeclared here (not in a function) So, add dummy enum back. Signed-off-by: Alexey Dobriyan <adobriyan@xxxxx> Cc: Stephen Hemminger <shemminger@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/sysctl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/sysctl.h~add-ctl_proc-back include/linux/sysctl.h --- a/include/linux/sysctl.h~add-ctl_proc-back +++ a/include/linux/sysctl.h @@ -62,7 +62,7 @@ enum CTL_KERN=1, /* General kernel info and control */ CTL_VM=2, /* VM management */ CTL_NET=3, /* Networking */ - /* was CTL_PROC */ + CTL_PROC=4, /* removal breaks strace(1) compilation */ CTL_FS=5, /* Filesystems */ CTL_DEBUG=6, /* Debugging */ CTL_DEV=7, /* Devices */ _ Patches currently in -mm which might be from adobriyan@xxxxx are origin.patch fix-leak-on-proc-lockdep_stats.patch consolidate-ptrace_detach.patch use-list_head-in-binfmt-handling-update.patch make-unregister_binfmt-return-void.patch slab_panic-more-proc-posix-timers-shmem.patch add-kernel-notifierc.patch add-kernel-notifierc-fix.patch add-kernel-notifierc-fix-2.patch single_open-seq_release-leak-diagnostics.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