diff options
| author | Chuck Ebbert <76306.1226@compuserve.com> | 2006-01-03 22:36:14 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-04 19:47:42 -0500 |
| commit | 631b034724364b413e8a52e7c2e03a9d77e4c2b4 (patch) | |
| tree | 9df818466b2a67debe2213f65dc2bcd3cde961ea | |
| parent | 3adfd4e2b8804e926a5245062ba8ee12e88d30c3 (diff) | |
[PATCH] i386: "invalid operand" -> "invalid opcode"
According to the manual, INT 6 is "invalid opcode", not "invalid operand".
Signed-off-by: Chuck Ebbert <76306.1226@compuserve.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
| -rw-r--r-- | arch/i386/kernel/traps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/kernel/traps.c b/arch/i386/kernel/traps.c index f0dffa03fbba..ab0e9430f775 100644 --- a/arch/i386/kernel/traps.c +++ b/arch/i386/kernel/traps.c | |||
| @@ -452,7 +452,7 @@ DO_VM86_ERROR( 3, SIGTRAP, "int3", int3) | |||
| 452 | #endif | 452 | #endif |
| 453 | DO_VM86_ERROR( 4, SIGSEGV, "overflow", overflow) | 453 | DO_VM86_ERROR( 4, SIGSEGV, "overflow", overflow) |
| 454 | DO_VM86_ERROR( 5, SIGSEGV, "bounds", bounds) | 454 | DO_VM86_ERROR( 5, SIGSEGV, "bounds", bounds) |
| 455 | DO_ERROR_INFO( 6, SIGILL, "invalid operand", invalid_op, ILL_ILLOPN, regs->eip) | 455 | DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->eip) |
| 456 | DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun) | 456 | DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun) |
| 457 | DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS) | 457 | DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS) |
| 458 | DO_ERROR(11, SIGBUS, "segment not present", segment_not_present) | 458 | DO_ERROR(11, SIGBUS, "segment not present", segment_not_present) |
