prev_ctx           50 include/linux/context_tracking.h 	enum ctx_state prev_ctx;
prev_ctx           55 include/linux/context_tracking.h 	prev_ctx = this_cpu_read(context_tracking.state);
prev_ctx           56 include/linux/context_tracking.h 	if (prev_ctx != CONTEXT_KERNEL)
prev_ctx           57 include/linux/context_tracking.h 		context_tracking_exit(prev_ctx);
prev_ctx           59 include/linux/context_tracking.h 	return prev_ctx;
prev_ctx           62 include/linux/context_tracking.h static inline void exception_exit(enum ctx_state prev_ctx)
prev_ctx           65 include/linux/context_tracking.h 		if (prev_ctx != CONTEXT_KERNEL)
prev_ctx           66 include/linux/context_tracking.h 			context_tracking_enter(prev_ctx);
prev_ctx           89 include/linux/context_tracking.h static inline void exception_exit(enum ctx_state prev_ctx) { }
prev_ctx         4271 kernel/sched/core.c 	enum ctx_state prev_ctx;
prev_ctx         4297 kernel/sched/core.c 		prev_ctx = exception_enter();
prev_ctx         4299 kernel/sched/core.c 		exception_exit(prev_ctx);