This is a note to let you know that I've just added the patch titled sparc32: Fix exit flag passed from traced sys_sigreturn to the 3.0-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: sparc32-fix-exit-flag-passed-from-traced-sys_sigreturn.patch and it can be found in the queue-3.0 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 53079d9d1a2b673288e9fd17df4535fdf437a014 Mon Sep 17 00:00:00 2001 From: Kirill Tkhai <tkhai@xxxxxxxxx> Date: Fri, 26 Jul 2013 01:17:15 +0400 Subject: sparc32: Fix exit flag passed from traced sys_sigreturn From: Kirill Tkhai <tkhai@xxxxxxxxx> [ Upstream commit 7a3b0f89e3fea680f93932691ca41a68eee7ab5e ] Pass 1 in %o1 to indicate that syscall_trace accounts exit. Signed-off-by: Kirill Tkhai <tkhai@xxxxxxxxx> CC: David Miller <davem@xxxxxxxxxxxxx> Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- arch/sparc/kernel/entry.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/arch/sparc/kernel/entry.S +++ b/arch/sparc/kernel/entry.S @@ -1177,7 +1177,7 @@ sys_sigreturn: nop call syscall_trace - nop + mov 1, %o1 1: /* We don't want to muck with user registers like a Patches currently in stable-queue which might be from tkhai@xxxxxxxxx are queue-3.0/sparc32-fix-exit-flag-passed-from-traced-sys_sigreturn.patch queue-3.0/sparc64-fix-itlb-handler-of-null-page.patch queue-3.0/sparc64-fix-off-by-one-in-trampoline-tlb-mapping-installation-loop.patch queue-3.0/sparc64-remove-rwsem-export-leftovers.patch queue-3.0/sparc64-fix-not-sra-ed-o5-in-32-bit-traced-syscall.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html