1 // SPDX-License-Identifier: GPL-2.0
3 * DAMON-based page reclamation
5 * Author: SeongJae Park <sj@kernel.org>
8 #define pr_fmt(fmt) "damon-reclaim: " fmt
10 #include <linux/damon.h>
11 #include <linux/kstrtox.h>
12 #include <linux/module.h>
14 #include "modules-common.h"
16 #ifdef MODULE_PARAM_PREFIX
17 #undef MODULE_PARAM_PREFIX
19 #define MODULE_PARAM_PREFIX "damon_reclaim."
22 * Enable or disable DAMON_RECLAIM.
24 * You can enable DAMON_RCLAIM by setting the value of this parameter as ``Y``.
25 * Setting it as ``N`` disables DAMON_RECLAIM. Note that DAMON_RECLAIM could
26 * do no real monitoring and reclamation due to the watermarks-based activation
27 * condition. Refer to below descriptions for the watermarks parameter for
30 static bool enabled __read_mostly
;
33 * Make DAMON_RECLAIM reads the input parameters again, except ``enabled``.
35 * Input parameters that updated while DAMON_RECLAIM is running are not applied
36 * by default. Once this parameter is set as ``Y``, DAMON_RECLAIM reads values
37 * of parametrs except ``enabled`` again. Once the re-reading is done, this
38 * parameter is set as ``N``. If invalid parameters are found while the
39 * re-reading, DAMON_RECLAIM will be disabled.
41 static bool commit_inputs __read_mostly
;
42 module_param(commit_inputs
, bool, 0600);
45 * Time threshold for cold memory regions identification in microseconds.
47 * If a memory region is not accessed for this or longer time, DAMON_RECLAIM
48 * identifies the region as cold, and reclaims. 120 seconds by default.
50 static unsigned long min_age __read_mostly
= 120000000;
51 module_param(min_age
, ulong
, 0600);
53 static struct damos_quota damon_reclaim_quota
= {
54 /* use up to 10 ms time, reclaim up to 128 MiB per 1 sec by default */
56 .sz
= 128 * 1024 * 1024,
57 .reset_interval
= 1000,
58 /* Within the quota, page out older regions first. */
60 .weight_nr_accesses
= 0,
63 DEFINE_DAMON_MODULES_DAMOS_QUOTAS(damon_reclaim_quota
);
66 * Desired level of memory pressure-stall time in microseconds.
68 * While keeping the caps that set by other quotas, DAMON_RECLAIM automatically
69 * increases and decreases the effective level of the quota aiming this level of
70 * memory pressure is incurred. System-wide ``some`` memory PSI in microseconds
71 * per quota reset interval (``quota_reset_interval_ms``) is collected and
72 * compared to this value to see if the aim is satisfied. Value zero means
73 * disabling this auto-tuning feature.
75 * Disabled by default.
77 static unsigned long quota_mem_pressure_us __read_mostly
;
78 module_param(quota_mem_pressure_us
, ulong
, 0600);
81 * User-specifiable feedback for auto-tuning of the effective quota.
83 * While keeping the caps that set by other quotas, DAMON_RECLAIM automatically
84 * increases and decreases the effective level of the quota aiming receiving this
85 * feedback of value ``10,000`` from the user. DAMON_RECLAIM assumes the feedback
86 * value and the quota are positively proportional. Value zero means disabling
87 * this auto-tuning feature.
89 * Disabled by default.
92 static unsigned long quota_autotune_feedback __read_mostly
;
93 module_param(quota_autotune_feedback
, ulong
, 0600);
95 static struct damos_watermarks damon_reclaim_wmarks
= {
96 .metric
= DAMOS_WMARK_FREE_MEM_RATE
,
97 .interval
= 5000000, /* 5 seconds */
98 .high
= 500, /* 50 percent */
99 .mid
= 400, /* 40 percent */
100 .low
= 200, /* 20 percent */
102 DEFINE_DAMON_MODULES_WMARKS_PARAMS(damon_reclaim_wmarks
);
104 static struct damon_attrs damon_reclaim_mon_attrs
= {
105 .sample_interval
= 5000, /* 5 ms */
106 .aggr_interval
= 100000, /* 100 ms */
107 .ops_update_interval
= 0,
108 .min_nr_regions
= 10,
109 .max_nr_regions
= 1000,
111 DEFINE_DAMON_MODULES_MON_ATTRS_PARAMS(damon_reclaim_mon_attrs
);
114 * Start of the target memory region in physical address.
116 * The start physical address of memory region that DAMON_RECLAIM will do work
117 * against. By default, biggest System RAM is used as the region.
119 static unsigned long monitor_region_start __read_mostly
;
120 module_param(monitor_region_start
, ulong
, 0600);
123 * End of the target memory region in physical address.
125 * The end physical address of memory region that DAMON_RECLAIM will do work
126 * against. By default, biggest System RAM is used as the region.
128 static unsigned long monitor_region_end __read_mostly
;
129 module_param(monitor_region_end
, ulong
, 0600);
132 * Skip anonymous pages reclamation.
134 * If this parameter is set as ``Y``, DAMON_RECLAIM does not reclaim anonymous
135 * pages. By default, ``N``.
137 static bool skip_anon __read_mostly
;
138 module_param(skip_anon
, bool, 0600);
141 * PID of the DAMON thread
143 * If DAMON_RECLAIM is enabled, this becomes the PID of the worker thread.
146 static int kdamond_pid __read_mostly
= -1;
147 module_param(kdamond_pid
, int, 0400);
149 static struct damos_stat damon_reclaim_stat
;
150 DEFINE_DAMON_MODULES_DAMOS_STATS_PARAMS(damon_reclaim_stat
,
151 reclaim_tried_regions
, reclaimed_regions
, quota_exceeds
);
153 static struct damon_ctx
*ctx
;
154 static struct damon_target
*target
;
156 static struct damos
*damon_reclaim_new_scheme(void)
158 struct damos_access_pattern pattern
= {
159 /* Find regions having PAGE_SIZE or larger size */
160 .min_sz_region
= PAGE_SIZE
,
161 .max_sz_region
= ULONG_MAX
,
162 /* and not accessed at all */
163 .min_nr_accesses
= 0,
164 .max_nr_accesses
= 0,
165 /* for min_age or more micro-seconds */
166 .min_age_region
= min_age
/
167 damon_reclaim_mon_attrs
.aggr_interval
,
168 .max_age_region
= UINT_MAX
,
171 return damon_new_scheme(
173 /* page out those, as soon as found */
175 /* for each aggregation interval */
177 /* under the quota. */
178 &damon_reclaim_quota
,
179 /* (De)activate this according to the watermarks. */
180 &damon_reclaim_wmarks
,
184 static int damon_reclaim_apply_parameters(void)
186 struct damon_ctx
*param_ctx
;
187 struct damon_target
*param_target
;
188 struct damos
*scheme
;
189 struct damos_quota_goal
*goal
;
190 struct damos_filter
*filter
;
193 err
= damon_modules_new_paddr_ctx_target(¶m_ctx
, ¶m_target
);
197 err
= damon_set_attrs(ctx
, &damon_reclaim_mon_attrs
);
202 scheme
= damon_reclaim_new_scheme();
205 damon_set_schemes(ctx
, &scheme
, 1);
207 if (quota_mem_pressure_us
) {
208 goal
= damos_new_quota_goal(DAMOS_QUOTA_SOME_MEM_PSI_US
,
209 quota_mem_pressure_us
);
212 damos_add_quota_goal(&scheme
->quota
, goal
);
215 if (quota_autotune_feedback
) {
216 goal
= damos_new_quota_goal(DAMOS_QUOTA_USER_INPUT
, 10000);
219 goal
->current_value
= quota_autotune_feedback
;
220 damos_add_quota_goal(&scheme
->quota
, goal
);
224 filter
= damos_new_filter(DAMOS_FILTER_TYPE_ANON
, true);
227 damos_add_filter(scheme
, filter
);
230 err
= damon_set_region_biggest_system_ram_default(param_target
,
231 &monitor_region_start
,
232 &monitor_region_end
);
235 err
= damon_commit_ctx(ctx
, param_ctx
);
237 damon_destroy_ctx(param_ctx
);
241 static int damon_reclaim_turn(bool on
)
246 err
= damon_stop(&ctx
, 1);
252 err
= damon_reclaim_apply_parameters();
256 err
= damon_start(&ctx
, 1, true);
259 kdamond_pid
= ctx
->kdamond
->pid
;
263 static int damon_reclaim_enabled_store(const char *val
,
264 const struct kernel_param
*kp
)
266 bool is_enabled
= enabled
;
270 err
= kstrtobool(val
, &enable
);
274 if (is_enabled
== enable
)
277 /* Called before init function. The function will handle this. */
281 err
= damon_reclaim_turn(enable
);
290 static const struct kernel_param_ops enabled_param_ops
= {
291 .set
= damon_reclaim_enabled_store
,
292 .get
= param_get_bool
,
295 module_param_cb(enabled
, &enabled_param_ops
, &enabled
, 0600);
296 MODULE_PARM_DESC(enabled
,
297 "Enable or disable DAMON_RECLAIM (default: disabled)");
299 static int damon_reclaim_handle_commit_inputs(void)
306 err
= damon_reclaim_apply_parameters();
307 commit_inputs
= false;
311 static int damon_reclaim_after_aggregation(struct damon_ctx
*c
)
315 /* update the stats parameter */
316 damon_for_each_scheme(s
, c
)
317 damon_reclaim_stat
= s
->stat
;
319 return damon_reclaim_handle_commit_inputs();
322 static int damon_reclaim_after_wmarks_check(struct damon_ctx
*c
)
324 return damon_reclaim_handle_commit_inputs();
327 static int __init
damon_reclaim_init(void)
329 int err
= damon_modules_new_paddr_ctx_target(&ctx
, &target
);
334 ctx
->callback
.after_wmarks_check
= damon_reclaim_after_wmarks_check
;
335 ctx
->callback
.after_aggregation
= damon_reclaim_after_aggregation
;
337 /* 'enabled' has set before this function, probably via command line */
339 err
= damon_reclaim_turn(true);
344 module_init(damon_reclaim_init
);