cgroup: move subsys file removal to kill_css()

With the planned unified hierarchy, individual css's will be created
and destroyed dynamically across the lifetime of a cgroup.  To enable
such usages, css destruction is being decoupled from cgroup
destruction.  This patch moves subsys file removal from
cgroup_destroy_locked() to kill_css().

While this changes the order of destruction operations, the changes
shouldn't be noticeable to cgroup subsystems or userland.

Signed-off-by: Tejun Heo <tj@kernel.org>
Acked-by: Li Zefan <lizefan@huawei.com>
This commit is contained in:
Tejun Heo 2013-08-13 20:22:51 -04:00
Родитель edae0c3358
Коммит 3c14f8b44f
1 изменённых файлов: 9 добавлений и 7 удалений

Просмотреть файл

@ -4599,13 +4599,15 @@ static void css_killed_ref_fn(struct percpu_ref *ref)
* kill_css - destroy a css * kill_css - destroy a css
* @css: css to destroy * @css: css to destroy
* *
* This function initiates destruction of @css by putting its base * This function initiates destruction of @css by removing cgroup interface
* reference. ->css_offline() will be invoked asynchronously once * files and putting its base reference. ->css_offline() will be invoked
* css_tryget() is guaranteed to fail and when the reference count reaches * asynchronously once css_tryget() is guaranteed to fail and when the
* zero, @css will be released. * reference count reaches zero, @css will be released.
*/ */
static void kill_css(struct cgroup_subsys_state *css) static void kill_css(struct cgroup_subsys_state *css)
{ {
cgroup_clear_dir(css->cgroup, 1 << css->ss->subsys_id);
/* /*
* Killing would put the base ref, but we need to keep it alive * Killing would put the base ref, but we need to keep it alive
* until after ->css_offline(). * until after ->css_offline().
@ -4703,10 +4705,10 @@ static int cgroup_destroy_locked(struct cgroup *cgrp)
cgroup_destroy_css_killed(cgrp); cgroup_destroy_css_killed(cgrp);
/* /*
* Clear and remove @cgrp directory. The removal puts the base ref * Clear the base files and remove @cgrp directory. The removal
* but we aren't quite done with @cgrp yet, so hold onto it. * puts the base ref but we aren't quite done with @cgrp yet, so
* hold onto it.
*/ */
cgroup_clear_dir(cgrp, cgrp->root->subsys_mask);
cgroup_addrm_files(cgrp, cgroup_base_files, false); cgroup_addrm_files(cgrp, cgroup_base_files, false);
dget(d); dget(d);
cgroup_d_remove_dir(d); cgroup_d_remove_dir(d);