From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933005Ab0JSDFW (ORCPT ); Mon, 18 Oct 2010 23:05:22 -0400 Received: from mga03.intel.com ([143.182.124.21]:26501 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932297Ab0JSDFT (ORCPT ); Mon, 18 Oct 2010 23:05:19 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.57,348,1283756400"; d="scan'208";a="337645440" Date: Tue, 19 Oct 2010 11:05:16 +0800 From: Wu Fengguang To: Minchan Kim Cc: KOSAKI Motohiro , Andrew Morton , Neil Brown , Rik van Riel , KAMEZAWA Hiroyuki , "linux-kernel@vger.kernel.org" , "linux-mm@kvack.org" , "Li, Shaohua" Subject: Re: Deadlock possibly caused by too_many_isolated. Message-ID: <20101019030515.GB11924@localhost> References: <20101019093142.509d6947@notabene> <20101018154137.90f5325f.akpm@linux-foundation.org> <20101019095144.A1B0.A69D9226@jp.fujitsu.com> <20101019023537.GB8310@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Oct 19, 2010 at 10:52:47AM +0800, Minchan Kim wrote: > Hi Wu, > > On Tue, Oct 19, 2010 at 11:35 AM, Wu Fengguang wrote: > >> @@ -2054,10 +2069,11 @@ rebalance: > >>                 goto got_pg; > >> > >>         /* > >> -        * If we failed to make any progress reclaiming, then we are > >> -        * running out of options and have to consider going OOM > >> +        * If we failed to make any progress reclaiming and there aren't > >> +        * many parallel reclaiming, then we are unning out of options and > >> +        * have to consider going OOM > >>          */ > >> -       if (!did_some_progress) { > >> +       if (!did_some_progress && !too_many_isolated_zone(preferred_zone)) { > >>                 if ((gfp_mask & __GFP_FS) && !(gfp_mask & __GFP_NORETRY)) { > >>                         if (oom_killer_disabled) > >>                                 goto nopage; > > > > This is simply wrong. > > > > It disabled this block for 99% system because there won't be enough > > tasks to make (!too_many_isolated_zone == true). As a result the LRU > > will be scanned like mad and no task get OOMed when it should be. > > If !too_many_isolated_zone is false, it means there are already many > direct reclaiming tasks. > So they could exit reclaim path and !too_many_isolated_zone will be true. > What am I missing now? Ah sorry, my brain get short circuited.. but I still feel uneasy with this change. It's not fixing the root cause and won't prevent too many LRU pages be isolated. It's too late to test too_many_isolated_zone() after direct reclaim returns (after sleeping for a long time). Thanks, Fengguang