nlm: Ensure callback code also checks that the files match
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / context_tracking.h
CommitLineData
91d1aa43
FW
1#ifndef _LINUX_CONTEXT_TRACKING_H
2#define _LINUX_CONTEXT_TRACKING_H
3
91d1aa43 4#include <linux/sched.h>
95a79fd4 5#include <linux/percpu.h>
521921ba 6#include <linux/vtime.h>
56dd9470 7#include <asm/ptrace.h>
95a79fd4
FW
8
9struct context_tracking {
10 /*
11 * When active is false, probes are unset in order
12 * to minimize overhead: TIF flags are cleared
13 * and calls to user_enter/exit are ignored. This
14 * may be further optimized using static keys.
15 */
16 bool active;
6c1e0256 17 enum ctx_state {
95a79fd4
FW
18 IN_KERNEL = 0,
19 IN_USER,
20 } state;
21};
22
521921ba
FW
23static inline void __guest_enter(void)
24{
25 /*
26 * This is running in ioctl context so we can avoid
27 * the call to vtime_account() with its unnecessary idle check.
28 */
29 vtime_account_system(current);
30 current->flags |= PF_VCPU;
31}
32
33static inline void __guest_exit(void)
34{
35 /*
36 * This is running in ioctl context so we can avoid
37 * the call to vtime_account() with its unnecessary idle check.
38 */
39 vtime_account_system(current);
40 current->flags &= ~PF_VCPU;
41}
42
6c1e0256 43#ifdef CONFIG_CONTEXT_TRACKING
95a79fd4
FW
44DECLARE_PER_CPU(struct context_tracking, context_tracking);
45
46static inline bool context_tracking_in_user(void)
47{
48 return __this_cpu_read(context_tracking.state) == IN_USER;
49}
50
51static inline bool context_tracking_active(void)
52{
53 return __this_cpu_read(context_tracking.active);
54}
91d1aa43
FW
55
56extern void user_enter(void);
57extern void user_exit(void);
56dd9470 58
521921ba
FW
59extern void guest_enter(void);
60extern void guest_exit(void);
61
6c1e0256 62static inline enum ctx_state exception_enter(void)
56dd9470 63{
6c1e0256
FW
64 enum ctx_state prev_ctx;
65
66 prev_ctx = this_cpu_read(context_tracking.state);
56dd9470 67 user_exit();
6c1e0256
FW
68
69 return prev_ctx;
56dd9470
FW
70}
71
6c1e0256 72static inline void exception_exit(enum ctx_state prev_ctx)
56dd9470 73{
6c1e0256 74 if (prev_ctx == IN_USER)
56dd9470
FW
75 user_enter();
76}
77
91d1aa43
FW
78extern void context_tracking_task_switch(struct task_struct *prev,
79 struct task_struct *next);
80#else
95a79fd4 81static inline bool context_tracking_in_user(void) { return false; }
91d1aa43
FW
82static inline void user_enter(void) { }
83static inline void user_exit(void) { }
521921ba
FW
84
85static inline void guest_enter(void)
86{
87 __guest_enter();
88}
89
90static inline void guest_exit(void)
91{
92 __guest_exit();
93}
94
6c1e0256
FW
95static inline enum ctx_state exception_enter(void) { return 0; }
96static inline void exception_exit(enum ctx_state prev_ctx) { }
91d1aa43
FW
97static inline void context_tracking_task_switch(struct task_struct *prev,
98 struct task_struct *next) { }
99#endif /* !CONFIG_CONTEXT_TRACKING */
100
101#endif