| Kernel v2.4.14 /arch/i386/kernel/entry.S |
|---|
 2.4.14
 arch
 i386
 kernel
 entry.S
diff -u --recursive --new-file v2.4.13/linux/arch/i386/kernel/entry.S linux/arch/i386/kernel/entry.S
--- v2.4.13/linux/arch/i386/kernel/entry.S Tue Oct 23 22:48:49 2001
+++ linux/arch/i386/kernel/entry.S Fri Nov 2 17:18:49 2001
@@ -195,10 +195,10 @@
pushl %eax # save orig_eax
SAVE_ALL
GET_CURRENT(%ebx)
- cmpl $(NR_syscalls),%eax
- jae badsys
testb $0x02,tsk_ptrace(%ebx) # PT_TRACESYS
jne tracesys
+ cmpl $(NR_syscalls),%eax
+ jae badsys
call *SYMBOL_NAME(sys_call_table)(,%eax,4)
movl %eax,EAX(%esp) # save the return value
ENTRY(ret_from_sys_call)
|