Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753895Ab0HZAo2 (ORCPT ); Wed, 25 Aug 2010 20:44:28 -0400 Received: from fgwmail5.fujitsu.co.jp ([192.51.44.35]:40836 "EHLO fgwmail5.fujitsu.co.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752201Ab0HZAoZ (ORCPT ); Wed, 25 Aug 2010 20:44:25 -0400 X-SecurityPolicyCheck-FJ: OK by FujitsuOutboundMailChecker v1.3.1 Date: Thu, 26 Aug 2010 09:39:23 +0900 From: KAMEZAWA Hiroyuki To: David Rientjes Cc: KOSAKI Motohiro , LKML , linux-mm , Andrew Morton , Oleg Nesterov , Minchan Kim Subject: Re: [PATCH 1/2][BUGFIX] oom: remove totalpage normalization from oom_badness() Message-Id: <20100826093923.d4ac29b6.kamezawa.hiroyu@jp.fujitsu.com> In-Reply-To: References: <20100825184001.F3EF.A69D9226@jp.fujitsu.com> Organization: FUJITSU Co. LTD. X-Mailer: Sylpheed 3.0.3 (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: 2944 Lines: 89 On Wed, 25 Aug 2010 03:25:25 -0700 (PDT) David Rientjes wrote: > > > 3) No reason to implement ABI breakage. > > old tuning parameter mean) > > oom-score = oom-base-score x 2^oom_adj > > Everybody knows this is useless beyond polarizing a task for kill or > making it immune. > > > new tuning parameter mean) > > oom-score = oom-base-score + oom_score_adj / (totalram + totalswap) > > This, on the other hand, has an actual unit (proportion of available > memory) that can be used to prioritize tasks amongst those competing for > the same set of shared resources and remains constant even when a task > changes cpuset, its memcg limit changes, etc. > > And your equation is wrong, it's > > ((rss + swap) / (available ram + swap)) + oom_score_adj > > which is completely different from what you think it is. > I'm now trying to write a userspace tool to calculate this, for me. Then, could you update documentation ? == 3.2 /proc//oom_score - Display current oom-killer score ------------------------------------------------------------- This file can be used to check the current score used by the oom-killer is for any given . Use it together with /proc//oom_adj to tune which process should be killed in an out-of-memory situation. == add a some documentation like: == (For system monitoring tool developpers, not for usual users.) oom_score calculation is implemnentation dependent and can be modified without any caution. But current logic is oom_score = ((proc's rss + proc's swap) / (available ram + swap)) + oom_score_adj proc's rss and swap can be obtained by /proc//statm and available ram + swap is dependent on the situation. If the system is totaly under oom, available ram == /proc/meminfo's MemTotal available swap == in most case == /proc/meminfo's SwapTotal When you use memory cgroup, When swap is limited, avaliable ram + swap == memory cgroup's memsw limit. When swap is unlimited, avaliable ram + swap = memory cgroup's memory limit + SwapTotal Then, please be careful that oom_score's order among tasks depends on the situation. Assume 2 proceses A, B which has oom_score_adj of 300 and 0 And A uses 200M, B uses 1G of memory under 4G system Under the 4G system. A's socre = (200M *1000)/4G + 300 = 350 B's score = (1G * 1000)/4G = 250. In the memory cgroup, it has 2G of resource. A's score = (200M * 1000)/2G + 300 = 400 B's socre = (1G * 1000)/2G = 500 You shoudn't depend on /proc//oom_score if you have to handle OOM under cgroups and cpuset. But the logic is simple. == If you don't want, I'll add text and a sample tool to cgroup/memory.txt. 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/