mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-28 12:13:39 -04:00
Fix a couple of typos in samples/damon/Kconfig help text. Change "Thps" to "This", and "tierign" to "tiering". Link: https://lore.kernel.org/20260629145538.134832-5-sj@kernel.org Signed-off-by: Asier Gutierrez <gutierrez.asier@huawei-partners.com> Signed-off-by: SJ Park <sj@kernel.org> Reviewed-by: SJ Park <sj@kernel.org> Cc: Akinobu Mita <akinobu.mita@gmail.com> Cc: Brendan Higgins <brendan.higgins@linux.dev> Cc: David Hildenbrand <david@kernel.org> Cc: Doehyun Baek <doehyunbaek@gmail.com> Cc: Jonathan Corbet <corbet@lwn.net> Cc: "Liam R. Howlett" <liam@infradead.org> Cc: Lorenzo Stoakes <ljs@kernel.org> Cc: Michal Hocko <mhocko@suse.com> Cc: Mike Rapoport <rppt@kernel.org> Cc: Philippe Laferriere <plafer@proton.me> Cc: Sailesh Nandanavanam <saileshnandanavanam@gmail.com> Cc: Shuah Khan <skhan@linuxfoundation.org> Cc: Suren Baghdasaryan <surenb@google.com> Cc: Vlastimil Babka <vbabka@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
44 lines
1.3 KiB
Plaintext
44 lines
1.3 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
menu "DAMON Samples"
|
|
|
|
config SAMPLE_DAMON_WSSE
|
|
bool "DAMON sample module for working set size estimation"
|
|
depends on DAMON && DAMON_VADDR
|
|
help
|
|
This builds DAMON sample module for working set size estimation.
|
|
|
|
The module receives a pid, monitor access to the virtual address
|
|
space of the process, estimate working set size of the process, and
|
|
repeatedly prints the size on the kernel log.
|
|
|
|
If unsure, say N.
|
|
|
|
config SAMPLE_DAMON_PRCL
|
|
bool "DAMON sample module for access-aware proactive reclamation"
|
|
depends on DAMON && DAMON_VADDR
|
|
help
|
|
This builds DAMON sample module for access-aware proactive
|
|
reclamation.
|
|
|
|
The module receives a pid, monitor access to the virtual address
|
|
space of the process, find memory regions that not accessed, and
|
|
proactively reclaim the regions.
|
|
|
|
If unsure, say N.
|
|
|
|
config SAMPLE_DAMON_MTIER
|
|
bool "DAMON sample module for memory tiering"
|
|
depends on DAMON && DAMON_PADDR
|
|
help
|
|
This builds DAMON sample module for memory tiering.
|
|
|
|
The module assumes the system is constructed with two NUMA nodes,
|
|
which seems as local and remote nodes to all CPUs. For example,
|
|
node0 is for DDR5 DRAMs connected via DIMM, while node1 is for DDR4
|
|
DRAMs connected via CXL.
|
|
|
|
If unsure, say N.
|
|
|
|
endmenu
|