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 | |
Randy Dunlap | 5c543ef | 2006-12-10 02:18:58 -0800 | [diff] [blame] | 6 | #include <linux/sched.h> |
Rafael J. Wysocki | e42837b | 2007-10-18 03:04:45 -0700 | [diff] [blame] | 7 | #include <linux/wait.h> |
Tejun Heo | a320122 | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 8 | #include <linux/atomic.h> |
Randy Dunlap | 5c543ef | 2006-12-10 02:18:58 -0800 | [diff] [blame] | 9 | |
Matt Helsley | 8174f15 | 2008-10-18 20:27:19 -0700 | [diff] [blame] | 10 | #ifdef CONFIG_FREEZER |
Tejun Heo | a320122 | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 11 | extern atomic_t system_freezing_cnt; /* nr of freezing conds in effect */ |
| 12 | extern bool pm_freezing; /* PM freezing in effect */ |
| 13 | extern bool pm_nosig_freezing; /* PM nosig freezing in effect */ |
| 14 | |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 15 | /* |
| 16 | * Check if a process has been frozen |
| 17 | */ |
Tejun Heo | 948246f | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 18 | static inline bool frozen(struct task_struct *p) |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 19 | { |
| 20 | return p->flags & PF_FROZEN; |
| 21 | } |
| 22 | |
Tejun Heo | a320122 | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 23 | extern bool freezing_slow_path(struct task_struct *p); |
| 24 | |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 25 | /* |
| 26 | * Check if there is a request to freeze a process |
| 27 | */ |
Tejun Heo | a320122 | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 28 | static inline bool freezing(struct task_struct *p) |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 29 | { |
Tejun Heo | a320122 | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 30 | if (likely(!atomic_read(&system_freezing_cnt))) |
| 31 | return false; |
| 32 | return freezing_slow_path(p); |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 33 | } |
| 34 | |
Matt Helsley | dc52ddc | 2008-10-18 20:27:21 -0700 | [diff] [blame] | 35 | /* Takes and releases task alloc lock using task_lock() */ |
Tejun Heo | a5be2d0 | 2011-11-21 12:32:23 -0800 | [diff] [blame] | 36 | extern void __thaw_task(struct task_struct *t); |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 37 | |
Tejun Heo | 8a32c44 | 2011-11-21 12:32:23 -0800 | [diff] [blame] | 38 | extern bool __refrigerator(bool check_kthr_stop); |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 39 | extern int freeze_processes(void); |
Rafael J. Wysocki | 2aede85 | 2011-09-26 20:32:27 +0200 | [diff] [blame] | 40 | extern int freeze_kernel_threads(void); |
Rafael J. Wysocki | a9b6f56 | 2006-12-06 20:34:37 -0800 | [diff] [blame] | 41 | extern void thaw_processes(void); |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 42 | |
Tejun Heo | a0acae0 | 2011-11-21 12:32:22 -0800 | [diff] [blame] | 43 | static inline bool try_to_freeze(void) |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 44 | { |
Tejun Heo | a0acae0 | 2011-11-21 12:32:22 -0800 | [diff] [blame] | 45 | might_sleep(); |
| 46 | if (likely(!freezing(current))) |
| 47 | return false; |
Tejun Heo | 8a32c44 | 2011-11-21 12:32:23 -0800 | [diff] [blame] | 48 | return __refrigerator(false); |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 49 | } |
Nigel Cunningham | ff39593 | 2006-12-06 20:34:28 -0800 | [diff] [blame] | 50 | |
Tejun Heo | 839e340 | 2011-11-21 12:32:26 -0800 | [diff] [blame] | 51 | extern bool freeze_task(struct task_struct *p); |
Tejun Heo | 34b087e | 2011-11-23 09:28:17 -0800 | [diff] [blame^] | 52 | extern bool set_freezable(void); |
Matt Helsley | 8174f15 | 2008-10-18 20:27:19 -0700 | [diff] [blame] | 53 | |
Matt Helsley | dc52ddc | 2008-10-18 20:27:21 -0700 | [diff] [blame] | 54 | #ifdef CONFIG_CGROUP_FREEZER |
Tejun Heo | 22b4e11 | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 55 | extern bool cgroup_freezing(struct task_struct *task); |
Matt Helsley | dc52ddc | 2008-10-18 20:27:21 -0700 | [diff] [blame] | 56 | #else /* !CONFIG_CGROUP_FREEZER */ |
Tejun Heo | 22b4e11 | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 57 | static inline bool cgroup_freezing(struct task_struct *task) |
Matt Helsley | 5a7aadf | 2010-03-26 23:51:44 +0100 | [diff] [blame] | 58 | { |
Tejun Heo | 22b4e11 | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 59 | return false; |
Matt Helsley | 5a7aadf | 2010-03-26 23:51:44 +0100 | [diff] [blame] | 60 | } |
Matt Helsley | dc52ddc | 2008-10-18 20:27:21 -0700 | [diff] [blame] | 61 | #endif /* !CONFIG_CGROUP_FREEZER */ |
| 62 | |
Rafael J. Wysocki | ba96a0c | 2007-05-23 13:57:25 -0700 | [diff] [blame] | 63 | /* |
| 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 |
| 70 | * PF_NOFREEZE if needed and PF_FREEZER_SKIP is only set for userland vfork |
| 71 | * parents. Fortunately, in the ____call_usermodehelper() case the parent won't |
| 72 | * really block freeze_processes(), since ____call_usermodehelper() (the child) |
| 73 | * does a little before exec/exit and it can't be frozen before waking up the |
| 74 | * parent. |
| 75 | */ |
| 76 | |
| 77 | /* |
| 78 | * If the current task is a user space one, tell the freezer not to count it as |
| 79 | * freezable. |
| 80 | */ |
| 81 | static inline void freezer_do_not_count(void) |
| 82 | { |
| 83 | if (current->mm) |
| 84 | current->flags |= PF_FREEZER_SKIP; |
| 85 | } |
| 86 | |
| 87 | /* |
| 88 | * If the current task is a user space one, tell the freezer to count it as |
| 89 | * freezable again and try to freeze it. |
| 90 | */ |
| 91 | static inline void freezer_count(void) |
| 92 | { |
| 93 | if (current->mm) { |
| 94 | current->flags &= ~PF_FREEZER_SKIP; |
| 95 | try_to_freeze(); |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | /* |
Tejun Heo | 58a69cb | 2011-02-16 09:25:31 +0100 | [diff] [blame] | 100 | * Check if the task should be counted as freezable by the freezer |
Rafael J. Wysocki | ba96a0c | 2007-05-23 13:57:25 -0700 | [diff] [blame] | 101 | */ |
| 102 | static inline int freezer_should_skip(struct task_struct *p) |
| 103 | { |
| 104 | return !!(p->flags & PF_FREEZER_SKIP); |
| 105 | } |
Nigel Cunningham | ff39593 | 2006-12-06 20:34:28 -0800 | [diff] [blame] | 106 | |
Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 107 | /* |
Jeff Layton | f06ac72 | 2011-10-19 15:30:40 -0400 | [diff] [blame] | 108 | * Freezer-friendly wrappers around wait_event_interruptible(), |
| 109 | * wait_event_killable() and wait_event_interruptible_timeout(), originally |
| 110 | * defined in <linux/wait.h> |
Rafael J. Wysocki | e42837b | 2007-10-18 03:04:45 -0700 | [diff] [blame] | 111 | */ |
| 112 | |
Jeff Layton | f06ac72 | 2011-10-19 15:30:40 -0400 | [diff] [blame] | 113 | #define wait_event_freezekillable(wq, condition) \ |
| 114 | ({ \ |
| 115 | int __retval; \ |
Oleg Nesterov | 6f35c4a | 2011-11-03 16:07:49 -0700 | [diff] [blame] | 116 | freezer_do_not_count(); \ |
| 117 | __retval = wait_event_killable(wq, (condition)); \ |
| 118 | freezer_count(); \ |
Jeff Layton | f06ac72 | 2011-10-19 15:30:40 -0400 | [diff] [blame] | 119 | __retval; \ |
| 120 | }) |
| 121 | |
Rafael J. Wysocki | e42837b | 2007-10-18 03:04:45 -0700 | [diff] [blame] | 122 | #define wait_event_freezable(wq, condition) \ |
| 123 | ({ \ |
| 124 | int __retval; \ |
| 125 | do { \ |
| 126 | __retval = wait_event_interruptible(wq, \ |
| 127 | (condition) || freezing(current)); \ |
| 128 | if (__retval && !freezing(current)) \ |
| 129 | break; \ |
| 130 | else if (!(condition)) \ |
| 131 | __retval = -ERESTARTSYS; \ |
| 132 | } while (try_to_freeze()); \ |
| 133 | __retval; \ |
| 134 | }) |
| 135 | |
| 136 | |
| 137 | #define wait_event_freezable_timeout(wq, condition, timeout) \ |
| 138 | ({ \ |
| 139 | long __retval = timeout; \ |
| 140 | do { \ |
| 141 | __retval = wait_event_interruptible_timeout(wq, \ |
| 142 | (condition) || freezing(current), \ |
| 143 | __retval); \ |
| 144 | } while (try_to_freeze()); \ |
| 145 | __retval; \ |
| 146 | }) |
Matt Helsley | 8174f15 | 2008-10-18 20:27:19 -0700 | [diff] [blame] | 147 | #else /* !CONFIG_FREEZER */ |
Tejun Heo | 948246f | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 148 | static inline bool frozen(struct task_struct *p) { return false; } |
Tejun Heo | a320122 | 2011-11-21 12:32:25 -0800 | [diff] [blame] | 149 | static inline bool freezing(struct task_struct *p) { return false; } |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 150 | |
Tejun Heo | 8a32c44 | 2011-11-21 12:32:23 -0800 | [diff] [blame] | 151 | static inline bool __refrigerator(bool check_kthr_stop) { return false; } |
Rafael J. Wysocki | 2aede85 | 2011-09-26 20:32:27 +0200 | [diff] [blame] | 152 | static inline int freeze_processes(void) { return -ENOSYS; } |
| 153 | static inline int freeze_kernel_threads(void) { return -ENOSYS; } |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 154 | static inline void thaw_processes(void) {} |
| 155 | |
Tejun Heo | a0acae0 | 2011-11-21 12:32:22 -0800 | [diff] [blame] | 156 | static inline bool try_to_freeze(void) { return false; } |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 157 | |
Rafael J. Wysocki | ba96a0c | 2007-05-23 13:57:25 -0700 | [diff] [blame] | 158 | static inline void freezer_do_not_count(void) {} |
| 159 | static inline void freezer_count(void) {} |
| 160 | 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] | 161 | static inline void set_freezable(void) {} |
Rafael J. Wysocki | e42837b | 2007-10-18 03:04:45 -0700 | [diff] [blame] | 162 | |
| 163 | #define wait_event_freezable(wq, condition) \ |
| 164 | wait_event_interruptible(wq, condition) |
| 165 | |
| 166 | #define wait_event_freezable_timeout(wq, condition, timeout) \ |
| 167 | wait_event_interruptible_timeout(wq, condition, timeout) |
| 168 | |
Steve French | e0c8ea1 | 2011-10-25 10:02:53 -0500 | [diff] [blame] | 169 | #define wait_event_freezekillable(wq, condition) \ |
| 170 | wait_event_killable(wq, condition) |
| 171 | |
Matt Helsley | 8174f15 | 2008-10-18 20:27:19 -0700 | [diff] [blame] | 172 | #endif /* !CONFIG_FREEZER */ |
Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 173 | |
| 174 | #endif /* FREEZER_H_INCLUDED */ |