Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 1 | /* Freezer declarations */ |
| 2 | |
Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 3 | #ifndef FREEZER_H_INCLUDED |
| 4 | #define FREEZER_H_INCLUDED |
| 5 | |
Mandeep Singh Baines | 0f9548c | 2013-05-06 23:50:09 +0000 | [diff] [blame] | 6 | #include <linux/debug_locks.h> |
Randy Dunlap | 5c543ef | 2006-12-10 02:18:58 -0800 | [diff] [blame] | 7 | #include <linux/sched.h> |
Rafael J. Wysocki | e42837b | 2007-10-18 03:04:45 -0700 | [diff] [blame] | 8 | #include <linux/wait.h> |
Tejun Heo | a320122 | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 9 | #include <linux/atomic.h> |
Randy Dunlap | 5c543ef | 2006-12-10 02:18:58 -0800 | [diff] [blame] | 10 | |
Matt Helsley | 8174f15 | 2008-10-18 20:27:19 -0700 | [diff] [blame] | 11 | #ifdef CONFIG_FREEZER |
Tejun Heo | a320122 | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 12 | extern atomic_t system_freezing_cnt; /* nr of freezing conds in effect */ |
| 13 | extern bool pm_freezing; /* PM freezing in effect */ |
| 14 | extern bool pm_nosig_freezing; /* PM nosig freezing in effect */ |
| 15 | |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 16 | /* |
Li Fei | 957d128 | 2013-02-01 08:56:03 +0000 | [diff] [blame] | 17 | * Timeout for stopping processes |
| 18 | */ |
| 19 | extern unsigned int freeze_timeout_msecs; |
| 20 | |
| 21 | /* |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 22 | * Check if a process has been frozen |
| 23 | */ |
Tejun Heo | 948246f | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 24 | static inline bool frozen(struct task_struct *p) |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 25 | { |
| 26 | return p->flags & PF_FROZEN; |
| 27 | } |
| 28 | |
Tejun Heo | a320122 | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 29 | extern bool freezing_slow_path(struct task_struct *p); |
| 30 | |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 31 | /* |
| 32 | * Check if there is a request to freeze a process |
| 33 | */ |
Tejun Heo | a320122 | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 34 | static inline bool freezing(struct task_struct *p) |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 35 | { |
Tejun Heo | a320122 | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 36 | if (likely(!atomic_read(&system_freezing_cnt))) |
| 37 | return false; |
| 38 | return freezing_slow_path(p); |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 39 | } |
| 40 | |
Matt Helsley | dc52ddc | 2008-10-18 20:27:21 -0700 | [diff] [blame] | 41 | /* Takes and releases task alloc lock using task_lock() */ |
Tejun Heo | a5be2d0 | 2011-11-21 12:32:23 -0800 | [diff] [blame] | 42 | extern void __thaw_task(struct task_struct *t); |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 43 | |
Tejun Heo | 8a32c44 | 2011-11-21 12:32:23 -0800 | [diff] [blame] | 44 | extern bool __refrigerator(bool check_kthr_stop); |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 45 | extern int freeze_processes(void); |
Rafael J. Wysocki | 2aede85 | 2011-09-26 20:32:27 +0200 | [diff] [blame] | 46 | extern int freeze_kernel_threads(void); |
Rafael J. Wysocki | a9b6f56 | 2006-12-06 20:34:37 -0800 | [diff] [blame] | 47 | extern void thaw_processes(void); |
Rafael J. Wysocki | 181e9bd | 2012-01-29 20:35:52 +0100 | [diff] [blame] | 48 | extern void thaw_kernel_threads(void); |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 49 | |
Colin Cross | 416ad3c | 2013-05-06 23:50:06 +0000 | [diff] [blame] | 50 | /* |
| 51 | * DO NOT ADD ANY NEW CALLERS OF THIS FUNCTION |
| 52 | * If try_to_freeze causes a lockdep warning it means the caller may deadlock |
| 53 | */ |
| 54 | static inline bool try_to_freeze_unsafe(void) |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 55 | { |
Tejun Heo | a0acae0 | 2011-11-21 12:32:22 -0800 | [diff] [blame] | 56 | might_sleep(); |
| 57 | if (likely(!freezing(current))) |
| 58 | return false; |
Tejun Heo | 8a32c44 | 2011-11-21 12:32:23 -0800 | [diff] [blame] | 59 | return __refrigerator(false); |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 60 | } |
Nigel Cunningham | ff39593 | 2006-12-06 20:34:28 -0800 | [diff] [blame] | 61 | |
Colin Cross | 416ad3c | 2013-05-06 23:50:06 +0000 | [diff] [blame] | 62 | static inline bool try_to_freeze(void) |
| 63 | { |
Mandeep Singh Baines | 0f9548c | 2013-05-06 23:50:09 +0000 | [diff] [blame] | 64 | if (!(current->flags & PF_NOFREEZE)) |
| 65 | debug_check_no_locks_held(); |
Colin Cross | 416ad3c | 2013-05-06 23:50:06 +0000 | [diff] [blame] | 66 | return try_to_freeze_unsafe(); |
| 67 | } |
| 68 | |
Tejun Heo | 839e340 | 2011-11-21 12:32:26 -0800 | [diff] [blame] | 69 | extern bool freeze_task(struct task_struct *p); |
Tejun Heo | 34b087e | 2011-11-23 09:28:17 -0800 | [diff] [blame] | 70 | extern bool set_freezable(void); |
Matt Helsley | 8174f15 | 2008-10-18 20:27:19 -0700 | [diff] [blame] | 71 | |
Matt Helsley | dc52ddc | 2008-10-18 20:27:21 -0700 | [diff] [blame] | 72 | #ifdef CONFIG_CGROUP_FREEZER |
Tejun Heo | 22b4e11 | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 73 | extern bool cgroup_freezing(struct task_struct *task); |
Matt Helsley | dc52ddc | 2008-10-18 20:27:21 -0700 | [diff] [blame] | 74 | #else /* !CONFIG_CGROUP_FREEZER */ |
Tejun Heo | 22b4e11 | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 75 | static inline bool cgroup_freezing(struct task_struct *task) |
Matt Helsley | 5a7aadf | 2010-03-26 23:51:44 +0100 | [diff] [blame] | 76 | { |
Tejun Heo | 22b4e11 | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 77 | return false; |
Matt Helsley | 5a7aadf | 2010-03-26 23:51:44 +0100 | [diff] [blame] | 78 | } |
Matt Helsley | dc52ddc | 2008-10-18 20:27:21 -0700 | [diff] [blame] | 79 | #endif /* !CONFIG_CGROUP_FREEZER */ |
| 80 | |
Rafael J. Wysocki | ba96a0c | 2007-05-23 13:57:25 -0700 | [diff] [blame] | 81 | /* |
| 82 | * The PF_FREEZER_SKIP flag should be set by a vfork parent right before it |
| 83 | * calls wait_for_completion(&vfork) and reset right after it returns from this |
| 84 | * function. Next, the parent should call try_to_freeze() to freeze itself |
| 85 | * appropriately in case the child has exited before the freezing of tasks is |
| 86 | * complete. However, we don't want kernel threads to be frozen in unexpected |
| 87 | * places, so we allow them to block freeze_processes() instead or to set |
Srivatsa S. Bhat | 467de1f | 2011-12-06 23:17:51 +0100 | [diff] [blame] | 88 | * PF_NOFREEZE if needed. Fortunately, in the ____call_usermodehelper() case the |
| 89 | * parent won't really block freeze_processes(), since ____call_usermodehelper() |
| 90 | * (the child) does a little before exec/exit and it can't be frozen before |
| 91 | * waking up the parent. |
Rafael J. Wysocki | ba96a0c | 2007-05-23 13:57:25 -0700 | [diff] [blame] | 92 | */ |
| 93 | |
Srivatsa S. Bhat | 467de1f | 2011-12-06 23:17:51 +0100 | [diff] [blame] | 94 | |
Tejun Heo | dd67d32 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 95 | /** |
| 96 | * freezer_do_not_count - tell freezer to ignore %current |
| 97 | * |
| 98 | * Tell freezers to ignore the current task when determining whether the |
| 99 | * target frozen state is reached. IOW, the current task will be |
| 100 | * considered frozen enough by freezers. |
| 101 | * |
| 102 | * The caller shouldn't do anything which isn't allowed for a frozen task |
| 103 | * until freezer_cont() is called. Usually, freezer[_do_not]_count() pair |
| 104 | * wrap a scheduling operation and nothing much else. |
| 105 | */ |
Rafael J. Wysocki | ba96a0c | 2007-05-23 13:57:25 -0700 | [diff] [blame] | 106 | static inline void freezer_do_not_count(void) |
| 107 | { |
Srivatsa S. Bhat | 467de1f | 2011-12-06 23:17:51 +0100 | [diff] [blame] | 108 | current->flags |= PF_FREEZER_SKIP; |
Rafael J. Wysocki | ba96a0c | 2007-05-23 13:57:25 -0700 | [diff] [blame] | 109 | } |
| 110 | |
Tejun Heo | dd67d32 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 111 | /** |
| 112 | * freezer_count - tell freezer to stop ignoring %current |
| 113 | * |
| 114 | * Undo freezer_do_not_count(). It tells freezers that %current should be |
| 115 | * considered again and tries to freeze if freezing condition is already in |
| 116 | * effect. |
Rafael J. Wysocki | ba96a0c | 2007-05-23 13:57:25 -0700 | [diff] [blame] | 117 | */ |
| 118 | static inline void freezer_count(void) |
| 119 | { |
Srivatsa S. Bhat | 467de1f | 2011-12-06 23:17:51 +0100 | [diff] [blame] | 120 | current->flags &= ~PF_FREEZER_SKIP; |
Tejun Heo | dd67d32 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 121 | /* |
| 122 | * If freezing is in progress, the following paired with smp_mb() |
| 123 | * in freezer_should_skip() ensures that either we see %true |
| 124 | * freezing() or freezer_should_skip() sees !PF_FREEZER_SKIP. |
| 125 | */ |
| 126 | smp_mb(); |
Srivatsa S. Bhat | 467de1f | 2011-12-06 23:17:51 +0100 | [diff] [blame] | 127 | try_to_freeze(); |
Rafael J. Wysocki | ba96a0c | 2007-05-23 13:57:25 -0700 | [diff] [blame] | 128 | } |
| 129 | |
Colin Cross | 416ad3c | 2013-05-06 23:50:06 +0000 | [diff] [blame] | 130 | /* DO NOT ADD ANY NEW CALLERS OF THIS FUNCTION */ |
| 131 | static inline void freezer_count_unsafe(void) |
| 132 | { |
| 133 | current->flags &= ~PF_FREEZER_SKIP; |
| 134 | smp_mb(); |
| 135 | try_to_freeze_unsafe(); |
| 136 | } |
| 137 | |
Tejun Heo | dd67d32 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 138 | /** |
| 139 | * freezer_should_skip - whether to skip a task when determining frozen |
| 140 | * state is reached |
| 141 | * @p: task in quesion |
| 142 | * |
| 143 | * This function is used by freezers after establishing %true freezing() to |
| 144 | * test whether a task should be skipped when determining the target frozen |
| 145 | * state is reached. IOW, if this function returns %true, @p is considered |
| 146 | * frozen enough. |
Rafael J. Wysocki | ba96a0c | 2007-05-23 13:57:25 -0700 | [diff] [blame] | 147 | */ |
Tejun Heo | dd67d32 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 148 | static inline bool freezer_should_skip(struct task_struct *p) |
Rafael J. Wysocki | ba96a0c | 2007-05-23 13:57:25 -0700 | [diff] [blame] | 149 | { |
Tejun Heo | dd67d32 | 2012-10-16 15:03:14 -0700 | [diff] [blame] | 150 | /* |
| 151 | * The following smp_mb() paired with the one in freezer_count() |
| 152 | * ensures that either freezer_count() sees %true freezing() or we |
| 153 | * see cleared %PF_FREEZER_SKIP and return %false. This makes it |
| 154 | * impossible for a task to slip frozen state testing after |
| 155 | * clearing %PF_FREEZER_SKIP. |
| 156 | */ |
| 157 | smp_mb(); |
| 158 | return p->flags & PF_FREEZER_SKIP; |
Rafael J. Wysocki | ba96a0c | 2007-05-23 13:57:25 -0700 | [diff] [blame] | 159 | } |
Nigel Cunningham | ff39593 | 2006-12-06 20:34:28 -0800 | [diff] [blame] | 160 | |
Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 161 | /* |
Colin Cross | 8ee492d | 2013-05-06 23:50:13 +0000 | [diff] [blame] | 162 | * These functions are intended to be used whenever you want allow a sleeping |
Oleg Nesterov | 5d8f72b | 2012-10-26 19:46:06 +0200 | [diff] [blame] | 163 | * task to be frozen. Note that neither return any clear indication of |
| 164 | * whether a freeze event happened while in this function. |
Jeff Layton | d310310 | 2011-12-01 22:44:39 +0100 | [diff] [blame] | 165 | */ |
| 166 | |
| 167 | /* Like schedule(), but should not block the freezer. */ |
Colin Cross | 8ee492d | 2013-05-06 23:50:13 +0000 | [diff] [blame] | 168 | static inline void freezable_schedule(void) |
| 169 | { |
| 170 | freezer_do_not_count(); |
| 171 | schedule(); |
| 172 | freezer_count(); |
| 173 | } |
Jeff Layton | d310310 | 2011-12-01 22:44:39 +0100 | [diff] [blame] | 174 | |
Colin Cross | 416ad3c | 2013-05-06 23:50:06 +0000 | [diff] [blame] | 175 | /* DO NOT ADD ANY NEW CALLERS OF THIS FUNCTION */ |
Colin Cross | 8ee492d | 2013-05-06 23:50:13 +0000 | [diff] [blame] | 176 | static inline void freezable_schedule_unsafe(void) |
| 177 | { |
| 178 | freezer_do_not_count(); |
| 179 | schedule(); |
| 180 | freezer_count_unsafe(); |
| 181 | } |
Colin Cross | 416ad3c | 2013-05-06 23:50:06 +0000 | [diff] [blame] | 182 | |
Colin Cross | dd5ec0f | 2013-05-06 23:50:14 +0000 | [diff] [blame] | 183 | /* |
| 184 | * Like freezable_schedule_timeout(), but should not block the freezer. Do not |
| 185 | * call this with locks held. |
| 186 | */ |
| 187 | static inline long freezable_schedule_timeout(long timeout) |
| 188 | { |
| 189 | long __retval; |
| 190 | freezer_do_not_count(); |
| 191 | __retval = schedule_timeout(timeout); |
| 192 | freezer_count(); |
| 193 | return __retval; |
| 194 | } |
| 195 | |
| 196 | /* |
| 197 | * Like schedule_timeout_interruptible(), but should not block the freezer. Do not |
| 198 | * call this with locks held. |
| 199 | */ |
| 200 | static inline long freezable_schedule_timeout_interruptible(long timeout) |
| 201 | { |
| 202 | long __retval; |
| 203 | freezer_do_not_count(); |
| 204 | __retval = schedule_timeout_interruptible(timeout); |
| 205 | freezer_count(); |
| 206 | return __retval; |
| 207 | } |
| 208 | |
Jeff Layton | d310310 | 2011-12-01 22:44:39 +0100 | [diff] [blame] | 209 | /* Like schedule_timeout_killable(), but should not block the freezer. */ |
Colin Cross | 8ee492d | 2013-05-06 23:50:13 +0000 | [diff] [blame] | 210 | static inline long freezable_schedule_timeout_killable(long timeout) |
| 211 | { |
| 212 | long __retval; |
| 213 | freezer_do_not_count(); |
| 214 | __retval = schedule_timeout_killable(timeout); |
| 215 | freezer_count(); |
| 216 | return __retval; |
| 217 | } |
Jeff Layton | d310310 | 2011-12-01 22:44:39 +0100 | [diff] [blame] | 218 | |
Colin Cross | 416ad3c | 2013-05-06 23:50:06 +0000 | [diff] [blame] | 219 | /* DO NOT ADD ANY NEW CALLERS OF THIS FUNCTION */ |
Colin Cross | 8ee492d | 2013-05-06 23:50:13 +0000 | [diff] [blame] | 220 | static inline long freezable_schedule_timeout_killable_unsafe(long timeout) |
| 221 | { |
| 222 | long __retval; |
| 223 | freezer_do_not_count(); |
| 224 | __retval = schedule_timeout_killable(timeout); |
| 225 | freezer_count_unsafe(); |
| 226 | return __retval; |
| 227 | } |
Colin Cross | 416ad3c | 2013-05-06 23:50:06 +0000 | [diff] [blame] | 228 | |
Jeff Layton | d310310 | 2011-12-01 22:44:39 +0100 | [diff] [blame] | 229 | /* |
Colin Cross | dd5ec0f | 2013-05-06 23:50:14 +0000 | [diff] [blame] | 230 | * Like schedule_hrtimeout_range(), but should not block the freezer. Do not |
| 231 | * call this with locks held. |
| 232 | */ |
| 233 | static inline int freezable_schedule_hrtimeout_range(ktime_t *expires, |
| 234 | unsigned long delta, const enum hrtimer_mode mode) |
| 235 | { |
| 236 | int __retval; |
| 237 | freezer_do_not_count(); |
| 238 | __retval = schedule_hrtimeout_range(expires, delta, mode); |
| 239 | freezer_count(); |
| 240 | return __retval; |
| 241 | } |
| 242 | |
| 243 | /* |
Jeff Layton | f06ac72 | 2011-10-19 15:30:40 -0400 | [diff] [blame] | 244 | * Freezer-friendly wrappers around wait_event_interruptible(), |
| 245 | * wait_event_killable() and wait_event_interruptible_timeout(), originally |
| 246 | * defined in <linux/wait.h> |
Rafael J. Wysocki | e42837b | 2007-10-18 03:04:45 -0700 | [diff] [blame] | 247 | */ |
| 248 | |
Jeff Layton | f06ac72 | 2011-10-19 15:30:40 -0400 | [diff] [blame] | 249 | #define wait_event_freezekillable(wq, condition) \ |
| 250 | ({ \ |
| 251 | int __retval; \ |
Oleg Nesterov | 6f35c4a | 2011-11-03 16:07:49 -0700 | [diff] [blame] | 252 | freezer_do_not_count(); \ |
| 253 | __retval = wait_event_killable(wq, (condition)); \ |
| 254 | freezer_count(); \ |
Jeff Layton | f06ac72 | 2011-10-19 15:30:40 -0400 | [diff] [blame] | 255 | __retval; \ |
| 256 | }) |
| 257 | |
Colin Cross | 5853cc2 | 2013-05-07 17:52:05 +0000 | [diff] [blame] | 258 | /* DO NOT ADD ANY NEW CALLERS OF THIS FUNCTION */ |
| 259 | #define wait_event_freezekillable_unsafe(wq, condition) \ |
| 260 | ({ \ |
| 261 | int __retval; \ |
| 262 | freezer_do_not_count(); \ |
| 263 | __retval = wait_event_killable(wq, (condition)); \ |
| 264 | freezer_count_unsafe(); \ |
| 265 | __retval; \ |
| 266 | }) |
| 267 | |
Rafael J. Wysocki | e42837b | 2007-10-18 03:04:45 -0700 | [diff] [blame] | 268 | #define wait_event_freezable(wq, condition) \ |
| 269 | ({ \ |
| 270 | int __retval; \ |
Colin Cross | b012358 | 2013-05-06 23:50:12 +0000 | [diff] [blame] | 271 | freezer_do_not_count(); \ |
| 272 | __retval = wait_event_interruptible(wq, (condition)); \ |
| 273 | freezer_count(); \ |
Rafael J. Wysocki | e42837b | 2007-10-18 03:04:45 -0700 | [diff] [blame] | 274 | __retval; \ |
| 275 | }) |
| 276 | |
Rafael J. Wysocki | e42837b | 2007-10-18 03:04:45 -0700 | [diff] [blame] | 277 | #define wait_event_freezable_timeout(wq, condition, timeout) \ |
| 278 | ({ \ |
| 279 | long __retval = timeout; \ |
Colin Cross | b012358 | 2013-05-06 23:50:12 +0000 | [diff] [blame] | 280 | freezer_do_not_count(); \ |
| 281 | __retval = wait_event_interruptible_timeout(wq, (condition), \ |
| 282 | __retval); \ |
| 283 | freezer_count(); \ |
Rafael J. Wysocki | e42837b | 2007-10-18 03:04:45 -0700 | [diff] [blame] | 284 | __retval; \ |
| 285 | }) |
Oleg Nesterov | 24b7ead | 2011-11-23 09:28:17 -0800 | [diff] [blame] | 286 | |
Colin Cross | dd5ec0f | 2013-05-06 23:50:14 +0000 | [diff] [blame] | 287 | #define wait_event_freezable_exclusive(wq, condition) \ |
| 288 | ({ \ |
| 289 | int __retval; \ |
| 290 | freezer_do_not_count(); \ |
| 291 | __retval = wait_event_interruptible_exclusive(wq, condition); \ |
| 292 | freezer_count(); \ |
| 293 | __retval; \ |
| 294 | }) |
| 295 | |
| 296 | |
Matt Helsley | 8174f15 | 2008-10-18 20:27:19 -0700 | [diff] [blame] | 297 | #else /* !CONFIG_FREEZER */ |
Tejun Heo | 948246f | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 298 | static inline bool frozen(struct task_struct *p) { return false; } |
Tejun Heo | a320122 | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 299 | static inline bool freezing(struct task_struct *p) { return false; } |
Stephen Rothwell | 62c9ea6 | 2011-11-25 00:44:55 +0100 | [diff] [blame] | 300 | static inline void __thaw_task(struct task_struct *t) {} |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 301 | |
Tejun Heo | 8a32c44 | 2011-11-21 12:32:23 -0800 | [diff] [blame] | 302 | static inline bool __refrigerator(bool check_kthr_stop) { return false; } |
Rafael J. Wysocki | 2aede85 | 2011-09-26 20:32:27 +0200 | [diff] [blame] | 303 | static inline int freeze_processes(void) { return -ENOSYS; } |
| 304 | static inline int freeze_kernel_threads(void) { return -ENOSYS; } |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 305 | static inline void thaw_processes(void) {} |
Rafael J. Wysocki | 181e9bd | 2012-01-29 20:35:52 +0100 | [diff] [blame] | 306 | static inline void thaw_kernel_threads(void) {} |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 307 | |
Li Haifeng | e5f5762 | 2012-11-23 21:55:19 +0100 | [diff] [blame] | 308 | static inline bool try_to_freeze_nowarn(void) { return false; } |
Tejun Heo | a0acae0 | 2011-11-21 12:32:22 -0800 | [diff] [blame] | 309 | static inline bool try_to_freeze(void) { return false; } |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 310 | |
Rafael J. Wysocki | ba96a0c | 2007-05-23 13:57:25 -0700 | [diff] [blame] | 311 | static inline void freezer_do_not_count(void) {} |
| 312 | static inline void freezer_count(void) {} |
| 313 | static inline int freezer_should_skip(struct task_struct *p) { return 0; } |
Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 314 | static inline void set_freezable(void) {} |
Rafael J. Wysocki | e42837b | 2007-10-18 03:04:45 -0700 | [diff] [blame] | 315 | |
Jeff Layton | d310310 | 2011-12-01 22:44:39 +0100 | [diff] [blame] | 316 | #define freezable_schedule() schedule() |
| 317 | |
Colin Cross | 416ad3c | 2013-05-06 23:50:06 +0000 | [diff] [blame] | 318 | #define freezable_schedule_unsafe() schedule() |
| 319 | |
Colin Cross | dd5ec0f | 2013-05-06 23:50:14 +0000 | [diff] [blame] | 320 | #define freezable_schedule_timeout(timeout) schedule_timeout(timeout) |
| 321 | |
| 322 | #define freezable_schedule_timeout_interruptible(timeout) \ |
| 323 | schedule_timeout_interruptible(timeout) |
| 324 | |
Jeff Layton | d310310 | 2011-12-01 22:44:39 +0100 | [diff] [blame] | 325 | #define freezable_schedule_timeout_killable(timeout) \ |
| 326 | schedule_timeout_killable(timeout) |
| 327 | |
Colin Cross | 416ad3c | 2013-05-06 23:50:06 +0000 | [diff] [blame] | 328 | #define freezable_schedule_timeout_killable_unsafe(timeout) \ |
| 329 | schedule_timeout_killable(timeout) |
| 330 | |
Colin Cross | dd5ec0f | 2013-05-06 23:50:14 +0000 | [diff] [blame] | 331 | #define freezable_schedule_hrtimeout_range(expires, delta, mode) \ |
| 332 | schedule_hrtimeout_range(expires, delta, mode) |
| 333 | |
Rafael J. Wysocki | e42837b | 2007-10-18 03:04:45 -0700 | [diff] [blame] | 334 | #define wait_event_freezable(wq, condition) \ |
| 335 | wait_event_interruptible(wq, condition) |
| 336 | |
| 337 | #define wait_event_freezable_timeout(wq, condition, timeout) \ |
| 338 | wait_event_interruptible_timeout(wq, condition, timeout) |
| 339 | |
Colin Cross | dd5ec0f | 2013-05-06 23:50:14 +0000 | [diff] [blame] | 340 | #define wait_event_freezable_exclusive(wq, condition) \ |
| 341 | wait_event_interruptible_exclusive(wq, condition) |
| 342 | |
Steve French | e0c8ea1 | 2011-10-25 10:02:53 -0500 | [diff] [blame] | 343 | #define wait_event_freezekillable(wq, condition) \ |
| 344 | wait_event_killable(wq, condition) |
| 345 | |
Colin Cross | 5853cc2 | 2013-05-07 17:52:05 +0000 | [diff] [blame] | 346 | #define wait_event_freezekillable_unsafe(wq, condition) \ |
| 347 | wait_event_killable(wq, condition) |
| 348 | |
Matt Helsley | 8174f15 | 2008-10-18 20:27:19 -0700 | [diff] [blame] | 349 | #endif /* !CONFIG_FREEZER */ |
Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 350 | |
| 351 | #endif /* FREEZER_H_INCLUDED */ |