freezer: remove should_send_signal() and update frozen()
[linux-2.6-block.git] / include / linux / freezer.h
CommitLineData
7dfb7103
NC
1/* Freezer declarations */
2
83144186
RW
3#ifndef FREEZER_H_INCLUDED
4#define FREEZER_H_INCLUDED
5
5c543eff 6#include <linux/sched.h>
e42837bc 7#include <linux/wait.h>
a3201227 8#include <linux/atomic.h>
5c543eff 9
8174f150 10#ifdef CONFIG_FREEZER
a3201227
TH
11extern atomic_t system_freezing_cnt; /* nr of freezing conds in effect */
12extern bool pm_freezing; /* PM freezing in effect */
13extern bool pm_nosig_freezing; /* PM nosig freezing in effect */
14
7dfb7103
NC
15/*
16 * Check if a process has been frozen
17 */
948246f7 18static inline bool frozen(struct task_struct *p)
7dfb7103
NC
19{
20 return p->flags & PF_FROZEN;
21}
22
a3201227 23extern bool freezing_slow_path(struct task_struct *p);
7dfb7103
NC
24
25/*
a3201227 26 * Check if there is a request to freeze a process
7dfb7103 27 */
a3201227 28static inline bool freezing(struct task_struct *p)
7dfb7103 29{
a3201227
TH
30 if (likely(!atomic_read(&system_freezing_cnt)))
31 return false;
32 return freezing_slow_path(p);
7dfb7103
NC
33}
34
dc52ddc0 35/* Takes and releases task alloc lock using task_lock() */
a5be2d0d 36extern void __thaw_task(struct task_struct *t);
7dfb7103 37
8a32c441 38extern bool __refrigerator(bool check_kthr_stop);
7dfb7103 39extern int freeze_processes(void);
2aede851 40extern int freeze_kernel_threads(void);
a9b6f562 41extern void thaw_processes(void);
7dfb7103 42
a0acae0e 43static inline bool try_to_freeze(void)
7dfb7103 44{
a0acae0e
TH
45 might_sleep();
46 if (likely(!freezing(current)))
47 return false;
8a32c441 48 return __refrigerator(false);
7dfb7103 49}
ff39593a 50
8174f150 51extern bool freeze_task(struct task_struct *p, bool sig_only);
8174f150 52
dc52ddc0 53#ifdef CONFIG_CGROUP_FREEZER
22b4e111 54extern bool cgroup_freezing(struct task_struct *task);
dc52ddc0 55#else /* !CONFIG_CGROUP_FREEZER */
22b4e111 56static inline bool cgroup_freezing(struct task_struct *task)
5a7aadfe 57{
22b4e111 58 return false;
5a7aadfe 59}
dc52ddc0
MH
60#endif /* !CONFIG_CGROUP_FREEZER */
61
ba96a0c8
RW
62/*
63 * The PF_FREEZER_SKIP flag should be set by a vfork parent right before it
64 * calls wait_for_completion(&vfork) and reset right after it returns from this
65 * function. Next, the parent should call try_to_freeze() to freeze itself
66 * appropriately in case the child has exited before the freezing of tasks is
67 * complete. However, we don't want kernel threads to be frozen in unexpected
68 * places, so we allow them to block freeze_processes() instead or to set
69 * PF_NOFREEZE if needed and PF_FREEZER_SKIP is only set for userland vfork
70 * parents. Fortunately, in the ____call_usermodehelper() case the parent won't
71 * really block freeze_processes(), since ____call_usermodehelper() (the child)
72 * does a little before exec/exit and it can't be frozen before waking up the
73 * parent.
74 */
75
76/*
77 * If the current task is a user space one, tell the freezer not to count it as
78 * freezable.
79 */
80static inline void freezer_do_not_count(void)
81{
82 if (current->mm)
83 current->flags |= PF_FREEZER_SKIP;
84}
85
86/*
87 * If the current task is a user space one, tell the freezer to count it as
88 * freezable again and try to freeze it.
89 */
90static inline void freezer_count(void)
91{
92 if (current->mm) {
93 current->flags &= ~PF_FREEZER_SKIP;
94 try_to_freeze();
95 }
96}
97
98/*
58a69cb4 99 * Check if the task should be counted as freezable by the freezer
ba96a0c8
RW
100 */
101static inline int freezer_should_skip(struct task_struct *p)
102{
103 return !!(p->flags & PF_FREEZER_SKIP);
104}
ff39593a 105
83144186
RW
106/*
107 * Tell the freezer that the current task should be frozen by it
108 */
109static inline void set_freezable(void)
110{
111 current->flags &= ~PF_NOFREEZE;
112}
113
ebb12db5
RW
114/*
115 * Tell the freezer that the current task should be frozen by it and that it
116 * should send a fake signal to the task to freeze it.
117 */
118static inline void set_freezable_with_signal(void)
119{
120 current->flags &= ~(PF_NOFREEZE | PF_FREEZER_NOSIG);
121}
122
e42837bc 123/*
f06ac72e
JL
124 * Freezer-friendly wrappers around wait_event_interruptible(),
125 * wait_event_killable() and wait_event_interruptible_timeout(), originally
126 * defined in <linux/wait.h>
e42837bc
RW
127 */
128
f06ac72e
JL
129#define wait_event_freezekillable(wq, condition) \
130({ \
131 int __retval; \
6f35c4ab
ON
132 freezer_do_not_count(); \
133 __retval = wait_event_killable(wq, (condition)); \
134 freezer_count(); \
f06ac72e
JL
135 __retval; \
136})
137
e42837bc
RW
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})
8174f150 163#else /* !CONFIG_FREEZER */
948246f7 164static inline bool frozen(struct task_struct *p) { return false; }
a3201227 165static inline bool freezing(struct task_struct *p) { return false; }
7dfb7103 166
8a32c441 167static inline bool __refrigerator(bool check_kthr_stop) { return false; }
2aede851
RW
168static inline int freeze_processes(void) { return -ENOSYS; }
169static inline int freeze_kernel_threads(void) { return -ENOSYS; }
7dfb7103
NC
170static inline void thaw_processes(void) {}
171
a0acae0e 172static inline bool try_to_freeze(void) { return false; }
7dfb7103 173
ba96a0c8
RW
174static inline void freezer_do_not_count(void) {}
175static inline void freezer_count(void) {}
176static inline int freezer_should_skip(struct task_struct *p) { return 0; }
83144186 177static inline void set_freezable(void) {}
ebb12db5 178static inline void set_freezable_with_signal(void) {}
e42837bc
RW
179
180#define wait_event_freezable(wq, condition) \
181 wait_event_interruptible(wq, condition)
182
183#define wait_event_freezable_timeout(wq, condition, timeout) \
184 wait_event_interruptible_timeout(wq, condition, timeout)
185
e0c8ea1a
SF
186#define wait_event_freezekillable(wq, condition) \
187 wait_event_killable(wq, condition)
188
8174f150 189#endif /* !CONFIG_FREEZER */
83144186
RW
190
191#endif /* FREEZER_H_INCLUDED */