|
@@ -17,13 +17,13 @@ extern void __context_tracking_task_switch(struct task_struct *prev,
|
|
|
|
|
|
static inline void user_enter(void)
|
|
|
{
|
|
|
- if (static_key_false(&context_tracking_enabled))
|
|
|
+ if (context_tracking_is_enabled())
|
|
|
context_tracking_user_enter();
|
|
|
|
|
|
}
|
|
|
static inline void user_exit(void)
|
|
|
{
|
|
|
- if (static_key_false(&context_tracking_enabled))
|
|
|
+ if (context_tracking_is_enabled())
|
|
|
context_tracking_user_exit();
|
|
|
}
|
|
|
|
|
@@ -31,7 +31,7 @@ static inline enum ctx_state exception_enter(void)
|
|
|
{
|
|
|
enum ctx_state prev_ctx;
|
|
|
|
|
|
- if (!static_key_false(&context_tracking_enabled))
|
|
|
+ if (!context_tracking_is_enabled())
|
|
|
return 0;
|
|
|
|
|
|
prev_ctx = this_cpu_read(context_tracking.state);
|
|
@@ -42,7 +42,7 @@ static inline enum ctx_state exception_enter(void)
|
|
|
|
|
|
static inline void exception_exit(enum ctx_state prev_ctx)
|
|
|
{
|
|
|
- if (static_key_false(&context_tracking_enabled)) {
|
|
|
+ if (context_tracking_is_enabled()) {
|
|
|
if (prev_ctx == IN_USER)
|
|
|
context_tracking_user_enter();
|
|
|
}
|
|
@@ -51,7 +51,7 @@ static inline void exception_exit(enum ctx_state prev_ctx)
|
|
|
static inline void context_tracking_task_switch(struct task_struct *prev,
|
|
|
struct task_struct *next)
|
|
|
{
|
|
|
- if (static_key_false(&context_tracking_enabled))
|
|
|
+ if (context_tracking_is_enabled())
|
|
|
__context_tracking_task_switch(prev, next);
|
|
|
}
|
|
|
#else
|