patch-2.0.28 linux/arch/i386/kernel/traps.c
Next file: linux/arch/i386/kernel/vm86.c
Previous file: linux/arch/i386/kernel/signal.c
Back to the patch index
Back to the overall index
- Lines: 48
- Date:
Wed Dec 11 16:41:01 1996
- Orig file:
v2.0.27/linux/arch/i386/kernel/traps.c
- Orig date:
Wed Nov 13 11:26:21 1996
diff -u --recursive --new-file v2.0.27/linux/arch/i386/kernel/traps.c linux/arch/i386/kernel/traps.c
@@ -44,6 +44,20 @@
die_if_kernel(str,regs,error_code); \
}
+#define DO_VM86_ERROR(trapnr, signr, str, name, tsk) \
+asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
+{ \
+ if (regs->eflags & VM_MASK) { \
+ if (!handle_vm86_trap((struct vm86_regs *) regs, error_code, trapnr)) \
+ return; \
+ /* else fall through */ \
+ } \
+ tsk->tss.error_code = error_code; \
+ tsk->tss.trap_no = trapnr; \
+ force_sig(signr, tsk); \
+ die_if_kernel(str,regs,error_code); \
+}
+
#define get_seg_byte(seg,addr) ({ \
register unsigned char __res; \
__asm__("push %%fs;mov %%ax,%%fs;movb %%fs:%2,%%al;pop %%fs" \
@@ -163,12 +177,12 @@
do_exit(SIGSEGV);
}
-DO_ERROR( 0, SIGFPE, "divide error", divide_error, current)
-DO_ERROR( 3, SIGTRAP, "int3", int3, current)
-DO_ERROR( 4, SIGSEGV, "overflow", overflow, current)
-DO_ERROR( 5, SIGSEGV, "bounds", bounds, current)
+DO_VM86_ERROR( 0, SIGFPE, "divide error", divide_error, current)
+DO_VM86_ERROR( 3, SIGTRAP, "int3", int3, current)
+DO_VM86_ERROR( 4, SIGSEGV, "overflow", overflow, current)
+DO_VM86_ERROR( 5, SIGSEGV, "bounds", bounds, current)
DO_ERROR( 6, SIGILL, "invalid operand", invalid_op, current)
-DO_ERROR( 7, SIGSEGV, "device not available", device_not_available, current)
+DO_VM86_ERROR( 7, SIGSEGV, "device not available", device_not_available, current)
DO_ERROR( 8, SIGSEGV, "double fault", double_fault, current)
DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun, last_task_used_math)
DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS, current)
@@ -205,7 +219,7 @@
asmlinkage void do_debug(struct pt_regs * regs, long error_code)
{
if (regs->eflags & VM_MASK) {
- handle_vm86_debug((struct vm86_regs *) regs, error_code);
+ handle_vm86_trap((struct vm86_regs *) regs, error_code, 1);
return;
}
force_sig(SIGTRAP, current);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov