1
2
3#ifndef FREEZER_H_INCLUDED
4#define FREEZER_H_INCLUDED
5
6#include <linux/sched.h>
7#include <linux/wait.h>
8
9#ifdef CONFIG_FREEZER
10
11
12
13static inline int frozen(struct task_struct *p)
14{
15 return p->flags & PF_FROZEN;
16}
17
18
19
20
21static inline int freezing(struct task_struct *p)
22{
23 return test_tsk_thread_flag(p, TIF_FREEZE);
24}
25
26
27
28
29static inline void set_freeze_flag(struct task_struct *p)
30{
31 set_tsk_thread_flag(p, TIF_FREEZE);
32}
33
34
35
36
37static inline void clear_freeze_flag(struct task_struct *p)
38{
39 clear_tsk_thread_flag(p, TIF_FREEZE);
40}
41
42static inline bool should_send_signal(struct task_struct *p)
43{
44 return !(p->flags & PF_FREEZER_NOSIG);
45}
46
47
48extern int thaw_process(struct task_struct *p);
49
50extern void refrigerator(void);
51extern int freeze_processes(void);
52extern int freeze_kernel_threads(void);
53extern void thaw_processes(void);
54
55static inline int try_to_freeze(void)
56{
57 if (freezing(current)) {
58 refrigerator();
59 return 1;
60 } else
61 return 0;
62}
63
64extern bool freeze_task(struct task_struct *p, bool sig_only);
65extern void cancel_freezing(struct task_struct *p);
66
67#ifdef CONFIG_CGROUP_FREEZER
68extern int cgroup_freezing_or_frozen(struct task_struct *task);
69#else
70static inline int cgroup_freezing_or_frozen(struct task_struct *task)
71{
72 return 0;
73}
74#endif
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94static inline void freezer_do_not_count(void)
95{
96 if (current->mm)
97 current->flags |= PF_FREEZER_SKIP;
98}
99
100
101
102
103
104static inline void freezer_count(void)
105{
106 if (current->mm) {
107 current->flags &= ~PF_FREEZER_SKIP;
108 try_to_freeze();
109 }
110}
111
112
113
114
115static inline int freezer_should_skip(struct task_struct *p)
116{
117 return !!(p->flags & PF_FREEZER_SKIP);
118}
119
120
121
122
123static inline void set_freezable(void)
124{
125 current->flags &= ~PF_NOFREEZE;
126}
127
128
129
130
131
132static inline void set_freezable_with_signal(void)
133{
134 current->flags &= ~(PF_NOFREEZE | PF_FREEZER_NOSIG);
135}
136
137
138
139
140
141
142
143#define wait_event_freezekillable(wq, condition) \
144({ \
145 int __retval; \
146 freezer_do_not_count(); \
147 __retval = wait_event_killable(wq, (condition)); \
148 freezer_count(); \
149 __retval; \
150})
151
152#define wait_event_freezable(wq, condition) \
153({ \
154 int __retval; \
155 do { \
156 __retval = wait_event_interruptible(wq, \
157 (condition) || freezing(current)); \
158 if (__retval && !freezing(current)) \
159 break; \
160 else if (!(condition)) \
161 __retval = -ERESTARTSYS; \
162 } while (try_to_freeze()); \
163 __retval; \
164})
165
166
167#define wait_event_freezable_timeout(wq, condition, timeout) \
168({ \
169 long __retval = timeout; \
170 do { \
171 __retval = wait_event_interruptible_timeout(wq, \
172 (condition) || freezing(current), \
173 __retval); \
174 } while (try_to_freeze()); \
175 __retval; \
176})
177#else
178static inline int frozen(struct task_struct *p) { return 0; }
179static inline int freezing(struct task_struct *p) { return 0; }
180static inline void set_freeze_flag(struct task_struct *p) {}
181static inline void clear_freeze_flag(struct task_struct *p) {}
182static inline int thaw_process(struct task_struct *p) { return 1; }
183
184static inline void refrigerator(void) {}
185static inline int freeze_processes(void) { return -ENOSYS; }
186static inline int freeze_kernel_threads(void) { return -ENOSYS; }
187static inline void thaw_processes(void) {}
188
189static inline int try_to_freeze(void) { return 0; }
190
191static inline void freezer_do_not_count(void) {}
192static inline void freezer_count(void) {}
193static inline int freezer_should_skip(struct task_struct *p) { return 0; }
194static inline void set_freezable(void) {}
195static inline void set_freezable_with_signal(void) {}
196
197#define wait_event_freezable(wq, condition) \
198 wait_event_interruptible(wq, condition)
199
200#define wait_event_freezable_timeout(wq, condition, timeout) \
201 wait_event_interruptible_timeout(wq, condition, timeout)
202
203#define wait_event_freezekillable(wq, condition) \
204 wait_event_killable(wq, condition)
205
206#endif
207
208#endif
209