blob: 7bcfe73d999b351eca24c36a70d0f2398f1e59d5 [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);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080042
Tejun Heoa0acae02011-11-21 12:32:22 -080043static inline bool try_to_freeze(void)
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080044{
Tejun Heoa0acae02011-11-21 12:32:22 -080045 might_sleep();
46 if (likely(!freezing(current)))
47 return false;
Tejun Heo8a32c442011-11-21 12:32:23 -080048 return __refrigerator(false);
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080049}
Nigel Cunninghamff395932006-12-06 20:34:28 -080050
Tejun Heo839e3402011-11-21 12:32:26 -080051extern bool freeze_task(struct task_struct *p);
Tejun Heo34b087e2011-11-23 09:28:17 -080052extern bool set_freezable(void);
Matt Helsley8174f152008-10-18 20:27:19 -070053
Matt Helsleydc52ddc2008-10-18 20:27:21 -070054#ifdef CONFIG_CGROUP_FREEZER
Tejun Heo22b4e112011-11-21 12:32:25 -080055extern bool cgroup_freezing(struct task_struct *task);
Matt Helsleydc52ddc2008-10-18 20:27:21 -070056#else /* !CONFIG_CGROUP_FREEZER */
Tejun Heo22b4e112011-11-21 12:32:25 -080057static inline bool cgroup_freezing(struct task_struct *task)
Matt Helsley5a7aadf2010-03-26 23:51:44 +010058{
Tejun Heo22b4e112011-11-21 12:32:25 -080059 return false;
Matt Helsley5a7aadf2010-03-26 23:51:44 +010060}
Matt Helsleydc52ddc2008-10-18 20:27:21 -070061#endif /* !CONFIG_CGROUP_FREEZER */
62
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070063/*
64 * The PF_FREEZER_SKIP flag should be set by a vfork parent right before it
65 * calls wait_for_completion(&vfork) and reset right after it returns from this
66 * function. Next, the parent should call try_to_freeze() to freeze itself
67 * appropriately in case the child has exited before the freezing of tasks is
68 * complete. However, we don't want kernel threads to be frozen in unexpected
69 * places, so we allow them to block freeze_processes() instead or to set
Srivatsa S. Bhat467de1f2011-12-06 23:17:51 +010070 * PF_NOFREEZE if needed. Fortunately, in the ____call_usermodehelper() case the
71 * parent won't really block freeze_processes(), since ____call_usermodehelper()
72 * (the child) does a little before exec/exit and it can't be frozen before
73 * waking up the parent.
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070074 */
75
Srivatsa S. Bhat467de1f2011-12-06 23:17:51 +010076
77/* Tell the freezer not to count the current task as freezable. */
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070078static inline void freezer_do_not_count(void)
79{
Srivatsa S. Bhat467de1f2011-12-06 23:17:51 +010080 current->flags |= PF_FREEZER_SKIP;
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070081}
82
83/*
Srivatsa S. Bhat467de1f2011-12-06 23:17:51 +010084 * Tell the freezer to count the current task as freezable again and try to
85 * freeze it.
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070086 */
87static inline void freezer_count(void)
88{
Srivatsa S. Bhat467de1f2011-12-06 23:17:51 +010089 current->flags &= ~PF_FREEZER_SKIP;
90 try_to_freeze();
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070091}
92
93/*
Tejun Heo58a69cb2011-02-16 09:25:31 +010094 * Check if the task should be counted as freezable by the freezer
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -070095 */
96static inline int freezer_should_skip(struct task_struct *p)
97{
98 return !!(p->flags & PF_FREEZER_SKIP);
99}
Nigel Cunninghamff395932006-12-06 20:34:28 -0800100
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700101/*
Jeff Laytond3103102011-12-01 22:44:39 +0100102 * These macros are intended to be used whenever you want allow a task that's
103 * sleeping in TASK_UNINTERRUPTIBLE or TASK_KILLABLE state to be frozen. Note
104 * that neither return any clear indication of whether a freeze event happened
105 * while in this function.
106 */
107
108/* Like schedule(), but should not block the freezer. */
109#define freezable_schedule() \
110({ \
111 freezer_do_not_count(); \
112 schedule(); \
113 freezer_count(); \
114})
115
116/* Like schedule_timeout_killable(), but should not block the freezer. */
117#define freezable_schedule_timeout_killable(timeout) \
118({ \
119 freezer_do_not_count(); \
120 schedule_timeout_killable(timeout); \
121 freezer_count(); \
122})
123
124/*
Jeff Laytonf06ac722011-10-19 15:30:40 -0400125 * Freezer-friendly wrappers around wait_event_interruptible(),
126 * wait_event_killable() and wait_event_interruptible_timeout(), originally
127 * defined in <linux/wait.h>
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700128 */
129
Jeff Laytonf06ac722011-10-19 15:30:40 -0400130#define wait_event_freezekillable(wq, condition) \
131({ \
132 int __retval; \
Oleg Nesterov6f35c4a2011-11-03 16:07:49 -0700133 freezer_do_not_count(); \
134 __retval = wait_event_killable(wq, (condition)); \
135 freezer_count(); \
Jeff Laytonf06ac722011-10-19 15:30:40 -0400136 __retval; \
137})
138
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700139#define wait_event_freezable(wq, condition) \
140({ \
141 int __retval; \
Oleg Nesterov24b7ead2011-11-23 09:28:17 -0800142 for (;;) { \
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700143 __retval = wait_event_interruptible(wq, \
144 (condition) || freezing(current)); \
Oleg Nesterov24b7ead2011-11-23 09:28:17 -0800145 if (__retval || (condition)) \
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700146 break; \
Oleg Nesterov24b7ead2011-11-23 09:28:17 -0800147 try_to_freeze(); \
148 } \
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700149 __retval; \
150})
151
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700152#define wait_event_freezable_timeout(wq, condition, timeout) \
153({ \
154 long __retval = timeout; \
Oleg Nesterov24b7ead2011-11-23 09:28:17 -0800155 for (;;) { \
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700156 __retval = wait_event_interruptible_timeout(wq, \
157 (condition) || freezing(current), \
158 __retval); \
Oleg Nesterov24b7ead2011-11-23 09:28:17 -0800159 if (__retval <= 0 || (condition)) \
160 break; \
161 try_to_freeze(); \
162 } \
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700163 __retval; \
164})
Oleg Nesterov24b7ead2011-11-23 09:28:17 -0800165
Matt Helsley8174f152008-10-18 20:27:19 -0700166#else /* !CONFIG_FREEZER */
Tejun Heo948246f2011-11-21 12:32:25 -0800167static inline bool frozen(struct task_struct *p) { return false; }
Tejun Heoa3201222011-11-21 12:32:25 -0800168static inline bool freezing(struct task_struct *p) { return false; }
Stephen Rothwell62c9ea62011-11-25 00:44:55 +0100169static inline void __thaw_task(struct task_struct *t) {}
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800170
Tejun Heo8a32c442011-11-21 12:32:23 -0800171static inline bool __refrigerator(bool check_kthr_stop) { return false; }
Rafael J. Wysocki2aede852011-09-26 20:32:27 +0200172static inline int freeze_processes(void) { return -ENOSYS; }
173static inline int freeze_kernel_threads(void) { return -ENOSYS; }
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800174static inline void thaw_processes(void) {}
175
Tejun Heoa0acae02011-11-21 12:32:22 -0800176static inline bool try_to_freeze(void) { return false; }
Nigel Cunningham7dfb7102006-12-06 20:34:23 -0800177
Rafael J. Wysockiba96a0c2007-05-23 13:57:25 -0700178static inline void freezer_do_not_count(void) {}
179static inline void freezer_count(void) {}
180static inline int freezer_should_skip(struct task_struct *p) { return 0; }
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700181static inline void set_freezable(void) {}
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700182
Jeff Laytond3103102011-12-01 22:44:39 +0100183#define freezable_schedule() schedule()
184
185#define freezable_schedule_timeout_killable(timeout) \
186 schedule_timeout_killable(timeout)
187
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700188#define wait_event_freezable(wq, condition) \
189 wait_event_interruptible(wq, condition)
190
191#define wait_event_freezable_timeout(wq, condition, timeout) \
192 wait_event_interruptible_timeout(wq, condition, timeout)
193
Steve Frenche0c8ea12011-10-25 10:02:53 -0500194#define wait_event_freezekillable(wq, condition) \
195 wait_event_killable(wq, condition)
196
Matt Helsley8174f152008-10-18 20:27:19 -0700197#endif /* !CONFIG_FREEZER */
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700198
199#endif /* FREEZER_H_INCLUDED */