USB: Update last_busy time after autosuspend fails
[deliverable/linux.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>
5c543eff 8
8174f150 9#ifdef CONFIG_FREEZER
7dfb7103
NC
10/*
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{
8a102eed 23 return test_tsk_thread_flag(p, TIF_FREEZE);
7dfb7103
NC
24}
25
26/*
27 * Request that a process be frozen
7dfb7103 28 */
0c1eecfb 29static inline void set_freeze_flag(struct task_struct *p)
7dfb7103 30{
8a102eed 31 set_tsk_thread_flag(p, TIF_FREEZE);
7dfb7103
NC
32}
33
34/*
35 * Sometimes we may need to cancel the previous 'freeze' request
36 */
0c1eecfb 37static inline void clear_freeze_flag(struct task_struct *p)
7dfb7103 38{
8a102eed 39 clear_tsk_thread_flag(p, TIF_FREEZE);
7dfb7103
NC
40}
41
8174f150
MH
42static inline bool should_send_signal(struct task_struct *p)
43{
44 return !(p->flags & PF_FREEZER_NOSIG);
45}
46
dc52ddc0
MH
47/* Takes and releases task alloc lock using task_lock() */
48extern int thaw_process(struct task_struct *p);
7dfb7103 49
7dfb7103
NC
50extern void refrigerator(void);
51extern int freeze_processes(void);
2aede851 52extern int freeze_kernel_threads(void);
a9b6f562 53extern void thaw_processes(void);
7dfb7103
NC
54
55static inline int try_to_freeze(void)
56{
57 if (freezing(current)) {
58 refrigerator();
59 return 1;
60 } else
61 return 0;
62}
ff39593a 63
8174f150
MH
64extern bool freeze_task(struct task_struct *p, bool sig_only);
65extern void cancel_freezing(struct task_struct *p);
66
dc52ddc0 67#ifdef CONFIG_CGROUP_FREEZER
5a7aadfe 68extern int cgroup_freezing_or_frozen(struct task_struct *task);
dc52ddc0 69#else /* !CONFIG_CGROUP_FREEZER */
5a7aadfe
MH
70static inline int cgroup_freezing_or_frozen(struct task_struct *task)
71{
72 return 0;
73}
dc52ddc0
MH
74#endif /* !CONFIG_CGROUP_FREEZER */
75
ba96a0c8
RW
76/*
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/*
58a69cb4 113 * Check if the task should be counted as freezable by the freezer
ba96a0c8
RW
114 */
115static inline int freezer_should_skip(struct task_struct *p)
116{
117 return !!(p->flags & PF_FREEZER_SKIP);
118}
ff39593a 119
83144186
RW
120/*
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
ebb12db5
RW
128/*
129 * 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
e42837bc 137/*
f06ac72e
JL
138 * Freezer-friendly wrappers around wait_event_interruptible(),
139 * wait_event_killable() and wait_event_interruptible_timeout(), originally
140 * defined in <linux/wait.h>
e42837bc
RW
141 */
142
f06ac72e
JL
143#define wait_event_freezekillable(wq, condition) \
144({ \
145 int __retval; \
146 do { \
b957ae9c 147 __retval = wait_event_killable(wq, \
f06ac72e
JL
148 (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
e42837bc
RW
157#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})
8174f150 182#else /* !CONFIG_FREEZER */
7dfb7103
NC
183static inline int frozen(struct task_struct *p) { return 0; }
184static inline int freezing(struct task_struct *p) { return 0; }
0c1eecfb
RW
185static inline void set_freeze_flag(struct task_struct *p) {}
186static inline void clear_freeze_flag(struct task_struct *p) {}
7dfb7103 187static inline int thaw_process(struct task_struct *p) { return 1; }
7dfb7103
NC
188
189static inline void refrigerator(void) {}
2aede851
RW
190static inline int freeze_processes(void) { return -ENOSYS; }
191static inline int freeze_kernel_threads(void) { return -ENOSYS; }
7dfb7103
NC
192static inline void thaw_processes(void) {}
193
194static inline int try_to_freeze(void) { return 0; }
195
ba96a0c8
RW
196static 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; }
83144186 199static inline void set_freezable(void) {}
ebb12db5 200static inline void set_freezable_with_signal(void) {}
e42837bc
RW
201
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
e0c8ea1a
SF
208#define wait_event_freezekillable(wq, condition) \
209 wait_event_killable(wq, condition)
210
8174f150 211#endif /* !CONFIG_FREEZER */
83144186
RW
212
213#endif /* FREEZER_H_INCLUDED */
This page took 0.569378 seconds and 5 git commands to generate.