]> git.baikalelectronics.ru Git - kernel.git/commit
cgroup: reset css on destruction
authorVladimir Davydov <vdavydov@virtuozzo.com>
Tue, 1 Mar 2016 16:56:30 +0000 (19:56 +0300)
committerTejun Heo <tj@kernel.org>
Tue, 1 Mar 2016 17:06:02 +0000 (12:06 -0500)
commite5565c6713f752dc6c6d2291bc1292c26d4fe2c6
treea2201788753596940ae690604fb82c594b518ba1
parenta327b4ebf4ceec23b8c11d09b81d3a3c05dd5b3b
cgroup: reset css on destruction

An associated css can be around for quite a while after a cgroup
directory has been removed. In general, it makes sense to reset it to
defaults so as not to worry about any remnants. For instance, memory
cgroup needs to reset memory.low, otherwise pages charged to a dead
cgroup might never get reclaimed. There's ->css_reset callback, which
would fit perfectly for the purpose. Currently, it's only called when a
subsystem is disabled in the unified hierarchy and there are other
subsystems dependant on it. Let's call it on css destruction as well.

Suggested-by: Johannes Weiner <hannes@cmpxchg.org>
Signed-off-by: Vladimir Davydov <vdavydov@virtuozzo.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
kernel/cgroup.c