projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eb642f6
)
i386: convert hardware exception 19 to an interrupt gate
author
Alexander van Heukelum
<
[email protected]
>
Tue, 9 Sep 2008 19:56:12 +0000
(21:56 +0200)
committer
Ingo Molnar
<
[email protected]
>
Mon, 13 Oct 2008 08:20:40 +0000
(10:20 +0200)
Handle SIMD coprocessor exception with interrupt initially off.
Signed-off-by: Alexander van Heukelum <
[email protected]
>
Signed-off-by: Ingo Molnar <
[email protected]
>
arch/x86/kernel/traps_32.c
patch
|
blob
|
history
diff --git
a/arch/x86/kernel/traps_32.c
b/arch/x86/kernel/traps_32.c
index 54b89f497bac77b46220cdb4a21a12557b50ec08..1bd7960b13572bbed08bc054534a49b32f6f46d4 100644
(file)
--- a/
arch/x86/kernel/traps_32.c
+++ b/
arch/x86/kernel/traps_32.c
@@
-1144,6
+1144,8
@@
static void simd_math_error(void __user *ip)
void do_simd_coprocessor_error(struct pt_regs *regs, long error_code)
{
+ conditional_sti(regs);
+
if (cpu_has_xmm) {
/* Handle SIMD FPU exceptions on PIII+ processors. */
ignore_fpu_irq = 1;
@@
-1294,7
+1296,7
@@
void __init trap_init(void)
#ifdef CONFIG_X86_MCE
set_intr_gate(18, &machine_check);
#endif
- set_
trap
_gate(19, &simd_coprocessor_error);
+ set_
intr
_gate(19, &simd_coprocessor_error);
if (cpu_has_fxsr) {
printk(KERN_INFO "Enabling fast FPU save and restore... ");