Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752001AbcCARG4 (ORCPT ); Tue, 1 Mar 2016 12:06:56 -0500 Received: from mail-yw0-f193.google.com ([209.85.161.193]:33658 "EHLO mail-yw0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750889AbcCARGz (ORCPT ); Tue, 1 Mar 2016 12:06:55 -0500 Date: Tue, 1 Mar 2016 12:06:52 -0500 From: Tejun Heo To: Vladimir Davydov Cc: Andrew Morton , Johannes Weiner , Michal Hocko , cgroups@vger.kernel.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 2/2] cgroup: reset css on destruction Message-ID: <20160301170652.GG3965@htj.duckdns.org> References: <69629961aefc48c021b895bb0c8297b56c11a577.1456830735.git.vdavydov@virtuozzo.com> <92b11b89791412df49e73597b87912e8f143a3f7.1456830735.git.vdavydov@virtuozzo.com> <20160301163018.GE3965@htj.duckdns.org> <20160301165630.GB2426@esperanza> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160301165630.GB2426@esperanza> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 901 Lines: 20 On Tue, Mar 01, 2016 at 07:56:30PM +0300, Vladimir Davydov wrote: > From: Vladimir Davydov > Subject: [PATCH] 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 > Signed-off-by: Vladimir Davydov Applied to cgroup/for-4.6. Thanks. -- tejun