From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751736Ab2FRMqN (ORCPT ); Mon, 18 Jun 2012 08:46:13 -0400 Received: from mx2.parallels.com ([64.131.90.16]:60705 "EHLO mx2.parallels.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751086Ab2FRMqM (ORCPT ); Mon, 18 Jun 2012 08:46:12 -0400 Message-ID: <4FDF227B.3080601@parallels.com> Date: Mon, 18 Jun 2012 16:43:39 +0400 From: Glauber Costa User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:13.0) Gecko/20120605 Thunderbird/13.0 MIME-Version: 1.0 To: Kamezawa Hiroyuki CC: , Pekka Enberg , Cristoph Lameter , David Rientjes , , , , Frederic Weisbecker , Suleiman Souhlal , Pekka Enberg , Michal Hocko , Johannes Weiner Subject: Re: [PATCH v4 23/25] memcg: propagate kmem limiting information to children References: <1340015298-14133-1-git-send-email-glommer@parallels.com> <1340015298-14133-24-git-send-email-glommer@parallels.com> <4FDF20ED.4090401@jp.fujitsu.com> In-Reply-To: <4FDF20ED.4090401@jp.fujitsu.com> Content-Type: text/plain; charset="ISO-2022-JP" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 06/18/2012 04:37 PM, Kamezawa Hiroyuki wrote: > (2012/06/18 19:28), Glauber Costa wrote: >> The current memcg slab cache management fails to present satisfatory hierarchical >> behavior in the following scenario: >> >> -> /cgroups/memory/A/B/C >> >> * kmem limit set at A >> * A and B empty taskwise >> * bash in C does find / >> >> Because kmem_accounted is a boolean that was not set for C, no accounting >> would be done. This is, however, not what we expect. >> > > Hmm....do we need this new routines even while we have mem_cgroup_iter() ? > > Doesn't this work ? > > struct mem_cgroup { > ..... > bool kmem_accounted_this; > atomic_t kmem_accounted; > .... > } > > at set limit > > ....set_limit(memcg) { > > if (newly accounted) { > mem_cgroup_iter() { > atomic_inc(&iter->kmem_accounted) > } > } else { > mem_cgroup_iter() { > atomic_dec(&iter->kmem_accounted); > } > } > > > hm ? Then, you can see kmem is accounted or not by atomic_read(&memcg->kmem_accounted); > Accounted by itself / parent is still useful, and I see no reason to use an atomic + bool if we can use a pair of bits. As for the routine, I guess mem_cgroup_iter will work... It does a lot more than I need, but for the sake of using what's already in there, I can switch to it with no problems.