blob: 5a361f85cfec483e0a595dcb2f4c2ee632ac56d9 [file] [log] [blame]
Nigel Cunningham7dfb7102006-12-06 20:34:23 -08001/* Freezer declarations */
2
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003#ifndef FREEZER_H_INCLUDED
4#define FREEZER_H_INCLUDED
5
Randy Dunlap5c543ef2006-12-10 02:18:58 -08006#include <linux/sched.h>
Rafael J. Wysockie42837b2007-10-18 03:04:45 -07007#include <linux/wait.h>
Randy Dunlap5c543ef2006-12-10 02:18:58 -08008
Matt Helsley8174f152008-10-18 20:27:19 -07009#ifdef CONFIG_FREEZER
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080010/*
11 * Check if a process has been frozen
12 */
13static inline int frozen(struct task_struct *p)
14{
15 return p->flags & PF_FROZEN;
16}
17
18/*
19 * Check if there is a request to freeze a process
20 */
21static inline int freezing(struct task_struct *p)
22{
Rafael J. Wysocki8a102ee2006-12-13 00:34:30 -080023 return test_tsk_thread_flag(p, TIF_FREEZE);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080024}
25
26/*
27 * Request that a process be frozen
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080028 */
Rafael J. Wysocki0c1eecf2007-07-19 01:47:33 -070029static inline void set_freeze_flag(struct task_struct *p)
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080030{
Rafael J. Wysocki8a102ee2006-12-13 00:34:30 -080031 set_tsk_thread_flag(p, TIF_FREEZE);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080032}
33
34/*
35 * Sometimes we may need to cancel the previous 'freeze' request
36 */
Rafael J. Wysocki0c1eecf2007-07-19 01:47:33 -070037static inline void clear_freeze_flag(struct task_struct *p)
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080038{
Rafael J. Wysocki8a102ee2006-12-13 00:34:30 -080039 clear_tsk_thread_flag(p, TIF_FREEZE);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080040}
41
Matt Helsley8174f152008-10-18 20:27:19 -070042static inline bool should_send_signal(struct task_struct *p)
43{
44 return !(p->flags & PF_FREEZER_NOSIG);
45}
46
Matt Helsleydc52ddc2008-10-18 20:27:21 -070047/* Takes and releases task alloc lock using task_lock() */
48extern int thaw_process(struct task_struct *p);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080049
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080050extern void refrigerator(void);
51extern int freeze_processes(void);
Rafael J. Wysockia9b6f562006-12-06 20:34:37 -080052extern void thaw_processes(void);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080053
54static inline int try_to_freeze(void)
55{
56 if (freezing(current)) {
57 refrigerator();
58 return 1;
59 } else
60 return 0;
61}
Nigel Cunninghamff395932006-12-06 20:34:28 -080062
Matt Helsley8174f152008-10-18 20:27:19 -070063extern bool freeze_task(struct task_struct *p, bool sig_only);
64extern void cancel_freezing(struct task_struct *p);
65
Matt Helsleydc52ddc2008-10-18 20:27:21 -070066#ifdef CONFIG_CGROUP_FREEZER
67extern int cgroup_frozen(struct task_struct *task);
68#else /* !CONFIG_CGROUP_FREEZER */
69static inline int cgroup_frozen(struct task_struct *task) { return 0; }
70#endif /* !CONFIG_CGROUP_FREEZER */
71
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070072/*
73 * The PF_FREEZER_SKIP flag should be set by a vfork parent right before it
74 * calls wait_for_completion(&vfork) and reset right after it returns from this
75 * function. Next, the parent should call try_to_freeze() to freeze itself
76 * appropriately in case the child has exited before the freezing of tasks is
77 * complete. However, we don't want kernel threads to be frozen in unexpected
78 * places, so we allow them to block freeze_processes() instead or to set
79 * PF_NOFREEZE if needed and PF_FREEZER_SKIP is only set for userland vfork
80 * parents. Fortunately, in the ____call_usermodehelper() case the parent won't
81 * really block freeze_processes(), since ____call_usermodehelper() (the child)
82 * does a little before exec/exit and it can't be frozen before waking up the
83 * parent.
84 */
85
86/*
87 * If the current task is a user space one, tell the freezer not to count it as
88 * freezable.
89 */
90static inline void freezer_do_not_count(void)
91{
92 if (current->mm)
93 current->flags |= PF_FREEZER_SKIP;
94}
95
96/*
97 * If the current task is a user space one, tell the freezer to count it as
98 * freezable again and try to freeze it.
99 */
100static inline void freezer_count(void)
101{
102 if (current->mm) {
103 current->flags &= ~PF_FREEZER_SKIP;
104 try_to_freeze();
105 }
106}
107
108/*
109 * Check if the task should be counted as freezeable by the freezer
110 */
111static inline int freezer_should_skip(struct task_struct *p)
112{
113 return !!(p->flags & PF_FREEZER_SKIP);
114}
Nigel Cunninghamff395932006-12-06 20:34:28 -0800115
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700116/*
117 * Tell the freezer that the current task should be frozen by it
118 */
119static inline void set_freezable(void)
120{
121 current->flags &= ~PF_NOFREEZE;
122}
123
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700124/*
Rafael J. Wysockiebb12db2008-06-11 22:04:29 +0200125 * Tell the freezer that the current task should be frozen by it and that it
126 * should send a fake signal to the task to freeze it.
127 */
128static inline void set_freezable_with_signal(void)
129{
130 current->flags &= ~(PF_NOFREEZE | PF_FREEZER_NOSIG);
131}
132
133/*
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700134 * Freezer-friendly wrappers around wait_event_interruptible() and
135 * wait_event_interruptible_timeout(), originally defined in <linux/wait.h>
136 */
137
138#define wait_event_freezable(wq, condition) \
139({ \
140 int __retval; \
141 do { \
142 __retval = wait_event_interruptible(wq, \
143 (condition) || freezing(current)); \
144 if (__retval && !freezing(current)) \
145 break; \
146 else if (!(condition)) \
147 __retval = -ERESTARTSYS; \
148 } while (try_to_freeze()); \
149 __retval; \
150})
151
152
153#define wait_event_freezable_timeout(wq, condition, timeout) \
154({ \
155 long __retval = timeout; \
156 do { \
157 __retval = wait_event_interruptible_timeout(wq, \
158 (condition) || freezing(current), \
159 __retval); \
160 } while (try_to_freeze()); \
161 __retval; \
162})
Matt Helsley8174f152008-10-18 20:27:19 -0700163#else /* !CONFIG_FREEZER */
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800164static inline int frozen(struct task_struct *p) { return 0; }
165static inline int freezing(struct task_struct *p) { return 0; }
Rafael J. Wysocki0c1eecf2007-07-19 01:47:33 -0700166static inline void set_freeze_flag(struct task_struct *p) {}
167static inline void clear_freeze_flag(struct task_struct *p) {}
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800168static inline int thaw_process(struct task_struct *p) { return 1; }
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800169
170static inline void refrigerator(void) {}
171static inline int freeze_processes(void) { BUG(); return 0; }
172static inline void thaw_processes(void) {}
173
174static inline int try_to_freeze(void) { return 0; }
175
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -0700176static inline void freezer_do_not_count(void) {}
177static inline void freezer_count(void) {}
178static inline int freezer_should_skip(struct task_struct *p) { return 0; }
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700179static inline void set_freezable(void) {}
Rafael J. Wysockiebb12db2008-06-11 22:04:29 +0200180static inline void set_freezable_with_signal(void) {}
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700181
182#define wait_event_freezable(wq, condition) \
183 wait_event_interruptible(wq, condition)
184
185#define wait_event_freezable_timeout(wq, condition, timeout) \
186 wait_event_interruptible_timeout(wq, condition, timeout)
187
Matt Helsley8174f152008-10-18 20:27:19 -0700188#endif /* !CONFIG_FREEZER */
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700189
190#endif /* FREEZER_H_INCLUDED */