1# SPDX-License-Identifier: GPL-2.0
2
3menu "DAMON Samples"
4
5config SAMPLE_DAMON_WSSE
6	bool "DAMON sameple module for working set size estimation"
7	depends on DAMON && DAMON_VADDR
8	help
9	  This builds DAMON sample module for working set size estimation.
10
11	  The module receives a pid, monitor access to the virtual address
12	  space of the process, estimate working set size of the process, and
13	  repeatedly prints the size on the kernel log.
14
15	  If unsure, say N.
16
17config SAMPLE_DAMON_PRCL
18	bool "DAMON sameple module for access-aware proactive reclamation"
19	depends on DAMON && DAMON_VADDR
20	help
21	  This builds DAMON sample module for access-aware proactive
22	  reclamation.
23
24	  The module receives a pid, monitor access to the virtual address
25	  space of the process, find memory regions that not accessed, and
26	  proactively reclaim the regions.
27
28	  If unsure, say N.
29
30endmenu
31