blob: d02b78448b0f11cf5bc4f64511f05bf642ee5220 [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
Tejun Heo8a32c442011-11-21 12:32:23 -080050extern bool __refrigerator(bool check_kthr_stop);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080051extern 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
Tejun Heoa0acae02011-11-21 12:32:22 -080055static inline bool try_to_freeze(void)
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080056{
Tejun Heoa0acae02011-11-21 12:32:22 -080057 might_sleep();
58 if (likely(!freezing(current)))
59 return false;
Tejun Heo8a32c442011-11-21 12:32:23 -080060 return __refrigerator(false);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080061}
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
Matt Helsley5a7aadf2010-03-26 23:51:44 +010067extern int cgroup_freezing_or_frozen(struct task_struct *task);
Matt Helsleydc52ddc2008-10-18 20:27:21 -070068#else /* !CONFIG_CGROUP_FREEZER */
Matt Helsley5a7aadf2010-03-26 23:51:44 +010069static inline int cgroup_freezing_or_frozen(struct task_struct *task)
70{
71 return 0;
72}
Matt Helsleydc52ddc2008-10-18 20:27:21 -070073#endif /* !CONFIG_CGROUP_FREEZER */
74
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070075/*
76 * The PF_FREEZER_SKIP flag should be set by a vfork parent right before it
77 * calls wait_for_completion(&vfork) and reset right after it returns from this
78 * function. Next, the parent should call try_to_freeze() to freeze itself
79 * appropriately in case the child has exited before the freezing of tasks is
80 * complete. However, we don't want kernel threads to be frozen in unexpected
81 * places, so we allow them to block freeze_processes() instead or to set
82 * PF_NOFREEZE if needed and PF_FREEZER_SKIP is only set for userland vfork
83 * parents. Fortunately, in the ____call_usermodehelper() case the parent won't
84 * really block freeze_processes(), since ____call_usermodehelper() (the child)
85 * does a little before exec/exit and it can't be frozen before waking up the
86 * parent.
87 */
88
89/*
90 * If the current task is a user space one, tell the freezer not to count it as
91 * freezable.
92 */
93static inline void freezer_do_not_count(void)
94{
95 if (current->mm)
96 current->flags |= PF_FREEZER_SKIP;
97}
98
99/*
100 * If the current task is a user space one, tell the freezer to count it as
101 * freezable again and try to freeze it.
102 */
103static inline void freezer_count(void)
104{
105 if (current->mm) {
106 current->flags &= ~PF_FREEZER_SKIP;
107 try_to_freeze();
108 }
109}
110
111/*
Tejun Heo58a69cb2011-02-16 09:25:31 +0100112 * Check if the task should be counted as freezable by the freezer
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -0700113 */
114static inline int freezer_should_skip(struct task_struct *p)
115{
116 return !!(p->flags & PF_FREEZER_SKIP);
117}
Nigel Cunninghamff395932006-12-06 20:34:28 -0800118
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700119/*
120 * Tell the freezer that the current task should be frozen by it
121 */
122static inline void set_freezable(void)
123{
124 current->flags &= ~PF_NOFREEZE;
125}
126
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700127/*
Rafael J. Wysockiebb12db2008-06-11 22:04:29 +0200128 * Tell the freezer that the current task should be frozen by it and that it
129 * should send a fake signal to the task to freeze it.
130 */
131static inline void set_freezable_with_signal(void)
132{
133 current->flags &= ~(PF_NOFREEZE | PF_FREEZER_NOSIG);
134}
135
136/*
Jeff Laytonf06ac722011-10-19 15:30:40 -0400137 * Freezer-friendly wrappers around wait_event_interruptible(),
138 * wait_event_killable() and wait_event_interruptible_timeout(), originally
139 * defined in <linux/wait.h>
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700140 */
141
Jeff Laytonf06ac722011-10-19 15:30:40 -0400142#define wait_event_freezekillable(wq, condition) \
143({ \
144 int __retval; \
Oleg Nesterov6f35c4a2011-11-03 16:07:49 -0700145 freezer_do_not_count(); \
146 __retval = wait_event_killable(wq, (condition)); \
147 freezer_count(); \
Jeff Laytonf06ac722011-10-19 15:30:40 -0400148 __retval; \
149})
150
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700151#define wait_event_freezable(wq, condition) \
152({ \
153 int __retval; \
154 do { \
155 __retval = wait_event_interruptible(wq, \
156 (condition) || freezing(current)); \
157 if (__retval && !freezing(current)) \
158 break; \
159 else if (!(condition)) \
160 __retval = -ERESTARTSYS; \
161 } while (try_to_freeze()); \
162 __retval; \
163})
164
165
166#define wait_event_freezable_timeout(wq, condition, timeout) \
167({ \
168 long __retval = timeout; \
169 do { \
170 __retval = wait_event_interruptible_timeout(wq, \
171 (condition) || freezing(current), \
172 __retval); \
173 } while (try_to_freeze()); \
174 __retval; \
175})
Matt Helsley8174f152008-10-18 20:27:19 -0700176#else /* !CONFIG_FREEZER */
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800177static inline int frozen(struct task_struct *p) { return 0; }
178static inline int freezing(struct task_struct *p) { return 0; }
Rafael J. Wysocki0c1eecf2007-07-19 01:47:33 -0700179static inline void set_freeze_flag(struct task_struct *p) {}
180static inline void clear_freeze_flag(struct task_struct *p) {}
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800181static inline int thaw_process(struct task_struct *p) { return 1; }
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800182
Tejun Heo8a32c442011-11-21 12:32:23 -0800183static inline bool __refrigerator(bool check_kthr_stop) { return false; }
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200184static inline int freeze_processes(void) { return -ENOSYS; }
185static inline int freeze_kernel_threads(void) { return -ENOSYS; }
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800186static inline void thaw_processes(void) {}
187
Tejun Heoa0acae02011-11-21 12:32:22 -0800188static inline bool try_to_freeze(void) { return false; }
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800189
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -0700190static inline void freezer_do_not_count(void) {}
191static inline void freezer_count(void) {}
192static inline int freezer_should_skip(struct task_struct *p) { return 0; }
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700193static inline void set_freezable(void) {}
Rafael J. Wysockiebb12db2008-06-11 22:04:29 +0200194static inline void set_freezable_with_signal(void) {}
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700195
196#define wait_event_freezable(wq, condition) \
197 wait_event_interruptible(wq, condition)
198
199#define wait_event_freezable_timeout(wq, condition, timeout) \
200 wait_event_interruptible_timeout(wq, condition, timeout)
201
Steve Frenche0c8ea12011-10-25 10:02:53 -0500202#define wait_event_freezekillable(wq, condition) \
203 wait_event_killable(wq, condition)
204
Matt Helsley8174f152008-10-18 20:27:19 -0700205#endif /* !CONFIG_FREEZER */
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700206
207#endif /* FREEZER_H_INCLUDED */