The patch titled Subject: proc-sysctl-add-shared-variables-for-range-check-fix-4 has been removed from the -mm tree. Its filename was proc-sysctl-add-shared-variables-for-range-check-fix-4.patch This patch was dropped because it was folded into proc-sysctl-add-shared-variables-for-range-check.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: proc-sysctl-add-shared-variables-for-range-check-fix-4 fix fs/eventpoll.c Cc: Arnd Bergmann <arnd@xxxxxxxx> Cc: Matteo Croce <mcroce@xxxxxxxxxx> Cc: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Cc: Alexey Dobriyan <adobriyan@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/eventpoll.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/fs/eventpoll.c~proc-sysctl-add-shared-variables-for-range-check-fix-4 +++ a/fs/eventpoll.c @@ -291,6 +291,7 @@ static LIST_HEAD(tfile_check_list); #include <linux/sysctl.h> +static long long_zero; static long long_max = LONG_MAX; struct ctl_table epoll_table[] = { @@ -300,7 +301,7 @@ struct ctl_table epoll_table[] = { .maxlen = sizeof(max_user_watches), .mode = 0644, .proc_handler = proc_doulongvec_minmax, - .extra1 = SYSCTL_ZERO, + .extra1 = &long_zero, .extra2 = &long_max, }, { } _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are proc-sysctl-add-shared-variables-for-range-check.patch