diff options
author | Tejun Heo <tj@kernel.org> | 2011-11-21 15:32:23 -0500 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2011-11-21 15:32:23 -0500 |
commit | a5be2d0d1a8746e7be5210e3d6b904455000443c (patch) | |
tree | 1dcfa2725057a73059a3f768f5f5f7825b5d56ef /include/linux/freezer.h | |
parent | 8a32c441c1609f80e55df75422324a1151208f40 (diff) |
freezer: rename thaw_process() to __thaw_task() and simplify the implementation
thaw_process() now has only internal users - system and cgroup
freezers. Remove the unnecessary return value, rename, unexport and
collapse __thaw_process() into it. This will help further updates to
the freezer code.
-v3: oom_kill grew a use of thaw_process() while this patch was
pending. Convert it to use __thaw_task() for now. In the longer
term, this should be handled by allowing tasks to die if killed
even if it's frozen.
-v2: minor style update as suggested by Matt.
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Paul Menage <menage@google.com>
Cc: Matt Helsley <matthltc@us.ibm.com>
Diffstat (limited to 'include/linux/freezer.h')
-rw-r--r-- | include/linux/freezer.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/freezer.h b/include/linux/freezer.h index d02b78448b0f..ba4f512d2938 100644 --- a/include/linux/freezer.h +++ b/include/linux/freezer.h | |||
@@ -45,7 +45,7 @@ static inline bool should_send_signal(struct task_struct *p) | |||
45 | } | 45 | } |
46 | 46 | ||
47 | /* Takes and releases task alloc lock using task_lock() */ | 47 | /* Takes and releases task alloc lock using task_lock() */ |
48 | extern int thaw_process(struct task_struct *p); | 48 | extern void __thaw_task(struct task_struct *t); |
49 | 49 | ||
50 | extern bool __refrigerator(bool check_kthr_stop); | 50 | extern bool __refrigerator(bool check_kthr_stop); |
51 | extern int freeze_processes(void); | 51 | extern int freeze_processes(void); |
@@ -178,7 +178,6 @@ static inline int frozen(struct task_struct *p) { return 0; } | |||
178 | static inline int freezing(struct task_struct *p) { return 0; } | 178 | static inline int freezing(struct task_struct *p) { return 0; } |
179 | static inline void set_freeze_flag(struct task_struct *p) {} | 179 | static inline void set_freeze_flag(struct task_struct *p) {} |
180 | static inline void clear_freeze_flag(struct task_struct *p) {} | 180 | static inline void clear_freeze_flag(struct task_struct *p) {} |
181 | static inline int thaw_process(struct task_struct *p) { return 1; } | ||
182 | 181 | ||
183 | static inline bool __refrigerator(bool check_kthr_stop) { return false; } | 182 | static inline bool __refrigerator(bool check_kthr_stop) { return false; } |
184 | static inline int freeze_processes(void) { return -ENOSYS; } | 183 | static inline int freeze_processes(void) { return -ENOSYS; } |