Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757691AbZAHE6m (ORCPT ); Wed, 7 Jan 2009 23:58:42 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752919AbZAHE6d (ORCPT ); Wed, 7 Jan 2009 23:58:33 -0500 Received: from fgwmail6.fujitsu.co.jp ([192.51.44.36]:40338 "EHLO fgwmail6.fujitsu.co.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752629AbZAHE6c (ORCPT ); Wed, 7 Jan 2009 23:58:32 -0500 Date: Thu, 8 Jan 2009 13:57:28 +0900 From: KAMEZAWA Hiroyuki To: balbir@linux.vnet.ibm.com Cc: Andrew Morton , Sudhir Kumar , YAMAMOTO Takashi , Paul Menage , lizf@cn.fujitsu.com, linux-kernel@vger.kernel.org, linux-mm@kvack.org, David Rientjes , Pavel Emelianov Subject: Re: [RFC][PATCH 3/4] Memory controller soft limit organize cgroups Message-Id: <20090108135728.cdb20fe2.kamezawa.hiroyu@jp.fujitsu.com> In-Reply-To: <20090108044108.GG7294@balbir.in.ibm.com> References: <20090107184110.18062.41459.sendpatchset@localhost.localdomain> <20090107184128.18062.96016.sendpatchset@localhost.localdomain> <20090108101148.96e688f4.kamezawa.hiroyu@jp.fujitsu.com> <20090108042558.GC7294@balbir.in.ibm.com> <20090108132855.77d3d3d4.kamezawa.hiroyu@jp.fujitsu.com> <20090108044108.GG7294@balbir.in.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 Content-Length: 2061 Lines: 55 On Thu, 8 Jan 2009 10:11:08 +0530 Balbir Singh wrote: > * KAMEZAWA Hiroyuki [2009-01-08 13:28:55]: > > > On Thu, 8 Jan 2009 09:55:58 +0530 > > Balbir Singh wrote: > > > > > * KAMEZAWA Hiroyuki [2009-01-08 10:11:48]: > > > > Hmm, Could you clarify following ? > > > > > > > > - Usage of memory at insertsion and usage of memory at reclaim is different. > > > > So, this *sorted* order by RB-tree isn't the best order in general. > > > > > > True, but we frequently update the tree at an interval of HZ/4. > > > Updating at every page fault sounded like an overkill and building the > > > entire tree at reclaim is an overkill too. > > > > > "sort" is not necessary. > > If this feature is implemented as background daemon, > > just select the worst one at each iteration is enough. > > OK, definitely an alternative worth considering, but the trade-off is > lazy building (your suggestion), which involves actively seeing the > usage of all cgroups (and if they are large, O(c), c is number of > cgroups can be quite a bit) versus building the tree as and when the > fault occurs and controlled by some interval. > I never think there will be "thousands" of memcg. O(c) is not so bad if it's on background. But usual cost of adding res_counter_soft_limit_excess(&mem->res); is big... This maintainance cost of tree is always necessary even while there are no memory shortage. BTW, - mutex is bad. Can you use mutex while __GFP_WAIT is unset ? - what happens when a big uncharge() occurs and no new charge() happens ? please add + mem = mem_cgroup_get_largest_soft_limit_exceeding_node(); if ( mem is still over soft limit ) do reclaim.... at least. -Kame -- 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/