diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2012-05-23 15:28:58 -0400 |
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-06-01 12:58:50 -0400 |
| commit | 6fd84c0831ec78d98736b76dc5e9b849f1dbfc9e (patch) | |
| tree | d3d95e7a66f6edcd29cfc4f2ff01aec8422b5a88 /arch/mn10300/kernel | |
| parent | bf343dfd877ebf16cfbc31ba121606c5b6cef01f (diff) | |
TIF_RESTORE_SIGMASK can be set only when TIF_SIGPENDING is set
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/mn10300/kernel')
| -rw-r--r-- | arch/mn10300/kernel/signal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mn10300/kernel/signal.c b/arch/mn10300/kernel/signal.c index 1715478f4e9..d57013e06ea 100644 --- a/arch/mn10300/kernel/signal.c +++ b/arch/mn10300/kernel/signal.c | |||
| @@ -532,7 +532,7 @@ asmlinkage void do_notify_resume(struct pt_regs *regs, u32 thread_info_flags) | |||
| 532 | } | 532 | } |
| 533 | 533 | ||
| 534 | /* deal with pending signal delivery */ | 534 | /* deal with pending signal delivery */ |
| 535 | if (thread_info_flags & (_TIF_SIGPENDING | _TIF_RESTORE_SIGMASK)) | 535 | if (thread_info_flags & _TIF_SIGPENDING) |
| 536 | do_signal(regs); | 536 | do_signal(regs); |
| 537 | 537 | ||
| 538 | if (thread_info_flags & _TIF_NOTIFY_RESUME) { | 538 | if (thread_info_flags & _TIF_NOTIFY_RESUME) { |
