Skip to content

Commit 3a99df9

Browse files
committed
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace
Pull signal bugfix from Eric Biederman: "When making the generic support for SIGEMT conditional on the presence of SIGEMT I made a typo that causes it to fail to activate. It was noticed comparatively quickly but the bug report just made it to me today" * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace: signal: Fix name of SIGEMT in #if defined() check
2 parents 1cc1570 + c3aff08 commit 3a99df9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/signal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2698,7 +2698,7 @@ enum siginfo_layout siginfo_layout(int sig, int si_code)
26982698
[SIGSEGV] = { NSIGSEGV, SIL_FAULT },
26992699
[SIGBUS] = { NSIGBUS, SIL_FAULT },
27002700
[SIGTRAP] = { NSIGTRAP, SIL_FAULT },
2701-
#if defined(SIGMET) && defined(NSIGEMT)
2701+
#if defined(SIGEMT) && defined(NSIGEMT)
27022702
[SIGEMT] = { NSIGEMT, SIL_FAULT },
27032703
#endif
27042704
[SIGCHLD] = { NSIGCHLD, SIL_CHLD },

0 commit comments

Comments
 (0)