Home
last modified time | relevance | path

Searched refs:prev_ctx (Results 1 – 2 of 2) sorted by relevance

/linux/include/linux/
H A Dcontext_tracking.h53 enum ctx_state prev_ctx; in exception_enter() local
59 prev_ctx = __ct_state(); in exception_enter()
60 if (prev_ctx != CT_STATE_KERNEL) in exception_enter()
61 ct_user_exit(prev_ctx); in exception_enter()
63 return prev_ctx; in exception_enter()
66 static inline void exception_exit(enum ctx_state prev_ctx) in exception_exit() argument
70 if (prev_ctx != CT_STATE_KERNEL) in exception_exit()
71 ct_user_enter(prev_ctx); in exception_exit()
99 static inline void exception_exit(enum ctx_state prev_ctx) { } in exception_exit() argument
/linux/kernel/sched/
H A Dcore.c7113 enum ctx_state prev_ctx; in preempt_schedule_notrace() local
7139 prev_ctx = exception_enter(); in preempt_schedule_notrace()
7141 exception_exit(prev_ctx); in preempt_schedule_notrace()