blob: a49b52934c55419a6b282698bc56365733aa67df [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. Wysocki2aede852011-09-26 20:32:27 +020052extern int freeze_kernel_threads(void);
Rafael J. Wysockia9b6f562006-12-06 20:34:37 -080053extern void thaw_processes(void);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080054
55static inline int try_to_freeze(void)
56{
57 if (freezing(current)) {
58 refrigerator();
59 return 1;
60 } else
61 return 0;
62}
Nigel Cunninghamff395932006-12-06 20:34:28 -080063
Matt Helsley8174f152008-10-18 20:27:19 -070064extern bool freeze_task(struct task_struct *p, bool sig_only);
65extern void cancel_freezing(struct task_struct *p);
66
Matt Helsleydc52ddc2008-10-18 20:27:21 -070067#ifdef CONFIG_CGROUP_FREEZER
Matt Helsley5a7aadf2010-03-26 23:51:44 +010068extern int cgroup_freezing_or_frozen(struct task_struct *task);
Matt Helsleydc52ddc2008-10-18 20:27:21 -070069#else /* !CONFIG_CGROUP_FREEZER */
Matt Helsley5a7aadf2010-03-26 23:51:44 +010070static inline int cgroup_freezing_or_frozen(struct task_struct *task)
71{
72 return 0;
73}
Matt Helsleydc52ddc2008-10-18 20:27:21 -070074#endif /* !CONFIG_CGROUP_FREEZER */
75
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070076/*
77 * The PF_FREEZER_SKIP flag should be set by a vfork parent right before it
78 * calls wait_for_completion(&vfork) and reset right after it returns from this
79 * function. Next, the parent should call try_to_freeze() to freeze itself
80 * appropriately in case the child has exited before the freezing of tasks is
81 * complete. However, we don't want kernel threads to be frozen in unexpected
82 * places, so we allow them to block freeze_processes() instead or to set
83 * PF_NOFREEZE if needed and PF_FREEZER_SKIP is only set for userland vfork
84 * parents. Fortunately, in the ____call_usermodehelper() case the parent won't
85 * really block freeze_processes(), since ____call_usermodehelper() (the child)
86 * does a little before exec/exit and it can't be frozen before waking up the
87 * parent.
88 */
89
90/*
91 * If the current task is a user space one, tell the freezer not to count it as
92 * freezable.
93 */
94static inline void freezer_do_not_count(void)
95{
96 if (current->mm)
97 current->flags |= PF_FREEZER_SKIP;
98}
99
100/*
101 * If the current task is a user space one, tell the freezer to count it as
102 * freezable again and try to freeze it.
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/*
Tejun Heo58a69cb2011-02-16 09:25:31 +0100113 * Check if the task should be counted as freezable by the freezer
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -0700114 */
115static inline int freezer_should_skip(struct task_struct *p)
116{
117 return !!(p->flags & PF_FREEZER_SKIP);
118}
Nigel Cunninghamff395932006-12-06 20:34:28 -0800119
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700120/*
121 * Tell the freezer that the current task should be frozen by it
122 */
123static inline void set_freezable(void)
124{
125 current->flags &= ~PF_NOFREEZE;
126}
127
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700128/*
Rafael J. Wysockiebb12db2008-06-11 22:04:29 +0200129 * Tell the freezer that the current task should be frozen by it and that it
130 * should send a fake signal to the task to freeze it.
131 */
132static inline void set_freezable_with_signal(void)
133{
134 current->flags &= ~(PF_NOFREEZE | PF_FREEZER_NOSIG);
135}
136
137/*
Jeff Laytonf06ac722011-10-19 15:30:40 -0400138 * Freezer-friendly wrappers around wait_event_interruptible(),
139 * wait_event_killable() and wait_event_interruptible_timeout(), originally
140 * defined in <linux/wait.h>
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700141 */
142
Jeff Laytonf06ac722011-10-19 15:30:40 -0400143#define wait_event_freezekillable(wq, condition) \
144({ \
145 int __retval; \
146 do { \
Steve Frenchb957ae92011-10-19 21:27:11 -0500147 __retval = wait_event_killable(wq, \
Jeff Laytonf06ac722011-10-19 15:30:40 -0400148 (condition) || freezing(current)); \
149 if (__retval && !freezing(current)) \
150 break; \
151 else if (!(condition)) \
152 __retval = -ERESTARTSYS; \
153 } while (try_to_freeze()); \
154 __retval; \
155})
156
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700157#define wait_event_freezable(wq, condition) \
158({ \
159 int __retval; \
160 do { \
161 __retval = wait_event_interruptible(wq, \
162 (condition) || freezing(current)); \
163 if (__retval && !freezing(current)) \
164 break; \
165 else if (!(condition)) \
166 __retval = -ERESTARTSYS; \
167 } while (try_to_freeze()); \
168 __retval; \
169})
170
171
172#define wait_event_freezable_timeout(wq, condition, timeout) \
173({ \
174 long __retval = timeout; \
175 do { \
176 __retval = wait_event_interruptible_timeout(wq, \
177 (condition) || freezing(current), \
178 __retval); \
179 } while (try_to_freeze()); \
180 __retval; \
181})
Matt Helsley8174f152008-10-18 20:27:19 -0700182#else /* !CONFIG_FREEZER */
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800183static inline int frozen(struct task_struct *p) { return 0; }
184static inline int freezing(struct task_struct *p) { return 0; }
Rafael J. Wysocki0c1eecf2007-07-19 01:47:33 -0700185static inline void set_freeze_flag(struct task_struct *p) {}
186static inline void clear_freeze_flag(struct task_struct *p) {}
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800187static inline int thaw_process(struct task_struct *p) { return 1; }
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800188
189static inline void refrigerator(void) {}
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200190static inline int freeze_processes(void) { return -ENOSYS; }
191static inline int freeze_kernel_threads(void) { return -ENOSYS; }
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800192static inline void thaw_processes(void) {}
193
194static inline int try_to_freeze(void) { return 0; }
195
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -0700196static inline void freezer_do_not_count(void) {}
197static inline void freezer_count(void) {}
198static inline int freezer_should_skip(struct task_struct *p) { return 0; }
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700199static inline void set_freezable(void) {}
Rafael J. Wysockiebb12db2008-06-11 22:04:29 +0200200static inline void set_freezable_with_signal(void) {}
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700201
202#define wait_event_freezable(wq, condition) \
203 wait_event_interruptible(wq, condition)
204
205#define wait_event_freezable_timeout(wq, condition, timeout) \
206 wait_event_interruptible_timeout(wq, condition, timeout)
207
Steve Frenche0c8ea12011-10-25 10:02:53 -0500208#define wait_event_freezekillable(wq, condition) \
209 wait_event_killable(wq, condition)
210
Matt Helsley8174f152008-10-18 20:27:19 -0700211#endif /* !CONFIG_FREEZER */
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700212
213#endif /* FREEZER_H_INCLUDED */