Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 350331
b: refs/heads/master
c: 71b5707
h: refs/heads/master
i:
  350329: c78c5ac
  350327: 95100e7
v: v3
  • Loading branch information
Li Zefan authored and Tejun Heo committed Feb 18, 2013
1 parent 4b5e3fd commit acebbe9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9ed8a659703876a9fe96ab86d1b296c2f0084242
refs/heads/master: 71b5707e119653039e6e95213f00479668c79b75
8 changes: 8 additions & 0 deletions trunk/kernel/cgroup.c
Original file line number Diff line number Diff line change
Expand Up @@ -422,12 +422,20 @@ static void __put_css_set(struct css_set *cg, int taskexit)
struct cgroup *cgrp = link->cgrp;
list_del(&link->cg_link_list);
list_del(&link->cgrp_link_list);

/*
* We may not be holding cgroup_mutex, and if cgrp->count is
* dropped to 0 the cgroup can be destroyed at any time, hence
* rcu_read_lock is used to keep it alive.
*/
rcu_read_lock();
if (atomic_dec_and_test(&cgrp->count) &&
notify_on_release(cgrp)) {
if (taskexit)
set_bit(CGRP_RELEASABLE, &cgrp->flags);
check_for_release(cgrp);
}
rcu_read_unlock();

kfree(link);
}
Expand Down

0 comments on commit acebbe9

Please sign in to comment.