Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753136AbcCALN2 (ORCPT ); Tue, 1 Mar 2016 06:13:28 -0500 Received: from mx2.parallels.com ([199.115.105.18]:42641 "EHLO mx2.parallels.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751965AbcCALN0 (ORCPT ); Tue, 1 Mar 2016 06:13:26 -0500 From: Vladimir Davydov To: Andrew Morton CC: Tejun Heo , Johannes Weiner , Michal Hocko , , , Subject: [PATCH 2/2] cgroup: reset css on destruction Date: Tue, 1 Mar 2016 14:13:13 +0300 Message-ID: <92b11b89791412df49e73597b87912e8f143a3f7.1456830735.git.vdavydov@virtuozzo.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <69629961aefc48c021b895bb0c8297b56c11a577.1456830735.git.vdavydov@virtuozzo.com> References: <69629961aefc48c021b895bb0c8297b56c11a577.1456830735.git.vdavydov@virtuozzo.com> MIME-Version: 1.0 Content-Type: text/plain X-ClientProxiedBy: US-EXCH.sw.swsoft.com (10.255.249.47) To US-EXCH2.sw.swsoft.com (10.255.249.46) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1132 Lines: 30 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 Signed-off-by: Vladimir Davydov --- kernel/cgroup.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/cgroup.c b/kernel/cgroup.c index cc40463e7b69..2ef78912c996 100644 --- a/kernel/cgroup.c +++ b/kernel/cgroup.c @@ -5138,6 +5138,8 @@ static void kill_css(struct cgroup_subsys_state *css) * See seq_css() for details. */ css_clear_dir(css, NULL); + if (css->ss->css_reset) + css->ss->css_reset(css); /* * Killing would put the base ref, but we need to keep it alive -- 2.1.4