Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757025AbZAVCyl (ORCPT ); Wed, 21 Jan 2009 21:54:41 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755853AbZAVCyd (ORCPT ); Wed, 21 Jan 2009 21:54:33 -0500 Received: from fgwmail6.fujitsu.co.jp ([192.51.44.36]:59883 "EHLO fgwmail6.fujitsu.co.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755828AbZAVCyc (ORCPT ); Wed, 21 Jan 2009 21:54:32 -0500 Date: Thu, 22 Jan 2009 11:53:24 +0900 From: KAMEZAWA Hiroyuki To: David Rientjes Cc: Nikanth Karthikesan , containers@lists.linux-foundation.org, linux-kernel@vger.kernel.org, Arve =?UTF-8?B?SGrDuG5uZXbDpWc=?= , Evgeniy Polyakov , Andrew Morton , Chris Snook , Linus Torvalds , Paul Menage , Alan Cox Subject: Re: [RFC] [PATCH] Cgroup based OOM killer controller Message-Id: <20090122115324.b954c6a1.kamezawa.hiroyu@jp.fujitsu.com> In-Reply-To: References: <200901211638.23101.knikanth@suse.de> <20090121131739.GB4997@ioremap.net> <200901212054.34929.knikanth@suse.de> 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: 2809 Lines: 83 On Wed, 21 Jan 2009 12:49:50 -0800 (PST) David Rientjes wrote: > On Wed, 21 Jan 2009, Nikanth Karthikesan wrote: > > > This is a container group based approach to override the oom killer selection > > without losing all the benefits of the current oom killer heuristics and > > oom_adj interface. > > > > It adds a tunable oom.victim to the oom cgroup. The oom killer will kill the > > process using the usual badness value but only within the cgroup with the > > maximum value for oom.victim before killing any process from a cgroup with a > > lesser oom.victim number. Oom killing could be disabled by setting > > oom.victim=0. > > > > This doesn't help in memcg or cpuset constrained oom conditions, which > still go through select_bad_process(). > > If the oom.victim value is high for a specific cgroup and a memory > controller oom occurs in a disjoint cgroup, for example, it's possible to > needlessly kill tasks. Obviously that is up to the administrator to > configure, but may not be his or her desire for system-wide oom > conditions. > Hmm...after this patch, select_bad_process's filter to select process will be == 1. ->mm is NULL ? => don't select this 2. is init task ? => don't select this 3. is under specified memcg ? => don't select this 4. marked as MEMDIE ? => return -1. 5. PF_EXITING? => select this. 6. OOM_DISABLE ? => don't select this points = badness(p, uptime.tv_sec); 7. adjust point & select logic depends on OOM cgroup == Not looks good ;) > It may be preferred to kill tasks in a specific cgroup first when the > entire system is out of memory or kill tasks within a cgroup attached to a > memory controller when it is oom. > I agree here. Above filter logic should be == current_victim_level++; 1. p is under oom cgroup of victim_level > current_victim_level => don't select this. 2. ->mm is NULL ? => don't select this 3. is init task ? => don't select this 4. is under specified memcg ? => don't select this 5. marked as MEMDIE ? => return -1. 6. PF_EXITING? => select this. 7. OOM_DISABLE ? => don't select this points = badness(p, uptime.tv_sec) == But this will be too slow. I think do_each_thread() in select_bad_process() should be replaced with a routine like this, finally. == for_each_oom_cgroup_in_victim_value_order() { for_each_threads_in_oom_cgroup(oom) { select one bad thread. } if (selected_one_is_enough_bad ?) return selected_one; } == And this can be a help for "spped up OOM killer" problem. Thanks, -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/