Skip to content

Commit

Permalink
[PATCH] uml: TT - SYSCALL_DEBUG - fix buglet introduced in cleanup
Browse files Browse the repository at this point in the history
Fixes a bug introduced in commit e32dacb -
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 <blaisorblade@yahoo.it>
Cc: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Paolo 'Blaisorblade' Giarrusso authored and Linus Torvalds committed Feb 1, 2006
1 parent 3dfd95b commit e5cf888
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions arch/um/kernel/tt/syscall_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,20 @@ void syscall_handler_tt(int sig, struct pt_regs *regs)
int syscall;
#ifdef CONFIG_SYSCALL_DEBUG
int index;
index = record_syscall_start(syscall);
#endif
sc = UPT_SC(&regs->regs);
SC_START_SYSCALL(sc);

syscall = UPT_SYSCALL_NR(&regs->regs);

#ifdef CONFIG_SYSCALL_DEBUG
index = record_syscall_start(syscall);
#endif

syscall_trace(&regs->regs, 0);

current->thread.nsyscalls++;
nsyscalls++;
syscall = UPT_SYSCALL_NR(&regs->regs);

if((syscall >= NR_syscalls) || (syscall < 0))
result = -ENOSYS;
Expand Down

0 comments on commit e5cf888

Please sign in to comment.