diff options
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/time/tick-sched.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c index 0b7887389bd2..0ff6ae710161 100644 --- a/kernel/time/tick-sched.c +++ b/kernel/time/tick-sched.c | |||
@@ -198,7 +198,7 @@ static void tick_nohz_restart_sched_tick(struct tick_sched *ts, ktime_t now); | |||
198 | * Re-evaluate the need for the tick on the current CPU | 198 | * Re-evaluate the need for the tick on the current CPU |
199 | * and restart it if necessary. | 199 | * and restart it if necessary. |
200 | */ | 200 | */ |
201 | void tick_nohz_full_check(void) | 201 | void __tick_nohz_full_check(void) |
202 | { | 202 | { |
203 | struct tick_sched *ts = &__get_cpu_var(tick_cpu_sched); | 203 | struct tick_sched *ts = &__get_cpu_var(tick_cpu_sched); |
204 | 204 | ||
@@ -212,7 +212,7 @@ void tick_nohz_full_check(void) | |||
212 | 212 | ||
213 | static void nohz_full_kick_work_func(struct irq_work *work) | 213 | static void nohz_full_kick_work_func(struct irq_work *work) |
214 | { | 214 | { |
215 | tick_nohz_full_check(); | 215 | __tick_nohz_full_check(); |
216 | } | 216 | } |
217 | 217 | ||
218 | static DEFINE_PER_CPU(struct irq_work, nohz_full_kick_work) = { | 218 | static DEFINE_PER_CPU(struct irq_work, nohz_full_kick_work) = { |
@@ -231,7 +231,7 @@ void tick_nohz_full_kick(void) | |||
231 | 231 | ||
232 | static void nohz_full_kick_ipi(void *info) | 232 | static void nohz_full_kick_ipi(void *info) |
233 | { | 233 | { |
234 | tick_nohz_full_check(); | 234 | __tick_nohz_full_check(); |
235 | } | 235 | } |
236 | 236 | ||
237 | /* | 237 | /* |
@@ -254,7 +254,7 @@ void tick_nohz_full_kick_all(void) | |||
254 | * It might need the tick due to per task/process properties: | 254 | * It might need the tick due to per task/process properties: |
255 | * perf events, posix cpu timers, ... | 255 | * perf events, posix cpu timers, ... |
256 | */ | 256 | */ |
257 | void tick_nohz_task_switch(struct task_struct *tsk) | 257 | void __tick_nohz_task_switch(struct task_struct *tsk) |
258 | { | 258 | { |
259 | unsigned long flags; | 259 | unsigned long flags; |
260 | 260 | ||