Received: by 2002:a05:6a10:a841:0:0:0:0 with SMTP id d1csp5040800pxy; Tue, 27 Apr 2021 19:30:52 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxO3a2iz0L5CGNtLGLH65HKNjSvcw+nrsUKUwiUkDq5/nqIpN3Bd9W9is7H+1YRWFhFEsF/ X-Received: by 2002:a63:ff52:: with SMTP id s18mr24847950pgk.163.1619577052150; Tue, 27 Apr 2021 19:30:52 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1619577052; cv=none; d=google.com; s=arc-20160816; b=ZzKER0MSeqWvh7JztLtgT54IXV3nrffZnjgpYGmTkn//QMgKh5mrjsr1CU0GAtxQNV GsKMR2daMaBlVonBHNgkWIG5Rk7uVy74LiODnkZO+vReRMvf7+Ao0zxy+XN4xamg9iSO pR62GEKdJBw2DkkgNC08oLg9HNZdZE0eukNnWRyHTQizUrbTADuyG9dvuE5PieHm3iS8 p71wqypNL+J0jLL3tQx0jj0IawcD6CGHA8Bce/cXdzHB7WLBqDrK3loFS0eVBzx/mENB aR+jdwieGw4I1Cg+rNRoBvcxzb/IjBVYIp7LSfVN95ZoJFXvTKLZjx+577EejGn4HivH YrqA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:message-id:date:subject:cc:to:from; bh=VUmkX/e5GVgJKS1sPWUvpO/FO2+RlfPRgmNfeICo5vg=; b=d/ZAPMToENmz36WnhOtJX1QNCsuxOzW+kCg5JfwUR3BElDWfNHCIYuaao1XkUTP5W4 pGiH7FPJNWiGAPGB4wzyZ7hLIRj742sysq5Dz+5hey+xY8sxFmSf3yOrn3UyW44lIinW ZbJvQi45+i078x1do/lHJtvaM0MLjxkYcmtmH+5DcI6sb9JVSBe0VJwxJB5HR+VG8CP+ uaJqyY7bawfJ0Q+1RadsJubVugb9K4MuagO357kaL4kJgf+Er/jkhamPCg5xsJQFhiJv mFrHAjTXL0a0hq3eh0dFcc2Bmo94qivRc0aS8Rt4yejdWEwJiUuXs3H7HrKZv1SEyHi4 DGpA== 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 s29si2175797pgm.396.2021.04.27.19.30.39; Tue, 27 Apr 2021 19:30:52 -0700 (PDT) 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 S237111AbhD1C3f (ORCPT + 99 others); Tue, 27 Apr 2021 22:29:35 -0400 Received: from [119.249.100.105] ([119.249.100.105]:14841 "EHLO mx425.baidu.com" rhost-flags-FAIL-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S235901AbhD1C3e (ORCPT ); Tue, 27 Apr 2021 22:29:34 -0400 Received: from unknown.domain.tld (bjhw-sys-rpm015653cc5.bjhw.baidu.com [10.227.53.39]) by mx425.baidu.com (Postfix) with ESMTP id 528BB12580FBF; Wed, 28 Apr 2021 10:28:21 +0800 (CST) From: chukaiping To: mcgrof@kernel.org, keescook@chromium.org, yzaikin@google.com, akpm@linux-foundation.org, vbabka@suse.cz, nigupta@nvidia.com, bhe@redhat.com, khalid.aziz@oracle.com, iamjoonsoo.kim@lge.com, mateusznosek0@gmail.com, sh_def@163.com Cc: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-mm@kvack.org Subject: [PATCH v4] mm/compaction: let proactive compaction order configurable Date: Wed, 28 Apr 2021 10:28:21 +0800 Message-Id: <1619576901-9531-1-git-send-email-chukaiping@baidu.com> X-Mailer: git-send-email 1.7.1 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Currently the proactive compaction order is fixed to COMPACTION_HPAGE_ORDER(9), it's OK in most machines with lots of normal 4KB memory, but it's too high for the machines with small normal memory, for example the machines with most memory configured as 1GB hugetlbfs huge pages. In these machines the max order of free pages is often below 9, and it's always below 9 even with hard compaction. This will lead to proactive compaction be triggered very frequently. In these machines we only care about order of 3 or 4. This patch export the oder to proc and let it configurable by user, and the default value is still COMPACTION_HPAGE_ORDER. Signed-off-by: chukaiping Reported-by: kernel test robot --- Changes in v4: - change the sysctl file name to proactive_compation_order Changes in v3: - change the min value of compaction_order to 1 because the fragmentation index of order 0 is always 0 - move the definition of max_buddy_zone into #ifdef CONFIG_COMPACTION Changes in v2: - fix the compile error in ia64 and powerpc, move the initialization of sysctl_compaction_order to kcompactd_init because COMPACTION_HPAGE_ORDER is a variable in these architectures - change the hard coded max order number from 10 to MAX_ORDER - 1 include/linux/compaction.h | 1 + kernel/sysctl.c | 10 ++++++++++ mm/compaction.c | 12 ++++++++---- 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/include/linux/compaction.h b/include/linux/compaction.h index ed4070e..a0226b1 100644 --- a/include/linux/compaction.h +++ b/include/linux/compaction.h @@ -83,6 +83,7 @@ static inline unsigned long compact_gap(unsigned int order) #ifdef CONFIG_COMPACTION extern int sysctl_compact_memory; extern unsigned int sysctl_compaction_proactiveness; +extern unsigned int sysctl_proactive_compaction_order; extern int sysctl_compaction_handler(struct ctl_table *table, int write, void *buffer, size_t *length, loff_t *ppos); extern int sysctl_extfrag_threshold; diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 62fbd09..ed9012e 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -196,6 +196,7 @@ enum sysctl_writes_mode { #endif /* CONFIG_SCHED_DEBUG */ #ifdef CONFIG_COMPACTION +static int max_buddy_zone = MAX_ORDER - 1; static int min_extfrag_threshold; static int max_extfrag_threshold = 1000; #endif @@ -2871,6 +2872,15 @@ int proc_do_static_key(struct ctl_table *table, int write, .extra2 = &one_hundred, }, { + .procname = "proactive_compation_order", + .data = &sysctl_proactive_compaction_order, + .maxlen = sizeof(sysctl_proactive_compaction_order), + .mode = 0644, + .proc_handler = proc_dointvec_minmax, + .extra1 = SYSCTL_ONE, + .extra2 = &max_buddy_zone, + }, + { .procname = "extfrag_threshold", .data = &sysctl_extfrag_threshold, .maxlen = sizeof(int), diff --git a/mm/compaction.c b/mm/compaction.c index e04f447..171436e 100644 --- a/mm/compaction.c +++ b/mm/compaction.c @@ -1925,17 +1925,18 @@ static bool kswapd_is_running(pg_data_t *pgdat) /* * A zone's fragmentation score is the external fragmentation wrt to the - * COMPACTION_HPAGE_ORDER. It returns a value in the range [0, 100]. + * sysctl_proactive_compaction_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); + return extfrag_for_order(zone, sysctl_proactive_compaction_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]. + * wrt to the sysctl_proactive_compaction_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 @@ -2666,6 +2667,7 @@ static void compact_nodes(void) * background. It takes values in the range [0, 100]. */ unsigned int __read_mostly sysctl_compaction_proactiveness = 20; +unsigned int __read_mostly sysctl_proactive_compaction_order; /* * This is the entry point for compacting all nodes via @@ -2958,6 +2960,8 @@ static int __init kcompactd_init(void) int nid; int ret; + sysctl_proactive_compaction_order = COMPACTION_HPAGE_ORDER; + ret = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN, "mm/compaction:online", kcompactd_cpu_online, NULL); -- 1.7.1