aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/perf_event.h
diff options
context:
space:
mode:
authorPeter Zijlstra <a.p.zijlstra@chello.nl>2010-10-17 06:15:00 -0400
committerIngo Molnar <mingo@elte.hu>2010-10-18 13:59:01 -0400
commitebf31f502492527e2b6b5e5cf85a4ebc7fc8a52e (patch)
tree71d65e73fedaee937d90b52d6efa1d9cbeaeff42 /include/linux/perf_event.h
parent7e54a5a0b655734326dc78c2b5efc1eb35497bb6 (diff)
jump_label: Add COND_STMT(), reducer wrappery
The use of the JUMP_LABEL() construct ends up creating endless silly wrappers, create a higher level construct to reduce this clutter. Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Jason Baron <jbaron@redhat.com> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Paul Mackerras <paulus@samba.org> LKML-Reference: <new-submission> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/perf_event.h')
-rw-r--r--include/linux/perf_event.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h
index 3b80cbf509e..057bf22a832 100644
--- a/include/linux/perf_event.h
+++ b/include/linux/perf_event.h
@@ -903,21 +903,13 @@ extern atomic_t perf_task_events;
903 903
904static inline void perf_event_task_sched_in(struct task_struct *task) 904static inline void perf_event_task_sched_in(struct task_struct *task)
905{ 905{
906 JUMP_LABEL(&perf_task_events, have_events); 906 COND_STMT(&perf_task_events, __perf_event_task_sched_in(task));
907 return;
908
909have_events:
910 __perf_event_task_sched_in(task);
911} 907}
912 908
913static inline 909static inline
914void perf_event_task_sched_out(struct task_struct *task, struct task_struct *next) 910void perf_event_task_sched_out(struct task_struct *task, struct task_struct *next)
915{ 911{
916 JUMP_LABEL(&perf_task_events, have_events); 912 COND_STMT(&perf_task_events, __perf_event_task_sched_out(task, next));
917 return;
918
919have_events:
920 __perf_event_task_sched_out(task, next);
921} 913}
922 914
923extern int perf_event_init_task(struct task_struct *child); 915extern int perf_event_init_task(struct task_struct *child);