blob: 80e7faee9281704239de3fbb4acb268041a20ba3 [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 */
Tejun Heo948246f2011-11-21 12:32:25 -080018static inline bool frozen(struct task_struct *p)
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080019{
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 Helsleydc52ddc2008-10-18 20:27:21 -070035/* Takes and releases task alloc lock using task_lock() */
Tejun Heoa5be2d02011-11-21 12:32:23 -080036extern void __thaw_task(struct task_struct *t);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080037
Tejun Heo8a32c442011-11-21 12:32:23 -080038extern bool __refrigerator(bool check_kthr_stop);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080039extern int freeze_processes(void);
Rafael J. Wysocki2aede852011-09-26 20:32:27 +020040extern int freeze_kernel_threads(void);
Rafael J. Wysockia9b6f562006-12-06 20:34:37 -080041extern void thaw_processes(void);
Rafael J. Wysocki181e9bd2012-01-29 20:35:52 +010042extern void thaw_kernel_threads(void);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080043
Tejun Heoa0acae02011-11-21 12:32:22 -080044static inline bool try_to_freeze(void)
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080045{
Steve Muckledc0eed42012-05-23 08:49:36 -070046/* This causes problems for ARM targets and is a known
47 * problem upstream.
48 * might_sleep();
49 */
Tejun Heoa0acae02011-11-21 12:32:22 -080050 if (likely(!freezing(current)))
51 return false;
Tejun Heo8a32c442011-11-21 12:32:23 -080052 return __refrigerator(false);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080053}
Nigel Cunninghamff395932006-12-06 20:34:28 -080054
Tejun Heo839e3402011-11-21 12:32:26 -080055extern bool freeze_task(struct task_struct *p);
Tejun Heo34b087e2011-11-23 09:28:17 -080056extern bool set_freezable(void);
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
Srivatsa S. Bhat467de1f2011-12-06 23:17:51 +010074 * PF_NOFREEZE if needed. Fortunately, in the ____call_usermodehelper() case the
75 * parent won't really block freeze_processes(), since ____call_usermodehelper()
76 * (the child) does a little before exec/exit and it can't be frozen before
77 * waking up the parent.
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070078 */
79
Srivatsa S. Bhat467de1f2011-12-06 23:17:51 +010080
81/* Tell the freezer not to count the current task as freezable. */
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070082static inline void freezer_do_not_count(void)
83{
Srivatsa S. Bhat467de1f2011-12-06 23:17:51 +010084 current->flags |= PF_FREEZER_SKIP;
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070085}
86
87/*
Srivatsa S. Bhat467de1f2011-12-06 23:17:51 +010088 * Tell the freezer to count the current task as freezable again and try to
89 * freeze it.
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070090 */
91static inline void freezer_count(void)
92{
Srivatsa S. Bhat467de1f2011-12-06 23:17:51 +010093 current->flags &= ~PF_FREEZER_SKIP;
94 try_to_freeze();
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070095}
96
97/*
Tejun Heo58a69cb2011-02-16 09:25:31 +010098 * Check if the task should be counted as freezable by the freezer
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070099 */
100static inline int freezer_should_skip(struct task_struct *p)
101{
102 return !!(p->flags & PF_FREEZER_SKIP);
103}
Nigel Cunninghamff395932006-12-06 20:34:28 -0800104
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700105/*
Jeff Laytond3103102011-12-01 22:44:39 +0100106 * These macros are intended to be used whenever you want allow a task that's
107 * sleeping in TASK_UNINTERRUPTIBLE or TASK_KILLABLE state to be frozen. Note
108 * that neither return any clear indication of whether a freeze event happened
109 * while in this function.
110 */
111
112/* Like schedule(), but should not block the freezer. */
113#define freezable_schedule() \
114({ \
115 freezer_do_not_count(); \
116 schedule(); \
117 freezer_count(); \
118})
119
120/* Like schedule_timeout_killable(), but should not block the freezer. */
121#define freezable_schedule_timeout_killable(timeout) \
122({ \
Jeff Laytonb3b73ec2011-12-26 00:29:55 +0100123 long __retval; \
Jeff Laytond3103102011-12-01 22:44:39 +0100124 freezer_do_not_count(); \
Jeff Laytonb3b73ec2011-12-26 00:29:55 +0100125 __retval = schedule_timeout_killable(timeout); \
Jeff Laytond3103102011-12-01 22:44:39 +0100126 freezer_count(); \
Jeff Laytonb3b73ec2011-12-26 00:29:55 +0100127 __retval; \
Jeff Laytond3103102011-12-01 22:44:39 +0100128})
129
130/*
Jeff Laytonf06ac722011-10-19 15:30:40 -0400131 * Freezer-friendly wrappers around wait_event_interruptible(),
132 * wait_event_killable() and wait_event_interruptible_timeout(), originally
133 * defined in <linux/wait.h>
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700134 */
135
Jeff Laytonf06ac722011-10-19 15:30:40 -0400136#define wait_event_freezekillable(wq, condition) \
137({ \
138 int __retval; \
Oleg Nesterov6f35c4a2011-11-03 16:07:49 -0700139 freezer_do_not_count(); \
140 __retval = wait_event_killable(wq, (condition)); \
141 freezer_count(); \
Jeff Laytonf06ac722011-10-19 15:30:40 -0400142 __retval; \
143})
144
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700145#define wait_event_freezable(wq, condition) \
146({ \
147 int __retval; \
Oleg Nesterov24b7ead2011-11-23 09:28:17 -0800148 for (;;) { \
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700149 __retval = wait_event_interruptible(wq, \
150 (condition) || freezing(current)); \
Oleg Nesterov24b7ead2011-11-23 09:28:17 -0800151 if (__retval || (condition)) \
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700152 break; \
Oleg Nesterov24b7ead2011-11-23 09:28:17 -0800153 try_to_freeze(); \
154 } \
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700155 __retval; \
156})
157
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700158#define wait_event_freezable_timeout(wq, condition, timeout) \
159({ \
160 long __retval = timeout; \
Oleg Nesterov24b7ead2011-11-23 09:28:17 -0800161 for (;;) { \
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700162 __retval = wait_event_interruptible_timeout(wq, \
163 (condition) || freezing(current), \
164 __retval); \
Oleg Nesterov24b7ead2011-11-23 09:28:17 -0800165 if (__retval <= 0 || (condition)) \
166 break; \
167 try_to_freeze(); \
168 } \
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700169 __retval; \
170})
Oleg Nesterov24b7ead2011-11-23 09:28:17 -0800171
Matt Helsley8174f152008-10-18 20:27:19 -0700172#else /* !CONFIG_FREEZER */
Tejun Heo948246f2011-11-21 12:32:25 -0800173static inline bool frozen(struct task_struct *p) { return false; }
Tejun Heoa3201222011-11-21 12:32:25 -0800174static inline bool freezing(struct task_struct *p) { return false; }
Stephen Rothwell62c9ea62011-11-25 00:44:55 +0100175static inline void __thaw_task(struct task_struct *t) {}
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800176
Tejun Heo8a32c442011-11-21 12:32:23 -0800177static inline bool __refrigerator(bool check_kthr_stop) { return false; }
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200178static inline int freeze_processes(void) { return -ENOSYS; }
179static inline int freeze_kernel_threads(void) { return -ENOSYS; }
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800180static inline void thaw_processes(void) {}
Rafael J. Wysocki181e9bd2012-01-29 20:35:52 +0100181static inline void thaw_kernel_threads(void) {}
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800182
Tejun Heoa0acae02011-11-21 12:32:22 -0800183static inline bool try_to_freeze(void) { return false; }
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800184
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -0700185static inline void freezer_do_not_count(void) {}
186static inline void freezer_count(void) {}
187static inline int freezer_should_skip(struct task_struct *p) { return 0; }
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700188static inline void set_freezable(void) {}
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700189
Jeff Laytond3103102011-12-01 22:44:39 +0100190#define freezable_schedule() schedule()
191
192#define freezable_schedule_timeout_killable(timeout) \
193 schedule_timeout_killable(timeout)
194
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700195#define wait_event_freezable(wq, condition) \
196 wait_event_interruptible(wq, condition)
197
198#define wait_event_freezable_timeout(wq, condition, timeout) \
199 wait_event_interruptible_timeout(wq, condition, timeout)
200
Steve Frenche0c8ea12011-10-25 10:02:53 -0500201#define wait_event_freezekillable(wq, condition) \
202 wait_event_killable(wq, condition)
203
Matt Helsley8174f152008-10-18 20:27:19 -0700204#endif /* !CONFIG_FREEZER */
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700205
206#endif /* FREEZER_H_INCLUDED */