blob: 08934995c7ab5463e5f4064f4e2fff5ccfb4af94 [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
Rafael J. Wysocki296699d2007-07-29 23:27:18 +02009#ifdef CONFIG_PM_SLEEP
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
42/*
43 * Wake up a frozen process
Rafael J. Wysocki33e1c282007-05-23 13:57:24 -070044 *
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.
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080050 */
51static inline int thaw_process(struct task_struct *p)
52{
Rafael J. Wysocki33e1c282007-05-23 13:57:24 -070053 task_lock(p);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080054 if (frozen(p)) {
55 p->flags &= ~PF_FROZEN;
Rafael J. Wysocki33e1c282007-05-23 13:57:24 -070056 task_unlock(p);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080057 wake_up_process(p);
58 return 1;
59 }
Rafael J. Wysocki0c1eecf2007-07-19 01:47:33 -070060 clear_freeze_flag(p);
Rafael J. Wysocki33e1c282007-05-23 13:57:24 -070061 task_unlock(p);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080062 return 0;
63}
64
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080065extern void refrigerator(void);
66extern int freeze_processes(void);
Rafael J. Wysockia9b6f562006-12-06 20:34:37 -080067extern void thaw_processes(void);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080068
69static inline int try_to_freeze(void)
70{
71 if (freezing(current)) {
72 refrigerator();
73 return 1;
74 } else
75 return 0;
76}
Nigel Cunninghamff395932006-12-06 20:34:28 -080077
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070078/*
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
89 * parent.
90 */
91
92/*
93 * If the current task is a user space one, tell the freezer not to count it as
94 * freezable.
95 */
96static inline void freezer_do_not_count(void)
97{
98 if (current->mm)
99 current->flags |= PF_FREEZER_SKIP;
100}
101
102/*
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.
105 */
106static inline void freezer_count(void)
107{
108 if (current->mm) {
109 current->flags &= ~PF_FREEZER_SKIP;
110 try_to_freeze();
111 }
112}
113
114/*
115 * Check if the task should be counted as freezeable by the freezer
116 */
117static inline int freezer_should_skip(struct task_struct *p)
118{
119 return !!(p->flags & PF_FREEZER_SKIP);
120}
Nigel Cunninghamff395932006-12-06 20:34:28 -0800121
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700122/*
123 * Tell the freezer that the current task should be frozen by it
124 */
125static inline void set_freezable(void)
126{
127 current->flags &= ~PF_NOFREEZE;
128}
129
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700130/*
131 * Freezer-friendly wrappers around wait_event_interruptible() and
132 * wait_event_interruptible_timeout(), originally defined in <linux/wait.h>
133 */
134
135#define wait_event_freezable(wq, condition) \
136({ \
137 int __retval; \
138 do { \
139 __retval = wait_event_interruptible(wq, \
140 (condition) || freezing(current)); \
141 if (__retval && !freezing(current)) \
142 break; \
143 else if (!(condition)) \
144 __retval = -ERESTARTSYS; \
145 } while (try_to_freeze()); \
146 __retval; \
147})
148
149
150#define wait_event_freezable_timeout(wq, condition, timeout) \
151({ \
152 long __retval = timeout; \
153 do { \
154 __retval = wait_event_interruptible_timeout(wq, \
155 (condition) || freezing(current), \
156 __retval); \
157 } while (try_to_freeze()); \
158 __retval; \
159})
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200160#else /* !CONFIG_PM_SLEEP */
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800161static inline int frozen(struct task_struct *p) { return 0; }
162static inline int freezing(struct task_struct *p) { return 0; }
Rafael J. Wysocki0c1eecf2007-07-19 01:47:33 -0700163static inline void set_freeze_flag(struct task_struct *p) {}
164static inline void clear_freeze_flag(struct task_struct *p) {}
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800165static inline int thaw_process(struct task_struct *p) { return 1; }
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800166
167static inline void refrigerator(void) {}
168static inline int freeze_processes(void) { BUG(); return 0; }
169static inline void thaw_processes(void) {}
170
171static inline int try_to_freeze(void) { return 0; }
172
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -0700173static inline void freezer_do_not_count(void) {}
174static inline void freezer_count(void) {}
175static inline int freezer_should_skip(struct task_struct *p) { return 0; }
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700176static inline void set_freezable(void) {}
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700177
178#define wait_event_freezable(wq, condition) \
179 wait_event_interruptible(wq, condition)
180
181#define wait_event_freezable_timeout(wq, condition, timeout) \
182 wait_event_interruptible_timeout(wq, condition, timeout)
183
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200184#endif /* !CONFIG_PM_SLEEP */
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700185
186#endif /* FREEZER_H_INCLUDED */