From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753294AbYKBF5Z (ORCPT ); Sun, 2 Nov 2008 01:57:25 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752171AbYKBF5Q (ORCPT ); Sun, 2 Nov 2008 01:57:16 -0400 Received: from fgwmail6.fujitsu.co.jp ([192.51.44.36]:57397 "EHLO fgwmail6.fujitsu.co.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752169AbYKBF5Q (ORCPT ); Sun, 2 Nov 2008 01:57:16 -0400 Date: Sun, 2 Nov 2008 14:56:41 +0900 From: KAMEZAWA Hiroyuki To: balbir@linux.vnet.ibm.com Cc: linux-mm@kvack.org, YAMAMOTO Takashi , Paul Menage , lizf@cn.fujitsu.com, linux-kernel@vger.kernel.org, Nick Piggin , David Rientjes , Pavel Emelianov , Dhaval Giani , Andrew Morton Subject: Re: [mm] [PATCH 2/4] Memory cgroup resource counters for hierarchy Message-Id: <20081102145641.a15f5bb3.kamezawa.hiroyu@jp.fujitsu.com> In-Reply-To: <490D3F72.9040408@linux.vnet.ibm.com> References: <20081101184812.2575.68112.sendpatchset@balbir-laptop> <20081101184837.2575.98059.sendpatchset@balbir-laptop> <20081102144237.59ab5f03.kamezawa.hiroyu@jp.fujitsu.com> <490D3F72.9040408@linux.vnet.ibm.com> Organization: FUJITSU Co. LTD. X-Mailer: Sylpheed 2.5.0 (GTK+ 2.10.14; i686-pc-mingw32) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, 02 Nov 2008 11:19:38 +0530 Balbir Singh wrote: > KAMEZAWA Hiroyuki wrote: > > On Sun, 02 Nov 2008 00:18:37 +0530 > > Balbir Singh wrote: > > > >> Add support for building hierarchies in resource counters. Cgroups allows us > >> to build a deep hierarchy, but we currently don't link the resource counters > >> belonging to the memory controller control groups, which are linked in > >> cgroup hiearchy. This patch provides the infrastructure for resource counters > >> that have the same hiearchy as their cgroup counter parts. > >> > >> These set of patches are based on the resource counter hiearchy patches posted > >> by Pavel Emelianov. > >> > >> NOTE: Building hiearchies is expensive, deeper hierarchies imply charging > >> the all the way up to the root. It is known that hiearchies are expensive, > >> so the user needs to be careful and aware of the trade-offs before creating > >> very deep ones. > >> > > ...isn't it better to add "root_lock" to res_counter rather than taking > > all levels of lock one by one ? > > > > spin_lock(&res_counter->hierarchy_root->lock); > > do all charge/uncharge to hierarchy > > spin_unlock(&res_counter->hierarchy_root->lock); > > > > Hmm ? > > > > Good thought process, but that affects and adds code complexity for the case > when hierarchy is enabled/disabled. It is also inefficient, since all charges > will now contend on root lock, in the current process, it is step by step, the > contention only occurs on common parts of the hierarchy (root being the best case). > Above code's contention level is not different from "only root no children" case. Just inside-lock is heavier. Thanks, -Kame