freezer: fix PF_NOFREEZE vs freezeable race
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / freezer.h
blob1045ee9c0bb45ab96c3794fb8b9a1697ff2e465a
1 /* Freezer declarations */
3 #include <linux/sched.h>
5 #ifdef CONFIG_PM
6 /*
7 * Check if a process has been frozen
8 */
9 static inline int frozen(struct task_struct *p)
11 return p->flags & PF_FROZEN;
15 * Check if there is a request to freeze a process
17 static inline int freezing(struct task_struct *p)
19 return test_tsk_thread_flag(p, TIF_FREEZE);
23 * Request that a process be frozen
25 static inline void freeze(struct task_struct *p)
27 set_tsk_thread_flag(p, TIF_FREEZE);
31 * Sometimes we may need to cancel the previous 'freeze' request
33 static inline void do_not_freeze(struct task_struct *p)
35 clear_tsk_thread_flag(p, TIF_FREEZE);
39 * Wake up a frozen process
41 * task_lock() is taken to prevent the race with refrigerator() which may
42 * occur if the freezing of tasks fails. Namely, without the lock, if the
43 * freezing of tasks failed, thaw_tasks() might have run before a task in
44 * refrigerator() could call frozen_process(), in which case the task would be
45 * frozen and no one would thaw it.
47 static inline int thaw_process(struct task_struct *p)
49 task_lock(p);
50 if (frozen(p)) {
51 p->flags &= ~PF_FROZEN;
52 task_unlock(p);
53 wake_up_process(p);
54 return 1;
56 clear_tsk_thread_flag(p, TIF_FREEZE);
57 task_unlock(p);
58 return 0;
62 * freezing is complete, mark process as frozen
64 static inline void frozen_process(struct task_struct *p)
66 if (!unlikely(p->flags & PF_NOFREEZE)) {
67 p->flags |= PF_FROZEN;
68 wmb();
70 clear_tsk_thread_flag(p, TIF_FREEZE);
73 extern void refrigerator(void);
74 extern int freeze_processes(void);
75 extern void thaw_processes(void);
77 static inline int try_to_freeze(void)
79 if (freezing(current)) {
80 refrigerator();
81 return 1;
82 } else
83 return 0;
87 * The PF_FREEZER_SKIP flag should be set by a vfork parent right before it
88 * calls wait_for_completion(&vfork) and reset right after it returns from this
89 * function. Next, the parent should call try_to_freeze() to freeze itself
90 * appropriately in case the child has exited before the freezing of tasks is
91 * complete. However, we don't want kernel threads to be frozen in unexpected
92 * places, so we allow them to block freeze_processes() instead or to set
93 * PF_NOFREEZE if needed and PF_FREEZER_SKIP is only set for userland vfork
94 * parents. Fortunately, in the ____call_usermodehelper() case the parent won't
95 * really block freeze_processes(), since ____call_usermodehelper() (the child)
96 * does a little before exec/exit and it can't be frozen before waking up the
97 * parent.
101 * If the current task is a user space one, tell the freezer not to count it as
102 * freezable.
104 static inline void freezer_do_not_count(void)
106 if (current->mm)
107 current->flags |= PF_FREEZER_SKIP;
111 * If the current task is a user space one, tell the freezer to count it as
112 * freezable again and try to freeze it.
114 static inline void freezer_count(void)
116 if (current->mm) {
117 current->flags &= ~PF_FREEZER_SKIP;
118 try_to_freeze();
123 * Check if the task should be counted as freezeable by the freezer
125 static inline int freezer_should_skip(struct task_struct *p)
127 return !!(p->flags & PF_FREEZER_SKIP);
130 #else
131 static inline int frozen(struct task_struct *p) { return 0; }
132 static inline int freezing(struct task_struct *p) { return 0; }
133 static inline void freeze(struct task_struct *p) { BUG(); }
134 static inline int thaw_process(struct task_struct *p) { return 1; }
135 static inline void frozen_process(struct task_struct *p) { BUG(); }
137 static inline void refrigerator(void) {}
138 static inline int freeze_processes(void) { BUG(); return 0; }
139 static inline void thaw_processes(void) {}
141 static inline int try_to_freeze(void) { return 0; }
143 static inline void freezer_do_not_count(void) {}
144 static inline void freezer_count(void) {}
145 static inline int freezer_should_skip(struct task_struct *p) { return 0; }
146 #endif