Skip to content

Commit

Permalink
tracing: Forget about the NMI buffer for syscall events
Browse files Browse the repository at this point in the history
We are never in an NMI context when we commit a syscall trace to
perf. So just forget about the nmi buffer there.

Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Jason Baron <jbaron@redhat.com>
LKML-Reference: <1258863695-10464-2-git-send-email-fweisbec@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Frederic Weisbecker authored and Ingo Molnar committed Nov 22, 2009
1 parent ce71b9d commit 28889bf
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions kernel/trace/trace_syscalls.c
Original file line number Diff line number Diff line change
Expand Up @@ -511,10 +511,7 @@ static void prof_syscall_enter(struct pt_regs *regs, long id)

cpu = smp_processor_id();

if (in_nmi())
trace_buf = rcu_dereference(perf_trace_buf_nmi);
else
trace_buf = rcu_dereference(perf_trace_buf);
trace_buf = rcu_dereference(perf_trace_buf);

if (!trace_buf)
goto end;
Expand Down Expand Up @@ -617,10 +614,7 @@ static void prof_syscall_exit(struct pt_regs *regs, long ret)

cpu = smp_processor_id();

if (in_nmi())
trace_buf = rcu_dereference(perf_trace_buf_nmi);
else
trace_buf = rcu_dereference(perf_trace_buf);
trace_buf = rcu_dereference(perf_trace_buf);

if (!trace_buf)
goto end;
Expand Down

0 comments on commit 28889bf

Please sign in to comment.