i386: convert hardware exception 19 to an interrupt gate
Handle SIMD coprocessor exception with interrupt initially off. Signed-off-by: Alexander van Heukelum <heukelum@fastmail.fm> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
eb642f6208
commit
b939bde278
1 changed files with 3 additions and 1 deletions
|
@ -1144,6 +1144,8 @@ static void simd_math_error(void __user *ip)
|
||||||
|
|
||||||
void do_simd_coprocessor_error(struct pt_regs *regs, long error_code)
|
void do_simd_coprocessor_error(struct pt_regs *regs, long error_code)
|
||||||
{
|
{
|
||||||
|
conditional_sti(regs);
|
||||||
|
|
||||||
if (cpu_has_xmm) {
|
if (cpu_has_xmm) {
|
||||||
/* Handle SIMD FPU exceptions on PIII+ processors. */
|
/* Handle SIMD FPU exceptions on PIII+ processors. */
|
||||||
ignore_fpu_irq = 1;
|
ignore_fpu_irq = 1;
|
||||||
|
@ -1294,7 +1296,7 @@ void __init trap_init(void)
|
||||||
#ifdef CONFIG_X86_MCE
|
#ifdef CONFIG_X86_MCE
|
||||||
set_intr_gate(18, &machine_check);
|
set_intr_gate(18, &machine_check);
|
||||||
#endif
|
#endif
|
||||||
set_trap_gate(19, &simd_coprocessor_error);
|
set_intr_gate(19, &simd_coprocessor_error);
|
||||||
|
|
||||||
if (cpu_has_fxsr) {
|
if (cpu_has_fxsr) {
|
||||||
printk(KERN_INFO "Enabling fast FPU save and restore... ");
|
printk(KERN_INFO "Enabling fast FPU save and restore... ");
|
||||||
|
|
Loading…
Add table
Reference in a new issue