diff options
| author | Frederic Weisbecker <fweisbec@gmail.com> | 2013-07-11 13:12:32 -0400 |
|---|---|---|
| committer | Frederic Weisbecker <fweisbec@gmail.com> | 2013-08-14 11:12:46 -0400 |
| commit | 65f382fd0c8fa483713c0971de9f1dfb4cf1ad9c (patch) | |
| tree | dec89c43fcfb4934611bae4855293428382856b9 /kernel | |
| parent | d84d27a491880b9902b45c09be8d9e9464fb9b74 (diff) | |
context_tracking: Ground setup for static key use
Prepare for using a static key in the context tracking subsystem.
This will help optimizing the off case on its many users:
* user_enter, user_exit, exception_enter, exception_exit, guest_enter,
guest_exit, vtime_*()
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Li Zhong <zhong@linux.vnet.ibm.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Kevin Hilman <khilman@linaro.org>
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/context_tracking.c | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/kernel/context_tracking.c b/kernel/context_tracking.c index 72bcb2570d3e..839d377d0da5 100644 --- a/kernel/context_tracking.c +++ b/kernel/context_tracking.c | |||
| @@ -20,15 +20,16 @@ | |||
| 20 | #include <linux/hardirq.h> | 20 | #include <linux/hardirq.h> |
| 21 | #include <linux/export.h> | 21 | #include <linux/export.h> |
| 22 | 22 | ||
| 23 | DEFINE_PER_CPU(struct context_tracking, context_tracking) = { | 23 | struct static_key context_tracking_enabled = STATIC_KEY_INIT_FALSE; |
| 24 | #ifdef CONFIG_CONTEXT_TRACKING_FORCE | 24 | |
| 25 | .active = true, | 25 | DEFINE_PER_CPU(struct context_tracking, context_tracking); |
| 26 | #endif | ||
| 27 | }; | ||
| 28 | 26 | ||
| 29 | void context_tracking_cpu_set(int cpu) | 27 | void context_tracking_cpu_set(int cpu) |
| 30 | { | 28 | { |
| 31 | per_cpu(context_tracking.active, cpu) = true; | 29 | if (!per_cpu(context_tracking.active, cpu)) { |
| 30 | per_cpu(context_tracking.active, cpu) = true; | ||
| 31 | static_key_slow_inc(&context_tracking_enabled); | ||
| 32 | } | ||
| 32 | } | 33 | } |
| 33 | 34 | ||
| 34 | /** | 35 | /** |
| @@ -202,3 +203,13 @@ void context_tracking_task_switch(struct task_struct *prev, | |||
| 202 | clear_tsk_thread_flag(prev, TIF_NOHZ); | 203 | clear_tsk_thread_flag(prev, TIF_NOHZ); |
| 203 | set_tsk_thread_flag(next, TIF_NOHZ); | 204 | set_tsk_thread_flag(next, TIF_NOHZ); |
| 204 | } | 205 | } |
| 206 | |||
| 207 | #ifdef CONFIG_CONTEXT_TRACKING_FORCE | ||
| 208 | void __init context_tracking_init(void) | ||
| 209 | { | ||
| 210 | int cpu; | ||
| 211 | |||
| 212 | for_each_possible_cpu(cpu) | ||
| 213 | context_tracking_cpu_set(cpu); | ||
| 214 | } | ||
| 215 | #endif | ||
