From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-15.4 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9F73EC433E0 for ; Fri, 12 Feb 2021 17:38:16 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id 440AC64D9C for ; Fri, 12 Feb 2021 17:38:16 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 440AC64D9C Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=owner-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix) id E0A828D0078; Fri, 12 Feb 2021 12:38:15 -0500 (EST) Received: by kanga.kvack.org (Postfix, from userid 40) id D6C008D0060; Fri, 12 Feb 2021 12:38:15 -0500 (EST) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id C5CB58D0078; Fri, 12 Feb 2021 12:38:15 -0500 (EST) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0074.hostedemail.com [216.40.44.74]) by kanga.kvack.org (Postfix) with ESMTP id AD50D8D0060 for ; Fri, 12 Feb 2021 12:38:15 -0500 (EST) Received: from smtpin24.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay04.hostedemail.com (Postfix) with ESMTP id 7DA69365A for ; Fri, 12 Feb 2021 17:38:15 +0000 (UTC) X-FDA: 77810324550.24.sack42_450dd6527623 Received: from filter.hostedemail.com (10.5.16.251.rfc1918.com [10.5.16.251]) by smtpin24.hostedemail.com (Postfix) with ESMTP id 5F6931A4A0 for ; Fri, 12 Feb 2021 17:38:15 +0000 (UTC) X-HE-Tag: sack42_450dd6527623 X-Filterd-Recvd-Size: 3539 Received: from mx2.suse.de (mx2.suse.de [195.135.220.15]) by imf42.hostedemail.com (Postfix) with ESMTP for ; Fri, 12 Feb 2021 17:38:14 +0000 (UTC) X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id 7C549AD19; Fri, 12 Feb 2021 17:38:13 +0000 (UTC) Subject: Re: [PATCH V2] mm: compaction: update the COMPACT[STALL|FAIL] events properly To: Charan Teja Reddy , akpm@linux-foundation.org, rientjes@google.com, linux-mm@kvack.org Cc: vinmenon@codeaurora.org, linux-kernel@vger.kernel.org References: <1613151184-21213-1-git-send-email-charante@codeaurora.org> From: Vlastimil Babka Message-ID: <9d12dc04-9cf0-8dd1-5fb3-9a5f8e34d23f@suse.cz> Date: Fri, 12 Feb 2021 18:38:13 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.0 MIME-Version: 1.0 In-Reply-To: <1613151184-21213-1-git-send-email-charante@codeaurora.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: On 2/12/21 6:33 PM, Charan Teja Reddy wrote: > By definition, COMPACT[STALL|FAIL] events needs to be counted when there > is 'At least in one zone compaction wasn't deferred or skipped from the > direct compaction'. And when compaction is skipped or deferred, > COMPACT_SKIPPED will be returned but it will still go and update these > compaction events which is wrong in the sense that COMPACT[STALL|FAIL] > is counted without even trying the compaction. > > Correct this by skipping the counting of these events when > COMPACT_SKIPPED is returned for compaction. This indirectly also avoid > the unnecessary try into the get_page_from_freelist() when compaction is > not even tried. > > There is a corner case where compaction is skipped but still count > COMPACTSTALL event, which is that IRQ came and freed the page and the > same is captured in capture_control. > > Signed-off-by: Charan Teja Reddy Acked-by: Vlastimil Babka Thanks! > --- > > changes in V1: https://lore.kernel.org/patchwork/patch/1373665/ > > mm/compaction.c | 8 ++++++++ > mm/page_alloc.c | 2 ++ > 2 files changed, 10 insertions(+) > > diff --git a/mm/compaction.c b/mm/compaction.c > index 190ccda..104ebef 100644 > --- a/mm/compaction.c > +++ b/mm/compaction.c > @@ -2487,6 +2487,14 @@ static enum compact_result compact_zone_order(struct zone *zone, int order, > */ > WRITE_ONCE(current->capture_control, NULL); > *capture = READ_ONCE(capc.page); > + /* > + * Technically, it is also possible that compaction is skipped but > + * the page is still captured out of luck(IRQ came and freed the page). > + * Returning COMPACT_SUCCESS in such cases helps in properly accounting > + * the COMPACT[STALL|FAIL] when compaction is skipped. > + */ > + if (*capture) > + ret = COMPACT_SUCCESS; > > return ret; > } > diff --git a/mm/page_alloc.c b/mm/page_alloc.c > index 519a60d..531f244 100644 > --- a/mm/page_alloc.c > +++ b/mm/page_alloc.c > @@ -4152,6 +4152,8 @@ __alloc_pages_direct_compact(gfp_t gfp_mask, unsigned int order, > memalloc_noreclaim_restore(noreclaim_flag); > psi_memstall_leave(&pflags); > > + if (*compact_result == COMPACT_SKIPPED) > + return NULL; > /* > * At least in one zone compaction wasn't deferred or skipped, so let's > * count a compaction stall >