]> git.hungrycats.org Git - linux/commitdiff
[PATCH] remove old double fault handler
authorBrian Gerst <bgerst@didntduck.org>
Fri, 21 Feb 2003 11:30:28 +0000 (03:30 -0800)
committerLinus Torvalds <torvalds@home.transmeta.com>
Fri, 21 Feb 2003 11:30:28 +0000 (03:30 -0800)
Removes the now unused trap handler for double faults.  Also removes the
never used handler for fpu not available.

arch/i386/kernel/entry.S
arch/i386/kernel/traps.c

index 258c418d43891b6b7f52e6a051b03d4530587a29..edfb712a2ba0352b7ae2eb85e9a49662fb664fea 100644 (file)
@@ -500,10 +500,6 @@ ENTRY(coprocessor_segment_overrun)
        pushl $do_coprocessor_segment_overrun
        jmp error_code
 
-ENTRY(double_fault)
-       pushl $do_double_fault
-       jmp error_code
-
 ENTRY(invalid_TSS)
        pushl $do_invalid_TSS
        jmp error_code
index 210d9069e14d3b31438cb685ff941dc9320a9d0a..d872cc7697571eb8c6ee1ba8ce8444dd44b25d30 100644 (file)
@@ -73,7 +73,6 @@ asmlinkage void overflow(void);
 asmlinkage void bounds(void);
 asmlinkage void invalid_op(void);
 asmlinkage void device_not_available(void);
-asmlinkage void double_fault(void);
 asmlinkage void coprocessor_segment_overrun(void);
 asmlinkage void invalid_TSS(void);
 asmlinkage void segment_not_present(void);
@@ -349,8 +348,6 @@ DO_VM86_ERROR( 3, SIGTRAP, "int3", int3)
 DO_VM86_ERROR( 4, SIGSEGV, "overflow", overflow)
 DO_VM86_ERROR( 5, SIGSEGV, "bounds", bounds)
 DO_ERROR_INFO( 6, SIGILL,  "invalid operand", invalid_op, ILL_ILLOPN, regs->eip)
-DO_VM86_ERROR( 7, SIGSEGV, "device not available", device_not_available)
-DO_ERROR( 8, SIGSEGV, "double fault", double_fault)
 DO_ERROR( 9, SIGFPE,  "coprocessor segment overrun", coprocessor_segment_overrun)
 DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
 DO_ERROR(11, SIGBUS,  "segment not present", segment_not_present)