Received: by 2002:a05:6a10:8c0a:0:0:0:0 with SMTP id go10csp4329142pxb; Tue, 26 Jan 2021 19:50:08 -0800 (PST) X-Google-Smtp-Source: ABdhPJwoC9irkxfsskPUgc2tc5ZT14r8TziW8EF2ZK3Tl1NMe5+KO3GdWsyZ16zwZ6plMpNkjomJ X-Received: by 2002:a17:906:fca:: with SMTP id c10mr5606661ejk.272.1611719408447; Tue, 26 Jan 2021 19:50:08 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1611719408; cv=none; d=google.com; s=arc-20160816; b=jxKhmAPA3oMUI2HLbXEuT+7oJuLOhscp5/m6PkD/csNb49yBTMptjLSwAU03tz13iJ j02dQQ1ZejeAQtH5gWGtQ2q0jzMt5xYhLzy7b7sfzDji1Ulu0Nff8GxM/nN4bQsT8vYr Z8Y+3leDjwBJePky9X8Hqi4p+xRVW55e0hHaNgqeQ9djFWCfPOtT44PMZn1iPXdxcei9 HVrEeyX3z+a0fv4nWjUCHHO7LmbPdzVmOJ/z8WpdkbixvuhYzmRNPZbBjKRPmQIEKCZ0 w8EsqMwxCuwZyLbY1/frvvjwYGbAn3Y7ieeM15XQqAvz2CsWM7Cp7INJ0SSyjszVKIq0 VY5w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:content-language :in-reply-to:mime-version:user-agent:date:message-id:from:references :cc:to:subject; bh=0I5dFkctOD1QP8NIzIeShn9FweKMjpt0gIclPwnWo/4=; b=Z9q150mULcsOfve+kdQhRZI+wL6HR9IE05znOW/RLX95vHdLzbd/HTNdmPPqUJrl8E x32w0mAylSpPWwr22DkUc/jA7uj21v0fmxoCFHza+wf6hngrqvZlXWBWroqm84dTZWII NCMSyijZLRRrV5YtjpwcHOWHIBKr6nUvczaGGJRuQObmhMQpGHesV0t4Sc7XcJzSB4XR iWVO7EIf6q0lZrhKAeZ3G5JkKtvl4YhbL9AP4B53S0vmsmRyKzTzYdJCJOcXjqUO8Hvr UTvr/3bCVLRxx6lwHoT8UlyDuMKB2hQ7edMBcCN7e+EkDlwLl6FG4C7KuANOCIrwk0dO lizg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id p5si349851edq.237.2021.01.26.19.49.44; Tue, 26 Jan 2021 19:50:08 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1733121AbhAZHh6 (ORCPT + 99 others); Tue, 26 Jan 2021 02:37:58 -0500 Received: from mx2.suse.de ([195.135.220.15]:35324 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730512AbhAYP5v (ORCPT ); Mon, 25 Jan 2021 10:57:51 -0500 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 4AA98AD6B; Mon, 25 Jan 2021 15:56:59 +0000 (UTC) Subject: Re: [PATCH V3] mm/compaction: correct deferral logic for proactive compaction To: Charan Teja Reddy , akpm@linux-foundation.org, mhocko@suse.com, khalid.aziz@oracle.com, ngupta@nitingupta.dev, vinmenon@codeaurora.org Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org References: <1610989938-31374-1-git-send-email-charante@codeaurora.org> From: Vlastimil Babka Message-ID: Date: Mon, 25 Jan 2021 16:56:58 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.6.1 MIME-Version: 1.0 In-Reply-To: <1610989938-31374-1-git-send-email-charante@codeaurora.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 1/18/21 6:12 PM, Charan Teja Reddy wrote: > should_proactive_compact_node() returns true when sum of the > weighted fragmentation score of all the zones in the node is greater > than the wmark_high of compaction, which then triggers the proactive > compaction that operates on the individual zones of the node. But > proactive compaction runs on the zone only when its weighted > fragmentation score is greater than wmark_low(=wmark_high - 10). > > This means that the sum of the weighted fragmentation scores of all the > zones can exceed the wmark_high but individual weighted fragmentation > zone scores can still be less than wmark_low which makes the unnecessary > trigger of the proactive compaction only to return doing nothing. > > Issue with the return of proactive compaction with out even trying is > its deferral. It is simply deferred for 1 << COMPACT_MAX_DEFER_SHIFT if > the scores across the proactive compaction is same, thinking that > compaction didn't make any progress but in reality it didn't even try. > With the delay between successive retries for proactive compaction is > 500msec, it can result into the deferral for ~30sec with out even trying > the proactive compaction. > > Test scenario is that: compaction_proactiveness=50 thus the wmark_low = > 50 and wmark_high = 60. System have 2 zones(Normal and Movable) with > sizes 5GB and 6GB respectively. After opening some apps on the android, > the weighted fragmentation scores of these zones are 47 and 49 > respectively. Since the sum of these fragmentation scores are above the > wmark_high which triggers the proactive compaction and there since the > individual zones weighted fragmentation scores are below wmark_low, it > returns without trying the proactive compaction. As a result the > weighted fragmentation scores of the zones are still 47 and 49 which > makes the existing logic to defer the compaction thinking that > noprogress is made across the compaction. > > Fix this by checking just zone fragmentation score, not the weighted, in > __compact_finished() and use the zones weighted fragmentation score in > fragmentation_score_node(). In the test case above, If the weighted > average of is above wmark_high, then individual score (not adjusted) of > atleast one zone has to be above wmark_high. Thus it avoids the > unnecessary trigger and deferrals of the proactive compaction. > > Fix-suggested-by: Vlastimil Babka > Signed-off-by: Charan Teja Reddy > --- > > Changes in V3: Addressed suggestions from Vlastimil > > Changes in V2: https://lore.kernel.org/patchwork/patch/1366862/ > > Changes in V1: https://lore.kernel.org/patchwork/patch/1364646/ Andrew, I've noticed that v1 is still in mmotm [1] together with v3, which doesn't make sense together, please drop [1]. Thanks [1] https://www.ozlabs.org/~akpm/mmots/broken-out/mm-compaction-return-proper-state-in-should_proactive_compact_node.patch > mm/compaction.c | 20 ++++++++++++++------ > 1 file changed, 14 insertions(+), 6 deletions(-) > > diff --git a/mm/compaction.c b/mm/compaction.c > index e5acb97..ccddb3a 100644 > --- a/mm/compaction.c > +++ b/mm/compaction.c > @@ -1925,20 +1925,28 @@ static bool kswapd_is_running(pg_data_t *pgdat) > > /* > * A zone's fragmentation score is the external fragmentation wrt to the > - * COMPACTION_HPAGE_ORDER scaled by the zone's size. It returns a value > - * in the range [0, 100]. > + * COMPACTION_HPAGE_ORDER. It returns a value in the range [0, 100]. > + */ > +static unsigned int fragmentation_score_zone(struct zone *zone) > +{ > + return extfrag_for_order(zone, COMPACTION_HPAGE_ORDER); > +} > + > +/* > + * A weighted zone's fragmentation score is the external fragmentation > + * wrt to the COMPACTION_HPAGE_ORDER scaled by the zone's size. It > + * returns a value in the range [0, 100]. > * > * The scaling factor ensures that proactive compaction focuses on larger > * zones like ZONE_NORMAL, rather than smaller, specialized zones like > * ZONE_DMA32. For smaller zones, the score value remains close to zero, > * and thus never exceeds the high threshold for proactive compaction. > */ > -static unsigned int fragmentation_score_zone(struct zone *zone) > +static unsigned int fragmentation_score_zone_weighted(struct zone *zone) > { > unsigned long score; > > - score = zone->present_pages * > - extfrag_for_order(zone, COMPACTION_HPAGE_ORDER); > + score = zone->present_pages * fragmentation_score_zone(zone); > return div64_ul(score, zone->zone_pgdat->node_present_pages + 1); > } > > @@ -1958,7 +1966,7 @@ static unsigned int fragmentation_score_node(pg_data_t *pgdat) > struct zone *zone; > > zone = &pgdat->node_zones[zoneid]; > - score += fragmentation_score_zone(zone); > + score += fragmentation_score_zone_weighted(zone); > } > > return score; >