Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755369AbbLQIjw (ORCPT ); Thu, 17 Dec 2015 03:39:52 -0500 Received: from relay.parallels.com ([195.214.232.42]:32809 "EHLO relay.parallels.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752751AbbLQIju (ORCPT ); Thu, 17 Dec 2015 03:39:50 -0500 Date: Thu, 17 Dec 2015 11:39:31 +0300 From: Vladimir Davydov To: Johannes Weiner CC: Andrew Morton , Michal Hocko , , , , Subject: Re: [PATCH] mm: memcontrol: clean up alloc, online, offline, free functions fix Message-ID: <20151217083931.GM28521@esperanza> References: <1450312460-27582-1-git-send-email-hannes@cmpxchg.org> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <1450312460-27582-1-git-send-email-hannes@cmpxchg.org> X-ClientProxiedBy: US-EXCH2.sw.swsoft.com (10.255.249.46) To MSK-EXCH1.sw.swsoft.com (10.67.48.55) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2067 Lines: 39 On Wed, Dec 16, 2015 at 07:34:20PM -0500, Johannes Weiner wrote: > Fixlets based on review feedback from Vladimir: > > 1. The memcg_create_mutex is to stabilize a cgroup's hereditary > settings that are not allowed to change once the cgroup has > children: kmem accounting and hierarchy mode. However, the cleanup > patch moves inheritance of these settings from onlining time to > allocation time, before the new child will show up in the parent's > list of children, and this opens a race window where the parent can > change a setting that has been passed on to a new child already. > > That being said, this rule for kmem and hierarchy mode is somewhat > gratuitous: there is no strong reason why these configurations > shouldn't exist, and the outcome of a race is not harmful. It's > also unlikely that somebody will even trigger this race because we > don't expect anybody to flip-flop either settings while creating > child groups. So instead of readding complexity to close an > unlikely race window that doesn't do any harm, simply remove the > now pointless mutex as a follow-up cleanup. > > 2. Kmem initialization consists of several steps that are undone in > both css_offline() and css_free(). However, if css allocation fails > later on then css_offline() is never called and we don't properly > free the kmem state. Let css_free() detect this and call kmem > offlining itself. > > 3. Children in !use_hierarchy mode would inherit the OOM killer > setting from their physical parent rather than the logical parent, > rootmemcg. This is silly, but no reason to change the semantics as > part of this cleanup patch, so restore it. > > Signed-off-by: Johannes Weiner Acked-by: Vladimir Davydov -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/