2021-04-28 02:30:52

by Chu,Kaiping

[permalink] [raw]
Subject: [PATCH v4] mm/compaction: let proactive compaction order configurable

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 <[email protected]>
Reported-by: kernel test robot <[email protected]>
---

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


2021-05-10 00:21:56

by Andrew Morton

[permalink] [raw]
Subject: Re: [PATCH v4] mm/compaction: let proactive compaction order configurable

On Wed, 28 Apr 2021 10:28:21 +0800 chukaiping <[email protected]> wrote:

> 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.

It would be great to do this automatically? It's quite simple to see
when memory is being handed out to hugetlbfs - so can we tune
proactive_compaction_order in response to this? That would be far
better than adding a manual tunable.

But from having read Khalid's comments, that does sound quite involved.
Is there some partial solution that we can come up with that will get
most people out of trouble?

That being said, this patch is super-super-simple so perhaps we should
just merge it just to get one person (and hopefully a few more) out of
trouble. But on the other hand, once we add a /proc tunable we must
maintain that tunable for ever (or at least a very long time) even if
the internal implementations change a lot.

2021-05-10 02:16:23

by Chu,Kaiping

[permalink] [raw]
Subject: 答复: [PATCH v4] mm/compaction: let proactive compaction order configurable



-----?ʼ?ԭ??-----
??????: Andrew Morton <[email protected]>
????ʱ??: 2021??5??10?? 8:18
?ռ???: Chu,Kaiping <[email protected]>
????: [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; Mel Gorman <[email protected]>; David Rientjes <[email protected]>
????: Re: [PATCH v4] mm/compaction: let proactive compaction order configurable

On Wed, 28 Apr 2021 10:28:21 +0800 chukaiping <[email protected]> wrote:

> > 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.

> It would be great to do this automatically? It's quite simple to see when memory is being handed out to hugetlbfs - so can we tune proactive_compaction_order in response to this? That would be far better than adding a manual tunable.

> But from having read Khalid's comments, that does sound quite involved.
> Is there some partial solution that we can come up with that will get most people out of trouble?

> That being said, this patch is super-super-simple so perhaps we should just merge it just to get one person (and hopefully a few more) out of trouble. But on the other hand, once we add a /proc tunable we must maintain that tunable for ever (or at least a very long time) even if the internal implementations change a lot.

Currently the fragment index of each zone is per order, there is no single fragment index for the whole system, so we can only use a user defined order for proactive compaction. I am keep thinking of the way to calculating the average fragment index of the system, but till now I doesn't think out it. I think that we can just use the proc file to configure the order manually, if we think out better solution in future, we can keep the proc file but remove the implementation internally.

2021-05-11 04:22:00

by David Rientjes

[permalink] [raw]
Subject: Re: [PATCH v4] mm/compaction: let proactive compaction order configurable

On Sun, 9 May 2021, Andrew Morton wrote:

> > 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.
>
> It would be great to do this automatically? It's quite simple to see
> when memory is being handed out to hugetlbfs - so can we tune
> proactive_compaction_order in response to this? That would be far
> better than adding a manual tunable.
>
> But from having read Khalid's comments, that does sound quite involved.
> Is there some partial solution that we can come up with that will get
> most people out of trouble?
>
> That being said, this patch is super-super-simple so perhaps we should
> just merge it just to get one person (and hopefully a few more) out of
> trouble. But on the other hand, once we add a /proc tunable we must
> maintain that tunable for ever (or at least a very long time) even if
> the internal implementations change a lot.
>

As mentioned in v3 of the patch, I'm not sure why this belongs in the
kernel at all.

I understand that the system is largely consumed by 1GB gigantic pages and
that a small percentage of memory is left for native pages. Thus,
fragmentation readily occurs and can affect large order allocations even
at the levels of order-3 or order-4.

So it seems like the ideal solution would be to monitor the fragmentation
index at the order you care about (the same order you would use for this
new tunable) and root userspace would manually trigger compaction when
necessary. When this was brought up, it was commented that explicitly
triggered compaction is too expensive to do all in one iteration. That's
fair enough, but shouldn't that be an improvement on explicitly triggered
compaction through sysfs to provide a shorter term (or weaker form) of
compaction rather than build additional policy decisions into the kernel?

If done this way, there would be a clear separation between mechanism and
policy and the kernel would not need to carry these sysctls to tune very
niche areas.

2021-05-28 17:43:32

by Vlastimil Babka

[permalink] [raw]
Subject: Re: [PATCH v4] mm/compaction: let proactive compaction order configurable

On 4/28/21 4:28 AM, chukaiping wrote:
> 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.

Could you be more concrete about "very frequently"? There's a proactive_defer
mechanism that should help here. Normally the proactive compaction attempt
happens each 500ms, but if it fails to improve the fragmentation score, it
defers for 32 seconds. So is 32 seconds still too frequent? Or the score does
improve thus defer doesn't happen, but the cost of that improvement is too high
compared to the amount of the improvement?

> 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 <[email protected]>
> Reported-by: kernel test robot <[email protected]>
> ---
>
> 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);
>

2021-06-01 01:17:11

by Chu,Kaiping

[permalink] [raw]
Subject: 答复: [PATCH v4] mm/compaction: let proacti ve compaction order configurable



> -----邮件原件-----
> 发件人: Vlastimil Babka <[email protected]>
> 发送时间: 2021年5月29日 1:42
> 收件人: Chu,Kaiping <[email protected]>; [email protected];
> [email protected]; [email protected]; [email protected];
> [email protected]; [email protected]; [email protected];
> [email protected]; [email protected]; [email protected]
> 抄送: [email protected]; [email protected];
> [email protected]
> 主题: Re: [PATCH v4] mm/compaction: let proactive compaction order
> configurable
>
> On 4/28/21 4:28 AM, chukaiping wrote:
> > 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.
>
> Could you be more concrete about "very frequently"? There's a
> proactive_defer mechanism that should help here. Normally the proactive
> compaction attempt happens each 500ms, but if it fails to improve the
> fragmentation score, it defers for 32 seconds. So is 32 seconds still too
> frequent? Or the score does improve thus defer doesn't happen, but the cost
> of that improvement is too high compared to the amount of the
> improvement?
I didn't measure the frequency accurately, I only judge it from code. The defer of 32 seconds is still very short to us, we want the proactive compaction running period to be hours.

>
> > 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 <[email protected]>
> > Reported-by: kernel test robot <[email protected]>
> > ---
> >
> > 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);
> >

2021-06-09 17:17:16

by David Hildenbrand

[permalink] [raw]
Subject: Re: [PATCH v4] mm/compaction: let proactive compaction order configurable

On 28.04.21 04:28, chukaiping wrote:
> 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 <[email protected]>
> Reported-by: kernel test robot <[email protected]>
> ---
>
> 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);
>

Hm, do we actually want to put an upper limit to the order a user can
supply?

--
Thanks,

David / dhildenb

2021-06-15 05:01:23

by Chu,Kaiping

[permalink] [raw]
Subject: 答复: [PATCH v4] mm/compaction: let proacti ve compaction order configurable



> -----邮件原件-----
> 发件人: David Hildenbrand <[email protected]>
> 发送时间: 2021年6月9日 18:45
> 收件人: Chu,Kaiping <[email protected]>; [email protected];
> [email protected]; [email protected]; [email protected];
> [email protected]; [email protected]; [email protected];
> [email protected]; [email protected];
> [email protected]; [email protected]
> 抄送: [email protected]; [email protected];
> [email protected]
> 主题: Re: [PATCH v4] mm/compaction: let proactive compaction order
> configurable
>
> On 28.04.21 04:28, chukaiping wrote:
> > 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 <[email protected]>
> > Reported-by: kernel test robot <[email protected]>
> > ---
> >
> > 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);
> >
>
> Hm, do we actually want to put an upper limit to the order a user can supply?
No,we should allow user to configure the order from 1 to MAX_ORDER - 1.
>
> --
> Thanks,
>
> David / dhildenb

2021-06-15 08:05:27

by David Hildenbrand

[permalink] [raw]
Subject: Re: 答复: [PATCH v4] mm/compaction: let proactive compaction order configurable

On 15.06.21 03:11, Chu,Kaiping wrote:
>
>
>> -----邮件原件-----
>> 发件人: David Hildenbrand <[email protected]>
>> 发送时间: 2021年6月9日 18:45
>> 收件人: Chu,Kaiping <[email protected]>; [email protected];
>> [email protected]; [email protected]; [email protected];
>> [email protected]; [email protected]; [email protected];
>> [email protected]; [email protected];
>> [email protected]; [email protected]
>> 抄送: [email protected]; [email protected];
>> [email protected]
>> 主题: Re: [PATCH v4] mm/compaction: let proactive compaction order
>> configurable
>>
>> On 28.04.21 04:28, chukaiping wrote:
>>> 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 <[email protected]>
>>> Reported-by: kernel test robot <[email protected]>
>>> ---
>>>
>>> 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);
>>>
>>
>> Hm, do we actually want to put an upper limit to the order a user can supply?
> No,we should allow user to configure the order from 1 to MAX_ORDER - 1.

Ah, I missed that we enforce an upper limit of "MAX_ORDER - 1" -- thanks.


--
Thanks,

David / dhildenb

2021-06-16 19:53:37

by Vlastimil Babka

[permalink] [raw]
Subject: Re: 答复: [PATCH v4] mm/compaction: let proactive compaction order configurable

On 6/1/21 3:15 AM, Chu,Kaiping wrote:
>
>
>> -----邮件原件-----
>> 发件人: Vlastimil Babka <[email protected]>
>> 发送时间: 2021年5月29日 1:42
>> 收件人: Chu,Kaiping <[email protected]>; [email protected];
>> [email protected]; [email protected]; [email protected];
>> [email protected]; [email protected]; [email protected];
>> [email protected]; [email protected]; [email protected]
>> 抄送: [email protected]; [email protected];
>> [email protected]
>> 主题: Re: [PATCH v4] mm/compaction: let proactive compaction order
>> configurable
>>
>> On 4/28/21 4:28 AM, chukaiping wrote:
>> > 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.
>>
>> Could you be more concrete about "very frequently"? There's a
>> proactive_defer mechanism that should help here. Normally the proactive
>> compaction attempt happens each 500ms, but if it fails to improve the
>> fragmentation score, it defers for 32 seconds. So is 32 seconds still too
>> frequent? Or the score does improve thus defer doesn't happen, but the cost
>> of that improvement is too high compared to the amount of the
>> improvement?
> I didn't measure the frequency accurately, I only judge it from code. The defer of 32 seconds is still very short to us, we want the proactive compaction running period to be hours.

Hours sounds like a lot, and maybe something that would indeed be easier to
accomplies with userspace proactive compaction triggering [1] than any carefully
tuned thresholds.

But with that low frequency, doesn't the kswapd+kcompactd non-proactive
compaction actually happen more frequently? That one should react to the order
that the allocation waking up kswapd requested, AFAIK.

[1] https://lore.kernel.org/linux-doc/[email protected]/

>
>>
>> > 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 <[email protected]>
>> > Reported-by: kernel test robot <[email protected]>
>> > ---
>> >
>> > 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);
>> >
>