aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/context_tracking.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/context_tracking.c')
-rw-r--r--kernel/context_tracking.c23
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
23DEFINE_PER_CPU(struct context_tracking, context_tracking) = { 23struct static_key context_tracking_enabled = STATIC_KEY_INIT_FALSE;
24#ifdef CONFIG_CONTEXT_TRACKING_FORCE 24
25 .active = true, 25DEFINE_PER_CPU(struct context_tracking, context_tracking);
26#endif
27};
28 26
29void context_tracking_cpu_set(int cpu) 27void 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
208void __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