diff options
author | Miaohe Lin <linmiaohe@huawei.com> | 2023-08-01 20:40:34 +0800 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2023-08-02 09:37:59 -1000 |
commit | a2c15fece4b47e2e5a89a3bf273c9c6517c3e8a5 (patch) | |
tree | 5c580225a5b11aea3dea16f0873d4d581011f2be /kernel/cgroup | |
parent | 05f76ae95e71149a9c7085c323d3f710dff22730 (diff) |
cgroup: fix obsolete function name above css_free_rwork_fn()
Since commit 8f36aaec9c92 ("cgroup: Use rcu_work instead of explicit rcu
and work item"), css_free_work_fn has been renamed to css_free_rwork_fn.
Update corresponding comment.
Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'kernel/cgroup')
-rw-r--r-- | kernel/cgroup/cgroup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/cgroup/cgroup.c b/kernel/cgroup/cgroup.c index 33b586db14ef..f9cde56cf947 100644 --- a/kernel/cgroup/cgroup.c +++ b/kernel/cgroup/cgroup.c @@ -5301,7 +5301,7 @@ static struct cftype cgroup_psi_files[] = { * RCU callback. * * 4. After the grace period, the css can be freed. Implemented in - * css_free_work_fn(). + * css_free_rwork_fn(). * * It is actually hairier because both step 2 and 4 require process context * and thus involve punting to css->destroy_work adding two additional |