Prev: [PATCH 37/40] trace syscalls: Print out unmapped syscalls at boot
Next: [PATCH 25/40] trace syscalls: Refactor syscall metadata creation
From: Ian Munsie on 23 Jun 2010 06:10 From: Ian Munsie <imunsie(a)au1.ibm.com> Since the ftrace event initialisation routine now verifies that either the syscall number or the compat syscall number is valid and will not create events for unmapped syscalls, it is unnecessary to explicitly search for them, so remove it. Signed-off-by: Ian Munsie <imunsie(a)au1.ibm.com> --- kernel/trace/trace_syscalls.c | 20 -------------------- 1 files changed, 0 insertions(+), 20 deletions(-) diff --git a/kernel/trace/trace_syscalls.c b/kernel/trace/trace_syscalls.c index c0041e3..108c2eb 100644 --- a/kernel/trace/trace_syscalls.c +++ b/kernel/trace/trace_syscalls.c @@ -528,26 +528,6 @@ int __init init_ftrace_syscalls(void) meta->compat_syscall_nr = i; compat_syscalls_metadata[i] = meta; } - /* now check if any compat_syscalls are not referenced */ - for (ftrace_event = __start_ftrace_events; - (unsigned long)ftrace_event < - (unsigned long)__stop_ftrace_events; ftrace_event++) { - - match = 0; - if (!ftrace_event->name) - continue; - if (strcmp(ftrace_event->class->system, "compat_syscalls")) - continue; - for (i = 0; i < NR_syscalls_compat; i++) { - if (ftrace_event->data == - compat_syscalls_metadata[i]) { - match = 1; - break; - } - } - if (!match) - ftrace_event->name = NULL; - } } #endif return 0; -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |