diff options
author | Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com> | 2008-09-23 20:21:45 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-09-24 03:35:54 -0400 |
commit | ee847c54ba7fc09f85f13a5bf18f45ea6c19aa83 (patch) | |
tree | 4a7b2f98df43c2f1a026ecfe57a97ab452176dc3 /arch/x86/kernel/signal_32.c | |
parent | 5fd933303bd1efacbd0acbe452ba9b889440eb40 (diff) |
x86: signal: cosmetic unification of do_notify_resume()
Make do_notify_resume() same.
Signed-off-by: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/signal_32.c')
-rw-r--r-- | arch/x86/kernel/signal_32.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/x86/kernel/signal_32.c b/arch/x86/kernel/signal_32.c index da3cf3270f83..b94463f264b4 100644 --- a/arch/x86/kernel/signal_32.c +++ b/arch/x86/kernel/signal_32.c | |||
@@ -663,6 +663,12 @@ static void do_signal(struct pt_regs *regs) | |||
663 | void | 663 | void |
664 | do_notify_resume(struct pt_regs *regs, void *unused, __u32 thread_info_flags) | 664 | do_notify_resume(struct pt_regs *regs, void *unused, __u32 thread_info_flags) |
665 | { | 665 | { |
666 | #if defined(CONFIG_X86_64) && defined(CONFIG_X86_MCE) | ||
667 | /* notify userspace of pending MCEs */ | ||
668 | if (thread_info_flags & _TIF_MCE_NOTIFY) | ||
669 | mce_notify_user(); | ||
670 | #endif /* CONFIG_X86_64 && CONFIG_X86_MCE */ | ||
671 | |||
666 | /* deal with pending signal delivery */ | 672 | /* deal with pending signal delivery */ |
667 | if (thread_info_flags & _TIF_SIGPENDING) | 673 | if (thread_info_flags & _TIF_SIGPENDING) |
668 | do_signal(regs); | 674 | do_signal(regs); |
@@ -672,7 +678,9 @@ do_notify_resume(struct pt_regs *regs, void *unused, __u32 thread_info_flags) | |||
672 | tracehook_notify_resume(regs); | 678 | tracehook_notify_resume(regs); |
673 | } | 679 | } |
674 | 680 | ||
681 | #ifdef CONFIG_X86_32 | ||
675 | clear_thread_flag(TIF_IRET); | 682 | clear_thread_flag(TIF_IRET); |
683 | #endif /* CONFIG_X86_32 */ | ||
676 | } | 684 | } |
677 | 685 | ||
678 | void signal_fault(struct pt_regs *regs, void __user *frame, char *where) | 686 | void signal_fault(struct pt_regs *regs, void __user *frame, char *where) |