context_tracking: Rename context_tracking_active() to context_tracking_cpu_is_enabled()
We currently have a confusing couple of API naming with the existing context_tracking_active() and context_tracking_is_enabled(). Lets keep the latter one, context_tracking_is_enabled(), for global context tracking state check and use context_tracking_cpu_is_enabled() for local state check. Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Oleg Nesterov <oleg@redhat.com> Cc: Steven Rostedt <rostedt@goodmis.org>
This commit is contained in:
@@ -26,15 +26,16 @@ static inline bool context_tracking_is_enabled(void)
|
|||||||
{
|
{
|
||||||
return static_key_false(&context_tracking_enabled);
|
return static_key_false(&context_tracking_enabled);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline bool context_tracking_cpu_is_enabled(void)
|
||||||
|
{
|
||||||
|
return __this_cpu_read(context_tracking.active);
|
||||||
|
}
|
||||||
|
|
||||||
static inline bool context_tracking_in_user(void)
|
static inline bool context_tracking_in_user(void)
|
||||||
{
|
{
|
||||||
return __this_cpu_read(context_tracking.state) == IN_USER;
|
return __this_cpu_read(context_tracking.state) == IN_USER;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline bool context_tracking_active(void)
|
|
||||||
{
|
|
||||||
return __this_cpu_read(context_tracking.active);
|
|
||||||
}
|
|
||||||
#else
|
#else
|
||||||
static inline bool context_tracking_in_user(void) { return false; }
|
static inline bool context_tracking_in_user(void) { return false; }
|
||||||
static inline bool context_tracking_active(void) { return false; }
|
static inline bool context_tracking_active(void) { return false; }
|
||||||
|
@@ -20,7 +20,7 @@ static inline bool vtime_accounting_enabled(void) { return true; }
|
|||||||
static inline bool vtime_accounting_enabled(void)
|
static inline bool vtime_accounting_enabled(void)
|
||||||
{
|
{
|
||||||
if (context_tracking_is_enabled()) {
|
if (context_tracking_is_enabled()) {
|
||||||
if (context_tracking_active())
|
if (context_tracking_cpu_is_enabled())
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user