The patch titled Subject: proc-fix-page_size-limit-of-proc-pid-cmdline-update has been removed from the -mm tree. Its filename was proc-fix-page_size-limit-of-proc-pid-cmdline-update.patch This patch was dropped because it was folded into proc-fix-page_size-limit-of-proc-pid-cmdline.patch ------------------------------------------------------ From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Subject: proc-fix-page_size-limit-of-proc-pid-cmdline-update Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Tested-by: Jarod Wilson <jarod@xxxxxxxxxx> Acked-by: Jarod Wilson <jarod@xxxxxxxxxx> Cc: Cyrill Gorcunov <gorcunov@xxxxxxxxxx> Cc: Jan Stancek <jstancek@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/proc/base.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN fs/proc/base.c~proc-fix-page_size-limit-of-proc-pid-cmdline-update fs/proc/base.c --- a/fs/proc/base.c~proc-fix-page_size-limit-of-proc-pid-cmdline-update +++ a/fs/proc/base.c @@ -218,7 +218,8 @@ static ssize_t proc_pid_cmdline_read(str put_task_struct(tsk); if (!mm) return 0; - if (!mm->arg_end) { + /* Check if process spawned far enough to have cmdline. */ + if (!mm->env_end) { rv = 0; goto out_mmput; } _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are origin.patch prctl-more-prctlpr_set_mm_-checks.patch proc-fix-page_size-limit-of-proc-pid-cmdline.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