mm/damon/schemes: account scheme actions that successfully applied
[linux-block.git] / include / linux / damon.h
CommitLineData
2224d848
SP
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * DAMON api
4 *
5 * Author: SeongJae Park <sjpark@amazon.de>
6 */
7
8#ifndef _DAMON_H_
9#define _DAMON_H_
10
11#include <linux/mutex.h>
12#include <linux/time64.h>
13#include <linux/types.h>
9b2a38d6 14#include <linux/random.h>
2224d848 15
b9a6ac4e
SP
16/* Minimal region size. Every damon_region is aligned by this. */
17#define DAMON_MIN_REGION PAGE_SIZE
38683e00
SP
18/* Max priority score for DAMON-based operation schemes */
19#define DAMOS_MAX_SCORE (99)
b9a6ac4e 20
9b2a38d6 21/* Get a random number in [l, r) */
234d6873
XH
22static inline unsigned long damon_rand(unsigned long l, unsigned long r)
23{
24 return l + prandom_u32_max(r - l);
25}
9b2a38d6 26
f23b8eee
SP
27/**
28 * struct damon_addr_range - Represents an address region of [@start, @end).
29 * @start: Start address of the region (inclusive).
30 * @end: End address of the region (exclusive).
31 */
32struct damon_addr_range {
33 unsigned long start;
34 unsigned long end;
35};
36
37/**
38 * struct damon_region - Represents a monitoring target region.
39 * @ar: The address range of the region.
40 * @sampling_addr: Address of the sample for the next access check.
41 * @nr_accesses: Access frequency of this region.
42 * @list: List head for siblings.
fda504fa
SP
43 * @age: Age of this region.
44 *
45 * @age is initially zero, increased for each aggregation interval, and reset
46 * to zero again if the access frequency is significantly changed. If two
47 * regions are merged into a new region, both @nr_accesses and @age of the new
48 * region are set as region size-weighted average of those of the two regions.
f23b8eee
SP
49 */
50struct damon_region {
51 struct damon_addr_range ar;
52 unsigned long sampling_addr;
53 unsigned int nr_accesses;
54 struct list_head list;
fda504fa
SP
55
56 unsigned int age;
57/* private: Internal value for age calculation. */
58 unsigned int last_nr_accesses;
f23b8eee
SP
59};
60
61/**
62 * struct damon_target - Represents a monitoring target.
63 * @id: Unique identifier for this target.
b9a6ac4e 64 * @nr_regions: Number of monitoring target regions of this target.
f23b8eee
SP
65 * @regions_list: Head of the monitoring target regions of this target.
66 * @list: List head for siblings.
67 *
68 * Each monitoring context could have multiple targets. For example, a context
69 * for virtual memory address spaces could have multiple target processes. The
70 * @id of each target should be unique among the targets of the context. For
71 * example, in the virtual address monitoring context, it could be a pidfd or
72 * an address of an mm_struct.
73 */
74struct damon_target {
75 unsigned long id;
b9a6ac4e 76 unsigned int nr_regions;
f23b8eee
SP
77 struct list_head regions_list;
78 struct list_head list;
79};
80
1f366e42
SP
81/**
82 * enum damos_action - Represents an action of a Data Access Monitoring-based
83 * Operation Scheme.
84 *
85 * @DAMOS_WILLNEED: Call ``madvise()`` for the region with MADV_WILLNEED.
86 * @DAMOS_COLD: Call ``madvise()`` for the region with MADV_COLD.
87 * @DAMOS_PAGEOUT: Call ``madvise()`` for the region with MADV_PAGEOUT.
88 * @DAMOS_HUGEPAGE: Call ``madvise()`` for the region with MADV_HUGEPAGE.
89 * @DAMOS_NOHUGEPAGE: Call ``madvise()`` for the region with MADV_NOHUGEPAGE.
2f0b548c 90 * @DAMOS_STAT: Do nothing but count the stat.
1f366e42
SP
91 */
92enum damos_action {
93 DAMOS_WILLNEED,
94 DAMOS_COLD,
95 DAMOS_PAGEOUT,
96 DAMOS_HUGEPAGE,
97 DAMOS_NOHUGEPAGE,
2f0b548c 98 DAMOS_STAT, /* Do nothing but only record the stat */
1f366e42
SP
99};
100
2b8a248d
SP
101/**
102 * struct damos_quota - Controls the aggressiveness of the given scheme.
1cd24303 103 * @ms: Maximum milliseconds that the scheme can use.
2b8a248d
SP
104 * @sz: Maximum bytes of memory that the action can be applied.
105 * @reset_interval: Charge reset interval in milliseconds.
106 *
38683e00
SP
107 * @weight_sz: Weight of the region's size for prioritization.
108 * @weight_nr_accesses: Weight of the region's nr_accesses for prioritization.
109 * @weight_age: Weight of the region's age for prioritization.
110 *
2b8a248d 111 * To avoid consuming too much CPU time or IO resources for applying the
1cd24303
SP
112 * &struct damos->action to large memory, DAMON allows users to set time and/or
113 * size quotas. The quotas can be set by writing non-zero values to &ms and
114 * &sz, respectively. If the time quota is set, DAMON tries to use only up to
115 * &ms milliseconds within &reset_interval for applying the action. If the
116 * size quota is set, DAMON tries to apply the action only up to &sz bytes
117 * within &reset_interval.
118 *
119 * Internally, the time quota is transformed to a size quota using estimated
120 * throughput of the scheme's action. DAMON then compares it against &sz and
121 * uses smaller one as the effective quota.
38683e00
SP
122 *
123 * For selecting regions within the quota, DAMON prioritizes current scheme's
124 * target memory regions using the &struct damon_primitive->get_scheme_score.
125 * You could customize the prioritization logic by setting &weight_sz,
126 * &weight_nr_accesses, and &weight_age, because monitoring primitives are
127 * encouraged to respect those.
2b8a248d
SP
128 */
129struct damos_quota {
1cd24303 130 unsigned long ms;
2b8a248d
SP
131 unsigned long sz;
132 unsigned long reset_interval;
133
38683e00
SP
134 unsigned int weight_sz;
135 unsigned int weight_nr_accesses;
136 unsigned int weight_age;
137
1cd24303
SP
138/* private: */
139 /* For throughput estimation */
140 unsigned long total_charged_sz;
141 unsigned long total_charged_ns;
142
143 unsigned long esz; /* Effective size quota in bytes */
144
145 /* For charging the quota */
2b8a248d
SP
146 unsigned long charged_sz;
147 unsigned long charged_from;
50585192
SP
148 struct damon_target *charge_target_from;
149 unsigned long charge_addr_from;
38683e00
SP
150
151 /* For prioritization */
152 unsigned long histogram[DAMOS_MAX_SCORE + 1];
153 unsigned int min_score;
2b8a248d
SP
154};
155
ee801b7d
SP
156/**
157 * enum damos_wmark_metric - Represents the watermark metric.
158 *
159 * @DAMOS_WMARK_NONE: Ignore the watermarks of the given scheme.
160 * @DAMOS_WMARK_FREE_MEM_RATE: Free memory rate of the system in [0,1000].
161 */
162enum damos_wmark_metric {
163 DAMOS_WMARK_NONE,
164 DAMOS_WMARK_FREE_MEM_RATE,
165};
166
167/**
168 * struct damos_watermarks - Controls when a given scheme should be activated.
169 * @metric: Metric for the watermarks.
170 * @interval: Watermarks check time interval in microseconds.
171 * @high: High watermark.
172 * @mid: Middle watermark.
173 * @low: Low watermark.
174 *
175 * If &metric is &DAMOS_WMARK_NONE, the scheme is always active. Being active
176 * means DAMON does monitoring and applying the action of the scheme to
177 * appropriate memory regions. Else, DAMON checks &metric of the system for at
178 * least every &interval microseconds and works as below.
179 *
180 * If &metric is higher than &high, the scheme is inactivated. If &metric is
181 * between &mid and &low, the scheme is activated. If &metric is lower than
182 * &low, the scheme is inactivated.
183 */
184struct damos_watermarks {
185 enum damos_wmark_metric metric;
186 unsigned long interval;
187 unsigned long high;
188 unsigned long mid;
189 unsigned long low;
190
191/* private: */
192 bool activated;
193};
194
0e92c2ee
SP
195/**
196 * struct damos_stat - Statistics on a given scheme.
197 * @nr_tried: Total number of regions that the scheme is tried to be applied.
198 * @sz_tried: Total size of regions that the scheme is tried to be applied.
199 * @nr_applied: Total number of regions that the scheme is applied.
200 * @sz_applied: Total size of regions that the scheme is applied.
201 */
202struct damos_stat {
203 unsigned long nr_tried;
204 unsigned long sz_tried;
205 unsigned long nr_applied;
206 unsigned long sz_applied;
207};
208
1f366e42
SP
209/**
210 * struct damos - Represents a Data Access Monitoring-based Operation Scheme.
211 * @min_sz_region: Minimum size of target regions.
212 * @max_sz_region: Maximum size of target regions.
213 * @min_nr_accesses: Minimum ``->nr_accesses`` of target regions.
214 * @max_nr_accesses: Maximum ``->nr_accesses`` of target regions.
215 * @min_age_region: Minimum age of target regions.
216 * @max_age_region: Maximum age of target regions.
217 * @action: &damo_action to be applied to the target regions.
2b8a248d 218 * @quota: Control the aggressiveness of this scheme.
ee801b7d 219 * @wmarks: Watermarks for automated (in)activation of this scheme.
0e92c2ee 220 * @stat: Statistics of this scheme.
1f366e42
SP
221 * @list: List head for siblings.
222 *
2b8a248d
SP
223 * For each aggregation interval, DAMON finds regions which fit in the
224 * condition (&min_sz_region, &max_sz_region, &min_nr_accesses,
225 * &max_nr_accesses, &min_age_region, &max_age_region) and applies &action to
226 * those. To avoid consuming too much CPU time or IO resources for the
227 * &action, &quota is used.
228 *
ee801b7d
SP
229 * To do the work only when needed, schemes can be activated for specific
230 * system situations using &wmarks. If all schemes that registered to the
231 * monitoring context are inactive, DAMON stops monitoring either, and just
232 * repeatedly checks the watermarks.
233 *
234 * If all schemes that registered to a &struct damon_ctx are inactive, DAMON
235 * stops monitoring and just repeatedly checks the watermarks.
236 *
2b8a248d
SP
237 * After applying the &action to each region, &stat_count and &stat_sz is
238 * updated to reflect the number of regions and total size of regions that the
239 * &action is applied.
1f366e42
SP
240 */
241struct damos {
242 unsigned long min_sz_region;
243 unsigned long max_sz_region;
244 unsigned int min_nr_accesses;
245 unsigned int max_nr_accesses;
246 unsigned int min_age_region;
247 unsigned int max_age_region;
248 enum damos_action action;
2b8a248d 249 struct damos_quota quota;
ee801b7d 250 struct damos_watermarks wmarks;
0e92c2ee 251 struct damos_stat stat;
1f366e42
SP
252 struct list_head list;
253};
254
2224d848
SP
255struct damon_ctx;
256
257/**
d2f272b3 258 * struct damon_primitive - Monitoring primitives for given use cases.
2224d848
SP
259 *
260 * @init: Initialize primitive-internal data structures.
261 * @update: Update primitive-internal data structures.
262 * @prepare_access_checks: Prepare next access check of target regions.
263 * @check_accesses: Check the accesses to target regions.
264 * @reset_aggregated: Reset aggregated accesses monitoring results.
38683e00 265 * @get_scheme_score: Get the score of a region for a scheme.
1f366e42 266 * @apply_scheme: Apply a DAMON-based operation scheme.
2224d848
SP
267 * @target_valid: Determine if the target is valid.
268 * @cleanup: Clean up the context.
269 *
270 * DAMON can be extended for various address spaces and usages. For this,
271 * users should register the low level primitives for their target address
272 * space and usecase via the &damon_ctx.primitive. Then, the monitoring thread
273 * (&damon_ctx.kdamond) calls @init and @prepare_access_checks before starting
274 * the monitoring, @update after each &damon_ctx.primitive_update_interval, and
275 * @check_accesses, @target_valid and @prepare_access_checks after each
276 * &damon_ctx.sample_interval. Finally, @reset_aggregated is called after each
277 * &damon_ctx.aggr_interval.
278 *
279 * @init should initialize primitive-internal data structures. For example,
280 * this could be used to construct proper monitoring target regions and link
f23b8eee 281 * those to @damon_ctx.adaptive_targets.
2224d848
SP
282 * @update should update the primitive-internal data structures. For example,
283 * this could be used to update monitoring target regions for current status.
284 * @prepare_access_checks should manipulate the monitoring regions to be
285 * prepared for the next access check.
286 * @check_accesses should check the accesses to each region that made after the
287 * last preparation and update the number of observed accesses of each region.
b9a6ac4e
SP
288 * It should also return max number of observed accesses that made as a result
289 * of its update. The value will be used for regions adjustment threshold.
2224d848
SP
290 * @reset_aggregated should reset the access monitoring results that aggregated
291 * by @check_accesses.
38683e00
SP
292 * @get_scheme_score should return the priority score of a region for a scheme
293 * as an integer in [0, &DAMOS_MAX_SCORE].
1f366e42
SP
294 * @apply_scheme is called from @kdamond when a region for user provided
295 * DAMON-based operation scheme is found. It should apply the scheme's action
0e92c2ee
SP
296 * to the region and return bytes of the region that the action is successfully
297 * applied.
2224d848
SP
298 * @target_valid should check whether the target is still valid for the
299 * monitoring.
300 * @cleanup is called from @kdamond just before its termination.
301 */
302struct damon_primitive {
303 void (*init)(struct damon_ctx *context);
304 void (*update)(struct damon_ctx *context);
305 void (*prepare_access_checks)(struct damon_ctx *context);
b9a6ac4e 306 unsigned int (*check_accesses)(struct damon_ctx *context);
2224d848 307 void (*reset_aggregated)(struct damon_ctx *context);
38683e00
SP
308 int (*get_scheme_score)(struct damon_ctx *context,
309 struct damon_target *t, struct damon_region *r,
310 struct damos *scheme);
0e92c2ee
SP
311 unsigned long (*apply_scheme)(struct damon_ctx *context,
312 struct damon_target *t, struct damon_region *r,
313 struct damos *scheme);
2224d848
SP
314 bool (*target_valid)(void *target);
315 void (*cleanup)(struct damon_ctx *context);
316};
317
d2f272b3
SP
318/**
319 * struct damon_callback - Monitoring events notification callbacks.
2224d848
SP
320 *
321 * @before_start: Called before starting the monitoring.
322 * @after_sampling: Called after each sampling.
323 * @after_aggregation: Called after each aggregation.
324 * @before_terminate: Called before terminating the monitoring.
325 * @private: User private data.
326 *
327 * The monitoring thread (&damon_ctx.kdamond) calls @before_start and
328 * @before_terminate just before starting and finishing the monitoring,
329 * respectively. Therefore, those are good places for installing and cleaning
330 * @private.
331 *
332 * The monitoring thread calls @after_sampling and @after_aggregation for each
333 * of the sampling intervals and aggregation intervals, respectively.
334 * Therefore, users can safely access the monitoring results without additional
335 * protection. For the reason, users are recommended to use these callback for
336 * the accesses to the results.
337 *
338 * If any callback returns non-zero, monitoring stops.
339 */
340struct damon_callback {
341 void *private;
342
343 int (*before_start)(struct damon_ctx *context);
344 int (*after_sampling)(struct damon_ctx *context);
345 int (*after_aggregation)(struct damon_ctx *context);
658f9ae7 346 void (*before_terminate)(struct damon_ctx *context);
2224d848
SP
347};
348
349/**
350 * struct damon_ctx - Represents a context for each monitoring. This is the
351 * main interface that allows users to set the attributes and get the results
352 * of the monitoring.
353 *
354 * @sample_interval: The time between access samplings.
355 * @aggr_interval: The time between monitor results aggregations.
356 * @primitive_update_interval: The time between monitoring primitive updates.
357 *
358 * For each @sample_interval, DAMON checks whether each region is accessed or
359 * not. It aggregates and keeps the access information (number of accesses to
360 * each region) for @aggr_interval time. DAMON also checks whether the target
361 * memory regions need update (e.g., by ``mmap()`` calls from the application,
362 * in case of virtual memory monitoring) and applies the changes for each
363 * @primitive_update_interval. All time intervals are in micro-seconds.
364 * Please refer to &struct damon_primitive and &struct damon_callback for more
365 * detail.
366 *
367 * @kdamond: Kernel thread who does the monitoring.
368 * @kdamond_stop: Notifies whether kdamond should stop.
369 * @kdamond_lock: Mutex for the synchronizations with @kdamond.
370 *
371 * For each monitoring context, one kernel thread for the monitoring is
372 * created. The pointer to the thread is stored in @kdamond.
373 *
374 * Once started, the monitoring thread runs until explicitly required to be
375 * terminated or every monitoring target is invalid. The validity of the
376 * targets is checked via the &damon_primitive.target_valid of @primitive. The
377 * termination can also be explicitly requested by writing non-zero to
378 * @kdamond_stop. The thread sets @kdamond to NULL when it terminates.
379 * Therefore, users can know whether the monitoring is ongoing or terminated by
380 * reading @kdamond. Reads and writes to @kdamond and @kdamond_stop from
381 * outside of the monitoring thread must be protected by @kdamond_lock.
382 *
383 * Note that the monitoring thread protects only @kdamond and @kdamond_stop via
384 * @kdamond_lock. Accesses to other fields must be protected by themselves.
385 *
386 * @primitive: Set of monitoring primitives for given use cases.
387 * @callback: Set of callbacks for monitoring events notifications.
388 *
b9a6ac4e
SP
389 * @min_nr_regions: The minimum number of adaptive monitoring regions.
390 * @max_nr_regions: The maximum number of adaptive monitoring regions.
391 * @adaptive_targets: Head of monitoring targets (&damon_target) list.
1f366e42 392 * @schemes: Head of schemes (&damos) list.
2224d848
SP
393 */
394struct damon_ctx {
395 unsigned long sample_interval;
396 unsigned long aggr_interval;
397 unsigned long primitive_update_interval;
398
399/* private: internal use only */
400 struct timespec64 last_aggregation;
401 struct timespec64 last_primitive_update;
402
403/* public: */
404 struct task_struct *kdamond;
2224d848
SP
405 struct mutex kdamond_lock;
406
407 struct damon_primitive primitive;
408 struct damon_callback callback;
409
b9a6ac4e
SP
410 unsigned long min_nr_regions;
411 unsigned long max_nr_regions;
412 struct list_head adaptive_targets;
1f366e42 413 struct list_head schemes;
2224d848
SP
414};
415
88f86dcf
SP
416static inline struct damon_region *damon_next_region(struct damon_region *r)
417{
418 return container_of(r->list.next, struct damon_region, list);
419}
f23b8eee 420
88f86dcf
SP
421static inline struct damon_region *damon_prev_region(struct damon_region *r)
422{
423 return container_of(r->list.prev, struct damon_region, list);
424}
f23b8eee 425
88f86dcf
SP
426static inline struct damon_region *damon_last_region(struct damon_target *t)
427{
428 return list_last_entry(&t->regions_list, struct damon_region, list);
429}
50585192 430
f23b8eee
SP
431#define damon_for_each_region(r, t) \
432 list_for_each_entry(r, &t->regions_list, list)
433
434#define damon_for_each_region_safe(r, next, t) \
435 list_for_each_entry_safe(r, next, &t->regions_list, list)
436
437#define damon_for_each_target(t, ctx) \
b9a6ac4e 438 list_for_each_entry(t, &(ctx)->adaptive_targets, list)
f23b8eee
SP
439
440#define damon_for_each_target_safe(t, next, ctx) \
b9a6ac4e 441 list_for_each_entry_safe(t, next, &(ctx)->adaptive_targets, list)
f23b8eee 442
1f366e42
SP
443#define damon_for_each_scheme(s, ctx) \
444 list_for_each_entry(s, &(ctx)->schemes, list)
445
446#define damon_for_each_scheme_safe(s, next, ctx) \
447 list_for_each_entry_safe(s, next, &(ctx)->schemes, list)
448
2224d848
SP
449#ifdef CONFIG_DAMON
450
f23b8eee
SP
451struct damon_region *damon_new_region(unsigned long start, unsigned long end);
452inline void damon_insert_region(struct damon_region *r,
b9a6ac4e
SP
453 struct damon_region *prev, struct damon_region *next,
454 struct damon_target *t);
f23b8eee 455void damon_add_region(struct damon_region *r, struct damon_target *t);
b9a6ac4e 456void damon_destroy_region(struct damon_region *r, struct damon_target *t);
f23b8eee 457
1f366e42
SP
458struct damos *damon_new_scheme(
459 unsigned long min_sz_region, unsigned long max_sz_region,
460 unsigned int min_nr_accesses, unsigned int max_nr_accesses,
461 unsigned int min_age_region, unsigned int max_age_region,
ee801b7d
SP
462 enum damos_action action, struct damos_quota *quota,
463 struct damos_watermarks *wmarks);
1f366e42
SP
464void damon_add_scheme(struct damon_ctx *ctx, struct damos *s);
465void damon_destroy_scheme(struct damos *s);
466
f23b8eee
SP
467struct damon_target *damon_new_target(unsigned long id);
468void damon_add_target(struct damon_ctx *ctx, struct damon_target *t);
b5ca3e83 469bool damon_targets_empty(struct damon_ctx *ctx);
f23b8eee
SP
470void damon_free_target(struct damon_target *t);
471void damon_destroy_target(struct damon_target *t);
b9a6ac4e 472unsigned int damon_nr_regions(struct damon_target *t);
f23b8eee 473
2224d848
SP
474struct damon_ctx *damon_new_ctx(void);
475void damon_destroy_ctx(struct damon_ctx *ctx);
4bc05954
SP
476int damon_set_targets(struct damon_ctx *ctx,
477 unsigned long *ids, ssize_t nr_ids);
2224d848 478int damon_set_attrs(struct damon_ctx *ctx, unsigned long sample_int,
b9a6ac4e
SP
479 unsigned long aggr_int, unsigned long primitive_upd_int,
480 unsigned long min_nr_reg, unsigned long max_nr_reg);
1f366e42
SP
481int damon_set_schemes(struct damon_ctx *ctx,
482 struct damos **schemes, ssize_t nr_schemes);
4bc05954 483int damon_nr_running_ctxs(void);
2224d848
SP
484
485int damon_start(struct damon_ctx **ctxs, int nr_ctxs);
486int damon_stop(struct damon_ctx **ctxs, int nr_ctxs);
487
488#endif /* CONFIG_DAMON */
489
3f49584b 490#ifdef CONFIG_DAMON_VADDR
3f49584b 491bool damon_va_target_valid(void *t);
3f49584b 492void damon_va_set_primitives(struct damon_ctx *ctx);
3f49584b
SP
493#endif /* CONFIG_DAMON_VADDR */
494
a28397be 495#ifdef CONFIG_DAMON_PADDR
a28397be
SP
496bool damon_pa_target_valid(void *t);
497void damon_pa_set_primitives(struct damon_ctx *ctx);
a28397be
SP
498#endif /* CONFIG_DAMON_PADDR */
499
2224d848 500#endif /* _DAMON_H */