From: "Paolo 'Blaisorblade' Giarrusso" Fixes a bug introduced in commit e32dacb9f481fd6decb41adb28e720c923d34f54 - index is initialized based on syscall before syscall is calculated. I'm bothering with this mainly because it gives a correct warning when the config option is enabled, even if the code is for a almost unused debugging option. Signed-off-by: Paolo 'Blaisorblade' Giarrusso Cc: Jeff Dike Signed-off-by: Andrew Morton --- arch/um/kernel/tt/syscall_kern.c | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff -puN arch/um/kernel/tt/syscall_kern.c~uml-tt-syscall_debug-fix-buglet-introduced-in-cleanup arch/um/kernel/tt/syscall_kern.c --- devel/arch/um/kernel/tt/syscall_kern.c~uml-tt-syscall_debug-fix-buglet-introduced-in-cleanup 2006-01-18 20:28:29.000000000 -0800 +++ devel-akpm/arch/um/kernel/tt/syscall_kern.c 2006-01-18 20:28:29.000000000 -0800 @@ -23,16 +23,20 @@ void syscall_handler_tt(int sig, struct int syscall; #ifdef CONFIG_SYSCALL_DEBUG int index; - index = record_syscall_start(syscall); #endif sc = UPT_SC(®s->regs); SC_START_SYSCALL(sc); + syscall = UPT_SYSCALL_NR(®s->regs); + +#ifdef CONFIG_SYSCALL_DEBUG + index = record_syscall_start(syscall); +#endif + syscall_trace(®s->regs, 0); current->thread.nsyscalls++; nsyscalls++; - syscall = UPT_SYSCALL_NR(®s->regs); if((syscall >= NR_syscalls) || (syscall < 0)) result = -ENOSYS; _