blob: 8e29f2b7ce11fd421a4867220042008925cd8e61 [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>
Tejun Heoa3201222011-11-21 12:32:25 -08008#include <linux/atomic.h>
Randy Dunlap5c543ef2006-12-10 02:18:58 -08009
Matt Helsley8174f152008-10-18 20:27:19 -070010#ifdef CONFIG_FREEZER
Tejun Heoa3201222011-11-21 12:32:25 -080011extern 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
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080015/*
16 * Check if a process has been frozen
17 */
18static inline int frozen(struct task_struct *p)
19{
20 return p->flags & PF_FROZEN;
21}
22
Tejun Heoa3201222011-11-21 12:32:25 -080023extern bool freezing_slow_path(struct task_struct *p);
24
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080025/*
26 * Check if there is a request to freeze a process
27 */
Tejun Heoa3201222011-11-21 12:32:25 -080028static inline bool freezing(struct task_struct *p)
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080029{
Tejun Heoa3201222011-11-21 12:32:25 -080030 if (likely(!atomic_read(&system_freezing_cnt)))
31 return false;
32 return freezing_slow_path(p);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080033}
34
Matt Helsley8174f152008-10-18 20:27:19 -070035static inline bool should_send_signal(struct task_struct *p)
36{
37 return !(p->flags & PF_FREEZER_NOSIG);
38}
39
Matt Helsleydc52ddc2008-10-18 20:27:21 -070040/* Takes and releases task alloc lock using task_lock() */
Tejun Heoa5be2d02011-11-21 12:32:23 -080041extern void __thaw_task(struct task_struct *t);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080042
Tejun Heo8a32c442011-11-21 12:32:23 -080043extern bool __refrigerator(bool check_kthr_stop);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080044extern int freeze_processes(void);
Rafael J. Wysocki2aede852011-09-26 20:32:27 +020045extern int freeze_kernel_threads(void);
Rafael J. Wysockia9b6f562006-12-06 20:34:37 -080046extern void thaw_processes(void);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080047
Tejun Heoa0acae02011-11-21 12:32:22 -080048static inline bool try_to_freeze(void)
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080049{
Tejun Heoa0acae02011-11-21 12:32:22 -080050 might_sleep();
51 if (likely(!freezing(current)))
52 return false;
Tejun Heo8a32c442011-11-21 12:32:23 -080053 return __refrigerator(false);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080054}
Nigel Cunninghamff395932006-12-06 20:34:28 -080055
Matt Helsley8174f152008-10-18 20:27:19 -070056extern bool freeze_task(struct task_struct *p, bool sig_only);
Matt Helsley8174f152008-10-18 20:27:19 -070057
Matt Helsleydc52ddc2008-10-18 20:27:21 -070058#ifdef CONFIG_CGROUP_FREEZER
Tejun Heo22b4e112011-11-21 12:32:25 -080059extern bool cgroup_freezing(struct task_struct *task);
Matt Helsleydc52ddc2008-10-18 20:27:21 -070060#else /* !CONFIG_CGROUP_FREEZER */
Tejun Heo22b4e112011-11-21 12:32:25 -080061static inline bool cgroup_freezing(struct task_struct *task)
Matt Helsley5a7aadf2010-03-26 23:51:44 +010062{
Tejun Heo22b4e112011-11-21 12:32:25 -080063 return false;
Matt Helsley5a7aadf2010-03-26 23:51:44 +010064}
Matt Helsleydc52ddc2008-10-18 20:27:21 -070065#endif /* !CONFIG_CGROUP_FREEZER */
66
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070067/*
68 * The PF_FREEZER_SKIP flag should be set by a vfork parent right before it
69 * calls wait_for_completion(&vfork) and reset right after it returns from this
70 * function. Next, the parent should call try_to_freeze() to freeze itself
71 * appropriately in case the child has exited before the freezing of tasks is
72 * complete. However, we don't want kernel threads to be frozen in unexpected
73 * places, so we allow them to block freeze_processes() instead or to set
74 * PF_NOFREEZE if needed and PF_FREEZER_SKIP is only set for userland vfork
75 * parents. Fortunately, in the ____call_usermodehelper() case the parent won't
76 * really block freeze_processes(), since ____call_usermodehelper() (the child)
77 * does a little before exec/exit and it can't be frozen before waking up the
78 * parent.
79 */
80
81/*
82 * If the current task is a user space one, tell the freezer not to count it as
83 * freezable.
84 */
85static inline void freezer_do_not_count(void)
86{
87 if (current->mm)
88 current->flags |= PF_FREEZER_SKIP;
89}
90
91/*
92 * If the current task is a user space one, tell the freezer to count it as
93 * freezable again and try to freeze it.
94 */
95static inline void freezer_count(void)
96{
97 if (current->mm) {
98 current->flags &= ~PF_FREEZER_SKIP;
99 try_to_freeze();
100 }
101}
102
103/*
Tejun Heo58a69cb2011-02-16 09:25:31 +0100104 * Check if the task should be counted as freezable by the freezer
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -0700105 */
106static inline int freezer_should_skip(struct task_struct *p)
107{
108 return !!(p->flags & PF_FREEZER_SKIP);
109}
Nigel Cunninghamff395932006-12-06 20:34:28 -0800110
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700111/*
112 * Tell the freezer that the current task should be frozen by it
113 */
114static inline void set_freezable(void)
115{
116 current->flags &= ~PF_NOFREEZE;
117}
118
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700119/*
Rafael J. Wysockiebb12db2008-06-11 22:04:29 +0200120 * Tell the freezer that the current task should be frozen by it and that it
121 * should send a fake signal to the task to freeze it.
122 */
123static inline void set_freezable_with_signal(void)
124{
125 current->flags &= ~(PF_NOFREEZE | PF_FREEZER_NOSIG);
126}
127
128/*
Jeff Laytonf06ac722011-10-19 15:30:40 -0400129 * Freezer-friendly wrappers around wait_event_interruptible(),
130 * wait_event_killable() and wait_event_interruptible_timeout(), originally
131 * defined in <linux/wait.h>
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700132 */
133
Jeff Laytonf06ac722011-10-19 15:30:40 -0400134#define wait_event_freezekillable(wq, condition) \
135({ \
136 int __retval; \
Oleg Nesterov6f35c4a2011-11-03 16:07:49 -0700137 freezer_do_not_count(); \
138 __retval = wait_event_killable(wq, (condition)); \
139 freezer_count(); \
Jeff Laytonf06ac722011-10-19 15:30:40 -0400140 __retval; \
141})
142
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700143#define wait_event_freezable(wq, condition) \
144({ \
145 int __retval; \
146 do { \
147 __retval = wait_event_interruptible(wq, \
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
157
158#define wait_event_freezable_timeout(wq, condition, timeout) \
159({ \
160 long __retval = timeout; \
161 do { \
162 __retval = wait_event_interruptible_timeout(wq, \
163 (condition) || freezing(current), \
164 __retval); \
165 } while (try_to_freeze()); \
166 __retval; \
167})
Matt Helsley8174f152008-10-18 20:27:19 -0700168#else /* !CONFIG_FREEZER */
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800169static inline int frozen(struct task_struct *p) { return 0; }
Tejun Heoa3201222011-11-21 12:32:25 -0800170static inline bool freezing(struct task_struct *p) { return false; }
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800171
Tejun Heo8a32c442011-11-21 12:32:23 -0800172static inline bool __refrigerator(bool check_kthr_stop) { return false; }
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200173static inline int freeze_processes(void) { return -ENOSYS; }
174static inline int freeze_kernel_threads(void) { return -ENOSYS; }
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800175static inline void thaw_processes(void) {}
176
Tejun Heoa0acae02011-11-21 12:32:22 -0800177static inline bool try_to_freeze(void) { return false; }
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800178
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -0700179static inline void freezer_do_not_count(void) {}
180static inline void freezer_count(void) {}
181static inline int freezer_should_skip(struct task_struct *p) { return 0; }
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700182static inline void set_freezable(void) {}
Rafael J. Wysockiebb12db2008-06-11 22:04:29 +0200183static inline void set_freezable_with_signal(void) {}
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700184
185#define wait_event_freezable(wq, condition) \
186 wait_event_interruptible(wq, condition)
187
188#define wait_event_freezable_timeout(wq, condition, timeout) \
189 wait_event_interruptible_timeout(wq, condition, timeout)
190
Steve Frenche0c8ea12011-10-25 10:02:53 -0500191#define wait_event_freezekillable(wq, condition) \
192 wait_event_killable(wq, condition)
193
Matt Helsley8174f152008-10-18 20:27:19 -0700194#endif /* !CONFIG_FREEZER */
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700195
196#endif /* FREEZER_H_INCLUDED */