The patch titled Subject: sparc: make SA_NOMASK a synonym of SA_NODEFER has been added to the -mm tree. Its filename is sparc-make-sa_nomask-a-synonym-of-sa_nodefer.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Matt Fleming <matt.fleming@xxxxxxxxx> Subject: sparc: make SA_NOMASK a synonym of SA_NODEFER Unlike other architectures, sparc currently has no SA_NODEFER definition but only the older SA_NOMASK. Since SA_NOMASK is the historical name for SA_NODEFER, add SA_NODEFER and copy what other architectures do by making SA_NOMASK a synonym for SA_NODEFER. Signed-off-by: Matt Fleming <matt.fleming@xxxxxxxxx> Acked-by: Oleg Nesterov <oleg@xxxxxxxxxx> Cc: "David S. Miller" <davem@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/sparc/include/asm/signal.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN arch/sparc/include/asm/signal.h~sparc-make-sa_nomask-a-synonym-of-sa_nodefer arch/sparc/include/asm/signal.h --- a/arch/sparc/include/asm/signal.h~sparc-make-sa_nomask-a-synonym-of-sa_nodefer +++ a/arch/sparc/include/asm/signal.h @@ -143,10 +143,11 @@ struct sigstack { #define SA_ONSTACK _SV_SSTACK #define SA_RESTART _SV_INTR #define SA_ONESHOT _SV_RESET -#define SA_NOMASK 0x20u +#define SA_NODEFER 0x20u #define SA_NOCLDWAIT 0x100u #define SA_SIGINFO 0x200u +#define SA_NOMASK SA_NODEFER #define SIG_BLOCK 0x01 /* for blocking signals */ #define SIG_UNBLOCK 0x02 /* for unblocking signals */ _ Subject: Subject: sparc: make SA_NOMASK a synonym of SA_NODEFER Patches currently in -mm which might be from matt.fleming@xxxxxxxxx are linux-next.patch sparc-make-sa_nomask-a-synonym-of-sa_nodefer.patch signal-add-block_sigmask-for-adding-sigmask-to-current-blocked.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