diff options
Diffstat (limited to 'kernel/trace')
-rw-r--r-- | kernel/trace/trace_syscalls.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kernel/trace/trace_syscalls.c b/kernel/trace/trace_syscalls.c index 1352b0a36fac..a78e86349ecb 100644 --- a/kernel/trace/trace_syscalls.c +++ b/kernel/trace/trace_syscalls.c | |||
@@ -450,14 +450,14 @@ int init_syscall_trace(struct ftrace_event_call *call) | |||
450 | if (set_syscall_print_fmt(call) < 0) | 450 | if (set_syscall_print_fmt(call) < 0) |
451 | return -ENOMEM; | 451 | return -ENOMEM; |
452 | 452 | ||
453 | id = register_ftrace_event(call->event); | 453 | id = trace_event_raw_init(call); |
454 | if (!id) { | 454 | |
455 | if (id < 0) { | ||
455 | free_syscall_print_fmt(call); | 456 | free_syscall_print_fmt(call); |
456 | return -ENODEV; | 457 | return id; |
457 | } | 458 | } |
458 | call->id = id; | 459 | |
459 | INIT_LIST_HEAD(&call->fields); | 460 | return id; |
460 | return 0; | ||
461 | } | 461 | } |
462 | 462 | ||
463 | int __init init_ftrace_syscalls(void) | 463 | int __init init_ftrace_syscalls(void) |