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 /kernel/power | |
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 'kernel/power')
-rw-r--r-- | kernel/power/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/power/process.c b/kernel/power/process.c index addbbe5531bc..fe2787207f00 100644 --- a/kernel/power/process.c +++ b/kernel/power/process.c | |||
@@ -186,7 +186,7 @@ static void thaw_tasks(bool nosig_only) | |||
186 | if (cgroup_freezing_or_frozen(p)) | 186 | if (cgroup_freezing_or_frozen(p)) |
187 | continue; | 187 | continue; |
188 | 188 | ||
189 | thaw_process(p); | 189 | __thaw_task(p); |
190 | } while_each_thread(g, p); | 190 | } while_each_thread(g, p); |
191 | read_unlock(&tasklist_lock); | 191 | read_unlock(&tasklist_lock); |
192 | } | 192 | } |