Merge tag 'sched_urgent_for_v5.15_rc1' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-microblaze.git] / Documentation / vm / damon / index.rst
1 .. SPDX-License-Identifier: GPL-2.0
2
3 ==========================
4 DAMON: Data Access MONitor
5 ==========================
6
7 DAMON is a data access monitoring framework subsystem for the Linux kernel.
8 The core mechanisms of DAMON (refer to :doc:`design` for the detail) make it
9
10  - *accurate* (the monitoring output is useful enough for DRAM level memory
11    management; It might not appropriate for CPU Cache levels, though),
12  - *light-weight* (the monitoring overhead is low enough to be applied online),
13    and
14  - *scalable* (the upper-bound of the overhead is in constant range regardless
15    of the size of target workloads).
16
17 Using this framework, therefore, the kernel's memory management mechanisms can
18 make advanced decisions.  Experimental memory management optimization works
19 that incurring high data accesses monitoring overhead could implemented again.
20 In user space, meanwhile, users who have some special workloads can write
21 personalized applications for better understanding and optimizations of their
22 workloads and systems.
23
24 .. toctree::
25    :maxdepth: 2
26
27    faq
28    design
29    api
30    plans