diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-06-17 06:52:15 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-06-17 06:56:49 -0400 |
commit | eadb8a091b27a840de7450f84ecff5ef13476424 (patch) | |
tree | 58c3782d40def63baa8167f3d31e3048cb4c7660 /arch/x86/kernel/signal.c | |
parent | 73874005cd8800440be4299bd095387fff4b90ac (diff) | |
parent | 65795efbd380a832ae508b04dba8f8e53f0b84d9 (diff) |
Merge branch 'linus' into tracing/hw-breakpoints
Conflicts:
arch/x86/Kconfig
arch/x86/kernel/traps.c
arch/x86/power/cpu.c
arch/x86/power/cpu_32.c
kernel/Makefile
Semantic conflict:
arch/x86/kernel/hw_breakpoint.c
Merge reason: Resolve the conflicts, move from put_cpu_no_sched() to
put_cpu() in arch/x86/kernel/hw_breakpoint.c.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/signal.c')
-rw-r--r-- | arch/x86/kernel/signal.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/x86/kernel/signal.c b/arch/x86/kernel/signal.c index f33d2e0ef095..0f89a4f20db2 100644 --- a/arch/x86/kernel/signal.c +++ b/arch/x86/kernel/signal.c | |||
@@ -6,7 +6,6 @@ | |||
6 | * 2000-06-20 Pentium III FXSR, SSE support by Gareth Hughes | 6 | * 2000-06-20 Pentium III FXSR, SSE support by Gareth Hughes |
7 | * 2000-2002 x86-64 support by Andi Kleen | 7 | * 2000-2002 x86-64 support by Andi Kleen |
8 | */ | 8 | */ |
9 | |||
10 | #include <linux/sched.h> | 9 | #include <linux/sched.h> |
11 | #include <linux/mm.h> | 10 | #include <linux/mm.h> |
12 | #include <linux/smp.h> | 11 | #include <linux/smp.h> |
@@ -25,11 +24,11 @@ | |||
25 | #include <asm/ucontext.h> | 24 | #include <asm/ucontext.h> |
26 | #include <asm/i387.h> | 25 | #include <asm/i387.h> |
27 | #include <asm/vdso.h> | 26 | #include <asm/vdso.h> |
27 | #include <asm/mce.h> | ||
28 | 28 | ||
29 | #ifdef CONFIG_X86_64 | 29 | #ifdef CONFIG_X86_64 |
30 | #include <asm/proto.h> | 30 | #include <asm/proto.h> |
31 | #include <asm/ia32_unistd.h> | 31 | #include <asm/ia32_unistd.h> |
32 | #include <asm/mce.h> | ||
33 | #endif /* CONFIG_X86_64 */ | 32 | #endif /* CONFIG_X86_64 */ |
34 | 33 | ||
35 | #include <asm/syscall.h> | 34 | #include <asm/syscall.h> |
@@ -848,10 +847,10 @@ static void do_signal(struct pt_regs *regs) | |||
848 | void | 847 | void |
849 | do_notify_resume(struct pt_regs *regs, void *unused, __u32 thread_info_flags) | 848 | do_notify_resume(struct pt_regs *regs, void *unused, __u32 thread_info_flags) |
850 | { | 849 | { |
851 | #if defined(CONFIG_X86_64) && defined(CONFIG_X86_MCE) | 850 | #ifdef CONFIG_X86_NEW_MCE |
852 | /* notify userspace of pending MCEs */ | 851 | /* notify userspace of pending MCEs */ |
853 | if (thread_info_flags & _TIF_MCE_NOTIFY) | 852 | if (thread_info_flags & _TIF_MCE_NOTIFY) |
854 | mce_notify_user(); | 853 | mce_notify_process(); |
855 | #endif /* CONFIG_X86_64 && CONFIG_X86_MCE */ | 854 | #endif /* CONFIG_X86_64 && CONFIG_X86_MCE */ |
856 | 855 | ||
857 | /* deal with pending signal delivery */ | 856 | /* deal with pending signal delivery */ |