[PATCH] uml: remove syscall debugging
Eliminate an unused debug option. Signed-off-by: Jeff Dike <jdike@addtoit.com> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
29ac1c2142
commit
469226a431
@ -21,18 +21,11 @@ void syscall_handler_tt(int sig, struct pt_regs *regs)
|
||||
void *sc;
|
||||
long result;
|
||||
int syscall;
|
||||
#ifdef CONFIG_SYSCALL_DEBUG
|
||||
int index;
|
||||
#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++;
|
||||
@ -50,7 +43,4 @@ void syscall_handler_tt(int sig, struct pt_regs *regs)
|
||||
SC_SET_SYSCALL_RETURN(sc, result);
|
||||
|
||||
syscall_trace(®s->regs, 1);
|
||||
#ifdef CONFIG_SYSCALL_DEBUG
|
||||
record_syscall_end(index, result);
|
||||
#endif
|
||||
}
|
||||
|
Reference in New Issue
Block a user