From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752775Ab2JVKa1 (ORCPT ); Mon, 22 Oct 2012 06:30:27 -0400 Received: from cantor2.suse.de ([195.135.220.15]:34198 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751863Ab2JVKaZ (ORCPT ); Mon, 22 Oct 2012 06:30:25 -0400 Date: Mon, 22 Oct 2012 12:30:21 +0200 From: Michal Hocko To: Tejun Heo Cc: linux-mm@kvack.org, cgroups@vger.kernel.org, linux-kernel@vger.kernel.org, Li Zefan , Johannes Weiner , KAMEZAWA Hiroyuki , Balbir Singh Subject: Re: [PATCH 4/6] cgroups: forbid pre_destroy callback to fail Message-ID: <20121022103021.GA6367@dhcp22.suse.cz> References: <1350480648-10905-1-git-send-email-mhocko@suse.cz> <1350480648-10905-5-git-send-email-mhocko@suse.cz> <20121018224148.GR13370@google.com> <20121019133244.GE799@dhcp22.suse.cz> <20121019202405.GR13370@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20121019202405.GR13370@google.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri 19-10-12 13:24:05, Tejun Heo wrote: > Hello, Michal. > > On Fri, Oct 19, 2012 at 03:32:45PM +0200, Michal Hocko wrote: > > On Thu 18-10-12 15:41:48, Tejun Heo wrote: > > > Hello, Michal. > > > > > > On Wed, Oct 17, 2012 at 03:30:46PM +0200, Michal Hocko wrote: > > > > Now that mem_cgroup_pre_destroy callback doesn't fail finally we can > > > > safely move on and forbit all the callbacks to fail. The last missing > > > > piece is moving cgroup_call_pre_destroy after cgroup_clear_css_refs so > > > > that css_tryget fails so no new charges for the memcg can happen. > > > > The callbacks are also called from within cgroup_lock to guarantee that > > > > no new tasks show up. We could theoretically call them outside of the > > > > lock but then we have to move after CGRP_REMOVED flag is set. > > > > > > > > Signed-off-by: Michal Hocko > > > > > > So, the plan is to do something like the following once memcg is > > > ready. > > > > > > http://thread.gmane.org/gmane.linux.kernel.containers/22559/focus=75251 > > > > > > Note that the patch is broken in a couple places but it does show the > > > general direction. I'd prefer if patch #3 simply makes pre_destroy() > > > return 0 and drop __DEPRECATED_clear_css_refs from mem_cgroup_subsys. > > > > We can still fail inn #3 without this patch becasuse there are is no > > guarantee that a new task is attached to the group. And I wanted to keep > > memcg and generic cgroup parts separated. > > Yes, but all other controllers are broken that way too It's just hugetlb and memcg that have pre_destroy. > and the worst thing which will hapen is triggering WARN_ON_ONCE(). The patch does BUG_ON(ss->pre_destroy(cgrp)). I am not sure WARN_ON_ONCE is appropriate here because we would like to have it at least per controller warning. I do not see any reason why to make this more complicated but I am open to suggestions. > Let's note the failure in the commit and remove > DEPREDATED_clear_css_refs in the previous patch. Then, I can pull > from you, clean up pre_destroy mess and then you can pull back for > further cleanups. Well this will get complicated as there are dependencies between memcg parts (based on Andrew's tree) and your tree. My tree is not pullable as all the patches go via Andrew. I am not sure how to get out of this. There is only one cgroup patch so what about pushing all of this via Andrew and do the follow up cleanups once they get merged? We are not in hurry, are we? Anyway does it really make sense to drop DEPREDATED_clear_css_refs already in the previous patch when it is _not_ guaranteed that pre_destroy succeeds? -- Michal Hocko SUSE Labs