1 /* Freezer declarations */
3 #ifndef FREEZER_H_INCLUDED
4 #define FREEZER_H_INCLUDED
6 #include <linux/sched.h>
7 #include <linux/wait.h>
11 * Check if a process has been frozen
13 static inline int frozen(struct task_struct
*p
)
15 return p
->flags
& PF_FROZEN
;
19 * Check if there is a request to freeze a process
21 static inline int freezing(struct task_struct
*p
)
23 return test_tsk_thread_flag(p
, TIF_FREEZE
);
27 * Request that a process be frozen
29 static inline void set_freeze_flag(struct task_struct
*p
)
31 set_tsk_thread_flag(p
, TIF_FREEZE
);
35 * Sometimes we may need to cancel the previous 'freeze' request
37 static inline void clear_freeze_flag(struct task_struct
*p
)
39 clear_tsk_thread_flag(p
, TIF_FREEZE
);
43 * Wake up a frozen process
45 * task_lock() is taken to prevent the race with refrigerator() which may
46 * occur if the freezing of tasks fails. Namely, without the lock, if the
47 * freezing of tasks failed, thaw_tasks() might have run before a task in
48 * refrigerator() could call frozen_process(), in which case the task would be
49 * frozen and no one would thaw it.
51 static inline int thaw_process(struct task_struct
*p
)
55 p
->flags
&= ~PF_FROZEN
;
65 extern void refrigerator(void);
66 extern int freeze_processes(void);
67 extern void thaw_processes(void);
69 static inline int try_to_freeze(void)
71 if (freezing(current
)) {
79 * The PF_FREEZER_SKIP flag should be set by a vfork parent right before it
80 * calls wait_for_completion(&vfork) and reset right after it returns from this
81 * function. Next, the parent should call try_to_freeze() to freeze itself
82 * appropriately in case the child has exited before the freezing of tasks is
83 * complete. However, we don't want kernel threads to be frozen in unexpected
84 * places, so we allow them to block freeze_processes() instead or to set
85 * PF_NOFREEZE if needed and PF_FREEZER_SKIP is only set for userland vfork
86 * parents. Fortunately, in the ____call_usermodehelper() case the parent won't
87 * really block freeze_processes(), since ____call_usermodehelper() (the child)
88 * does a little before exec/exit and it can't be frozen before waking up the
93 * If the current task is a user space one, tell the freezer not to count it as
96 static inline void freezer_do_not_count(void)
99 current
->flags
|= PF_FREEZER_SKIP
;
103 * If the current task is a user space one, tell the freezer to count it as
104 * freezable again and try to freeze it.
106 static inline void freezer_count(void)
109 current
->flags
&= ~PF_FREEZER_SKIP
;
115 * Check if the task should be counted as freezeable by the freezer
117 static inline int freezer_should_skip(struct task_struct
*p
)
119 return !!(p
->flags
& PF_FREEZER_SKIP
);
123 * Tell the freezer that the current task should be frozen by it
125 static inline void set_freezable(void)
127 current
->flags
&= ~PF_NOFREEZE
;
131 * Tell the freezer that the current task should be frozen by it and that it
132 * should send a fake signal to the task to freeze it.
134 static inline void set_freezable_with_signal(void)
136 current
->flags
&= ~(PF_NOFREEZE
| PF_FREEZER_NOSIG
);
140 * Freezer-friendly wrappers around wait_event_interruptible() and
141 * wait_event_interruptible_timeout(), originally defined in <linux/wait.h>
144 #define wait_event_freezable(wq, condition) \
148 __retval = wait_event_interruptible(wq, \
149 (condition) || freezing(current)); \
150 if (__retval && !freezing(current)) \
152 else if (!(condition)) \
153 __retval = -ERESTARTSYS; \
154 } while (try_to_freeze()); \
159 #define wait_event_freezable_timeout(wq, condition, timeout) \
161 long __retval = timeout; \
163 __retval = wait_event_interruptible_timeout(wq, \
164 (condition) || freezing(current), \
166 } while (try_to_freeze()); \
169 #else /* !CONFIG_PM_SLEEP */
170 static inline int frozen(struct task_struct
*p
) { return 0; }
171 static inline int freezing(struct task_struct
*p
) { return 0; }
172 static inline void set_freeze_flag(struct task_struct
*p
) {}
173 static inline void clear_freeze_flag(struct task_struct
*p
) {}
174 static inline int thaw_process(struct task_struct
*p
) { return 1; }
176 static inline void refrigerator(void) {}
177 static inline int freeze_processes(void) { BUG(); return 0; }
178 static inline void thaw_processes(void) {}
180 static inline int try_to_freeze(void) { return 0; }
182 static inline void freezer_do_not_count(void) {}
183 static inline void freezer_count(void) {}
184 static inline int freezer_should_skip(struct task_struct
*p
) { return 0; }
185 static inline void set_freezable(void) {}
186 static inline void set_freezable_with_signal(void) {}
188 #define wait_event_freezable(wq, condition) \
189 wait_event_interruptible(wq, condition)
191 #define wait_event_freezable_timeout(wq, condition, timeout) \
192 wait_event_interruptible_timeout(wq, condition, timeout)
194 #endif /* !CONFIG_PM_SLEEP */
196 #endif /* FREEZER_H_INCLUDED */