From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755418Ab0EaGfi (ORCPT ); Mon, 31 May 2010 02:35:38 -0400 Received: from fgwmail5.fujitsu.co.jp ([192.51.44.35]:57195 "EHLO fgwmail5.fujitsu.co.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751828Ab0EaGfg (ORCPT ); Mon, 31 May 2010 02:35:36 -0400 X-SecurityPolicyCheck-FJ: OK by FujitsuOutboundMailChecker v1.3.1 From: KOSAKI Motohiro To: Minchan Kim Subject: Re: [RFC] oom-kill: give the dying task a higher priority Cc: kosaki.motohiro@jp.fujitsu.com, "Luis Claudio R. Goncalves" , balbir@linux.vnet.ibm.com, Oleg Nesterov , linux-kernel@vger.kernel.org, linux-mm@kvack.org, Thomas Gleixner , Peter Zijlstra , David Rientjes , Mel Gorman , williams@redhat.com In-Reply-To: References: <20100529125136.62CA.A69D9226@jp.fujitsu.com> Message-Id: <20100531152424.739D.A69D9226@jp.fujitsu.com> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-Mailer: Becky! ver. 2.50.07 [ja] Date: Mon, 31 May 2010 15:35:30 +0900 (JST) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi > Hi, Kosaki. > > On Sat, May 29, 2010 at 12:59 PM, KOSAKI Motohiro > wrote: > > Hi > > > >> oom-killer: give the dying task rt priority (v3) > >> > >> Give the dying task RT priority so that it can be scheduled quickly and die, > >> freeing needed memory. > >> > >> Signed-off-by: Luis Claudio R. Gonçalves > > > > Almostly acceptable to me. but I have two requests, > > > > - need 1) force_sig() 2)sched_setscheduler() order as Oleg mentioned > > - don't boost priority if it's in mem_cgroup_out_of_memory() > > Why do you want to not boost priority if it's path of memcontrol? > > If it's path of memcontrol and CONFIG_CGROUP_MEM_RES_CTLR is enabled, > mem_cgroup_out_of_memory will select victim task in memcg. > So __oom_kill_task's target task would be in memcg, I think. Yep. But priority boost naturally makes CPU starvation for out of the group processes. It seems to break cgroup's isolation concept. > As you and memcg guys don't complain this, I would be missing something. > Could you explain it? :) So, My points are, 1) Usually priority boost is wrong idea. It have various side effect, but system wide OOM is one of exception. In such case, all tasks aren't runnable, then, the downside is acceptable. 2) memcg have OOM notification mechanism. If the admin need priority boost, they can do it by their OOM-daemon. Thanks.