tracing: Remove duplicate checks for online CPUs
authorSteven Rostedt (Red Hat) <rostedt@goodmis.org>
Fri, 19 Feb 2016 18:59:54 +0000 (13:59 -0500)
committerSteven Rostedt <rostedt@goodmis.org>
Tue, 8 Mar 2016 16:19:28 +0000 (11:19 -0500)
commit633f6f58af445022e38417599a4789b5fc510b71
treec24dc87ea783d645110972446756835ef55e41ca
parentd39cdd2036a63eef17a14efbd969405ca5612886
tracing: Remove duplicate checks for online CPUs

Some trace events have conditions that check if the current CPU is online or
not before recording the tracepoint. That's because certain trace events are
in locations that can be called as the CPU is going offline and when RCU no
longer monitors it (like kfree and friends). The check was added because
trace events require RCU to be active.

This is a trace event infrastructure issue and not something that individual
trace events should worry about. The tracepoint.h code now has added a check
to see if the current CPU is considered online, and it only does the
tracepoint if it is. There's no more need for individual trace events to
also include this check. It is now redundant.

Cc: Shreyas B. Prabhu <shreyas@linux.vnet.ibm.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
include/trace/events/kmem.h
include/trace/events/tlb.h