From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752259AbbJNIES (ORCPT ); Wed, 14 Oct 2015 04:04:18 -0400 Received: from mail113-249.mail.alibaba.com ([205.204.113.249]:58474 "EHLO us-alimail-mta2.hst.scl.en.alidc.net" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751334AbbJNIEK (ORCPT ); Wed, 14 Oct 2015 04:04:10 -0400 X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R151e4;FP=0|-1|-1|-1|0|-1|-1|-1;HT=e02c03288;MF=hillf.zj@alibaba-inc.com;NM=1;PH=DS;RN=7;SR=0; Reply-To: "Hillf Danton" From: "Hillf Danton" To: "'Tetsuo Handa'" Cc: "Linus Torvalds" , "Michal Hocko" , "David Rientjes" , "Johannes Weiner" , "linux-kernel" , Subject: Re: Silent hang up caused by pages being not scanned? Date: Wed, 14 Oct 2015 16:03:15 +0800 Message-ID: <00bc01d10656$c7f19ef0$57d4dcd0$@alibaba-inc.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Outlook 14.0 Thread-Index: AdEGVdUpphjhykSGTny192HGXcn18g== Content-Language: zh-cn Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > > > > In particular, I think that you'll find that you will have to change > > the heuristics in __alloc_pages_slowpath() where we currently do > > > > if ((did_some_progress && order <= PAGE_ALLOC_COSTLY_ORDER) || .. > > > > when the "did_some_progress" logic changes that radically. > > > > Yes. But we can't simply do > > if (order <= PAGE_ALLOC_COSTLY_ORDER || .. > > because we won't be able to call out_of_memory(), can we? > Can you please try a simplified retry logic? thanks Hillf --- a/mm/page_alloc.c Wed Oct 14 14:45:28 2015 +++ b/mm/page_alloc.c Wed Oct 14 15:43:31 2015 @@ -3154,8 +3154,7 @@ retry: /* Keep reclaiming pages as long as there is reasonable progress */ pages_reclaimed += did_some_progress; - if ((did_some_progress && order <= PAGE_ALLOC_COSTLY_ORDER) || - ((gfp_mask & __GFP_REPEAT) && pages_reclaimed < (1 << order))) { + if (did_some_progress) { /* Wait for some write requests to complete then retry */ wait_iff_congested(ac->preferred_zone, BLK_RW_ASYNC, HZ/50); goto retry; --