The patch titled proc: fix ->stack_start in compat mode has been removed from the -mm tree. Its filename was proc-fix-stack_start-in-compat-mode.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: proc: fix ->stack_start in compat mode From: Alexey Dobriyan <adobriyan@xxxxxxxxx> Assign tsk->stack_start even when doing compat execve(2). As side effect, fix segfault inside boehm-gc library. Addresses http://bugzilla.kernel.org/show_bug.cgi?id=14478 Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Reported-by: Michael S. Tsirkin <m.s.tsirkin@xxxxxxxxx> Cc: "Rafael J. Wysocki" <rjw@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- diff -puN fs/compat.c~proc-fix-stack_start-in-compat-mode fs/compat.c --- a/fs/compat.c~proc-fix-stack_start-in-compat-mode +++ a/fs/compat.c @@ -1531,6 +1531,8 @@ int compat_do_execve(char * filename, if (retval < 0) goto out; + current->stack_start = current->mm->start_stack; + /* execve succeeded */ current->fs->in_exec = 0; current->in_execve = 0; _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are origin.patch uml-irq-register-race-condition.patch linux-next.patch genirq-switch-proc-irq-spurious-to-seq_file.patch const-constify-remaining-dev_pm_ops.patch proc-rename-de_get-to-pde_get-and-inline-it.patch const-constify-remaining-pipe_buf_operations.patch reiserfs-remove-proc-fs-reiserfs-version.patch reiserfs-dont-compile-procfso-at-all-if-no-support.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