Files
linux/samples/damon/Kconfig
Seongjun Kim a58f3dcf20 samples/damon: a typo in the kconfig - sameple
There is a typo in the Kconfig file of the damon sample module.  Correct
it: s/sameple/sample/

Link: https://lkml.kernel.org/r/20250226184204.29370-1-sj@kernel.org
Signed-off-by: Seongjun Kim <bus710@gmail.com>
Signed-off-by: SeongJae Park <sj@kernel.org>
Reviewed-by: SeongJae Park <sj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
2025-03-17 00:05:29 -07:00

31 lines
875 B
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.
endmenu