162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
262306a36Sopenharmony_ci#ifndef VM_EVENT_ITEM_H_INCLUDED
362306a36Sopenharmony_ci#define VM_EVENT_ITEM_H_INCLUDED
462306a36Sopenharmony_ci
562306a36Sopenharmony_ci#ifdef CONFIG_ZONE_DMA
662306a36Sopenharmony_ci#define DMA_ZONE(xx) xx##_DMA,
762306a36Sopenharmony_ci#else
862306a36Sopenharmony_ci#define DMA_ZONE(xx)
962306a36Sopenharmony_ci#endif
1062306a36Sopenharmony_ci
1162306a36Sopenharmony_ci#ifdef CONFIG_ZONE_DMA32
1262306a36Sopenharmony_ci#define DMA32_ZONE(xx) xx##_DMA32,
1362306a36Sopenharmony_ci#else
1462306a36Sopenharmony_ci#define DMA32_ZONE(xx)
1562306a36Sopenharmony_ci#endif
1662306a36Sopenharmony_ci
1762306a36Sopenharmony_ci#ifdef CONFIG_HIGHMEM
1862306a36Sopenharmony_ci#define HIGHMEM_ZONE(xx) xx##_HIGH,
1962306a36Sopenharmony_ci#else
2062306a36Sopenharmony_ci#define HIGHMEM_ZONE(xx)
2162306a36Sopenharmony_ci#endif
2262306a36Sopenharmony_ci
2362306a36Sopenharmony_ci#ifdef CONFIG_ZONE_DEVICE
2462306a36Sopenharmony_ci#define DEVICE_ZONE(xx) xx##_DEVICE,
2562306a36Sopenharmony_ci#else
2662306a36Sopenharmony_ci#define DEVICE_ZONE(xx)
2762306a36Sopenharmony_ci#endif
2862306a36Sopenharmony_ci
2962306a36Sopenharmony_ci#define FOR_ALL_ZONES(xx) DMA_ZONE(xx) DMA32_ZONE(xx) xx##_NORMAL, \
3062306a36Sopenharmony_ci	HIGHMEM_ZONE(xx) xx##_MOVABLE, DEVICE_ZONE(xx)
3162306a36Sopenharmony_ci
3262306a36Sopenharmony_cienum vm_event_item { PGPGIN, PGPGOUT, PSWPIN, PSWPOUT,
3362306a36Sopenharmony_ci		FOR_ALL_ZONES(PGALLOC)
3462306a36Sopenharmony_ci		FOR_ALL_ZONES(ALLOCSTALL)
3562306a36Sopenharmony_ci		FOR_ALL_ZONES(PGSCAN_SKIP)
3662306a36Sopenharmony_ci		PGFREE, PGACTIVATE, PGDEACTIVATE, PGLAZYFREE,
3762306a36Sopenharmony_ci		PGFAULT, PGMAJFAULT,
3862306a36Sopenharmony_ci		PGLAZYFREED,
3962306a36Sopenharmony_ci		PGREFILL,
4062306a36Sopenharmony_ci		PGREUSE,
4162306a36Sopenharmony_ci		PGSTEAL_KSWAPD,
4262306a36Sopenharmony_ci		PGSTEAL_DIRECT,
4362306a36Sopenharmony_ci		PGSTEAL_KHUGEPAGED,
4462306a36Sopenharmony_ci		PGDEMOTE_KSWAPD,
4562306a36Sopenharmony_ci		PGDEMOTE_DIRECT,
4662306a36Sopenharmony_ci		PGDEMOTE_KHUGEPAGED,
4762306a36Sopenharmony_ci		PGSCAN_KSWAPD,
4862306a36Sopenharmony_ci		PGSCAN_DIRECT,
4962306a36Sopenharmony_ci		PGSCAN_KHUGEPAGED,
5062306a36Sopenharmony_ci		PGSCAN_DIRECT_THROTTLE,
5162306a36Sopenharmony_ci		PGSCAN_ANON,
5262306a36Sopenharmony_ci		PGSCAN_FILE,
5362306a36Sopenharmony_ci		PGSTEAL_ANON,
5462306a36Sopenharmony_ci		PGSTEAL_FILE,
5562306a36Sopenharmony_ci#ifdef CONFIG_NUMA
5662306a36Sopenharmony_ci		PGSCAN_ZONE_RECLAIM_FAILED,
5762306a36Sopenharmony_ci#endif
5862306a36Sopenharmony_ci		PGINODESTEAL, SLABS_SCANNED, KSWAPD_INODESTEAL,
5962306a36Sopenharmony_ci		KSWAPD_LOW_WMARK_HIT_QUICKLY, KSWAPD_HIGH_WMARK_HIT_QUICKLY,
6062306a36Sopenharmony_ci		PAGEOUTRUN, PGROTATED,
6162306a36Sopenharmony_ci		DROP_PAGECACHE, DROP_SLAB,
6262306a36Sopenharmony_ci		OOM_KILL,
6362306a36Sopenharmony_ci#ifdef CONFIG_NUMA_BALANCING
6462306a36Sopenharmony_ci		NUMA_PTE_UPDATES,
6562306a36Sopenharmony_ci		NUMA_HUGE_PTE_UPDATES,
6662306a36Sopenharmony_ci		NUMA_HINT_FAULTS,
6762306a36Sopenharmony_ci		NUMA_HINT_FAULTS_LOCAL,
6862306a36Sopenharmony_ci		NUMA_PAGE_MIGRATE,
6962306a36Sopenharmony_ci#endif
7062306a36Sopenharmony_ci#ifdef CONFIG_MIGRATION
7162306a36Sopenharmony_ci		PGMIGRATE_SUCCESS, PGMIGRATE_FAIL,
7262306a36Sopenharmony_ci		THP_MIGRATION_SUCCESS,
7362306a36Sopenharmony_ci		THP_MIGRATION_FAIL,
7462306a36Sopenharmony_ci		THP_MIGRATION_SPLIT,
7562306a36Sopenharmony_ci#endif
7662306a36Sopenharmony_ci#ifdef CONFIG_COMPACTION
7762306a36Sopenharmony_ci		COMPACTMIGRATE_SCANNED, COMPACTFREE_SCANNED,
7862306a36Sopenharmony_ci		COMPACTISOLATED,
7962306a36Sopenharmony_ci		COMPACTSTALL, COMPACTFAIL, COMPACTSUCCESS,
8062306a36Sopenharmony_ci		KCOMPACTD_WAKE,
8162306a36Sopenharmony_ci		KCOMPACTD_MIGRATE_SCANNED, KCOMPACTD_FREE_SCANNED,
8262306a36Sopenharmony_ci#endif
8362306a36Sopenharmony_ci#ifdef CONFIG_HUGETLB_PAGE
8462306a36Sopenharmony_ci		HTLB_BUDDY_PGALLOC, HTLB_BUDDY_PGALLOC_FAIL,
8562306a36Sopenharmony_ci#endif
8662306a36Sopenharmony_ci#ifdef CONFIG_CMA
8762306a36Sopenharmony_ci		CMA_ALLOC_SUCCESS,
8862306a36Sopenharmony_ci		CMA_ALLOC_FAIL,
8962306a36Sopenharmony_ci#endif
9062306a36Sopenharmony_ci		UNEVICTABLE_PGCULLED,	/* culled to noreclaim list */
9162306a36Sopenharmony_ci		UNEVICTABLE_PGSCANNED,	/* scanned for reclaimability */
9262306a36Sopenharmony_ci		UNEVICTABLE_PGRESCUED,	/* rescued from noreclaim list */
9362306a36Sopenharmony_ci		UNEVICTABLE_PGMLOCKED,
9462306a36Sopenharmony_ci		UNEVICTABLE_PGMUNLOCKED,
9562306a36Sopenharmony_ci		UNEVICTABLE_PGCLEARED,	/* on COW, page truncate */
9662306a36Sopenharmony_ci		UNEVICTABLE_PGSTRANDED,	/* unable to isolate on unlock */
9762306a36Sopenharmony_ci#ifdef CONFIG_TRANSPARENT_HUGEPAGE
9862306a36Sopenharmony_ci		THP_FAULT_ALLOC,
9962306a36Sopenharmony_ci		THP_FAULT_FALLBACK,
10062306a36Sopenharmony_ci		THP_FAULT_FALLBACK_CHARGE,
10162306a36Sopenharmony_ci		THP_COLLAPSE_ALLOC,
10262306a36Sopenharmony_ci		THP_COLLAPSE_ALLOC_FAILED,
10362306a36Sopenharmony_ci		THP_FILE_ALLOC,
10462306a36Sopenharmony_ci		THP_FILE_FALLBACK,
10562306a36Sopenharmony_ci		THP_FILE_FALLBACK_CHARGE,
10662306a36Sopenharmony_ci		THP_FILE_MAPPED,
10762306a36Sopenharmony_ci		THP_SPLIT_PAGE,
10862306a36Sopenharmony_ci		THP_SPLIT_PAGE_FAILED,
10962306a36Sopenharmony_ci		THP_DEFERRED_SPLIT_PAGE,
11062306a36Sopenharmony_ci		THP_SPLIT_PMD,
11162306a36Sopenharmony_ci		THP_SCAN_EXCEED_NONE_PTE,
11262306a36Sopenharmony_ci		THP_SCAN_EXCEED_SWAP_PTE,
11362306a36Sopenharmony_ci		THP_SCAN_EXCEED_SHARED_PTE,
11462306a36Sopenharmony_ci#ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
11562306a36Sopenharmony_ci		THP_SPLIT_PUD,
11662306a36Sopenharmony_ci#endif
11762306a36Sopenharmony_ci		THP_ZERO_PAGE_ALLOC,
11862306a36Sopenharmony_ci		THP_ZERO_PAGE_ALLOC_FAILED,
11962306a36Sopenharmony_ci		THP_SWPOUT,
12062306a36Sopenharmony_ci		THP_SWPOUT_FALLBACK,
12162306a36Sopenharmony_ci#endif
12262306a36Sopenharmony_ci#ifdef CONFIG_MEMORY_BALLOON
12362306a36Sopenharmony_ci		BALLOON_INFLATE,
12462306a36Sopenharmony_ci		BALLOON_DEFLATE,
12562306a36Sopenharmony_ci#ifdef CONFIG_BALLOON_COMPACTION
12662306a36Sopenharmony_ci		BALLOON_MIGRATE,
12762306a36Sopenharmony_ci#endif
12862306a36Sopenharmony_ci#endif
12962306a36Sopenharmony_ci#ifdef CONFIG_DEBUG_TLBFLUSH
13062306a36Sopenharmony_ci		NR_TLB_REMOTE_FLUSH,	/* cpu tried to flush others' tlbs */
13162306a36Sopenharmony_ci		NR_TLB_REMOTE_FLUSH_RECEIVED,/* cpu received ipi for flush */
13262306a36Sopenharmony_ci		NR_TLB_LOCAL_FLUSH_ALL,
13362306a36Sopenharmony_ci		NR_TLB_LOCAL_FLUSH_ONE,
13462306a36Sopenharmony_ci#endif /* CONFIG_DEBUG_TLBFLUSH */
13562306a36Sopenharmony_ci#ifdef CONFIG_SWAP
13662306a36Sopenharmony_ci		SWAP_RA,
13762306a36Sopenharmony_ci		SWAP_RA_HIT,
13862306a36Sopenharmony_ci#ifdef CONFIG_KSM
13962306a36Sopenharmony_ci		KSM_SWPIN_COPY,
14062306a36Sopenharmony_ci#endif
14162306a36Sopenharmony_ci#endif
14262306a36Sopenharmony_ci#ifdef CONFIG_KSM
14362306a36Sopenharmony_ci		COW_KSM,
14462306a36Sopenharmony_ci#endif
14562306a36Sopenharmony_ci#ifdef CONFIG_ZSWAP
14662306a36Sopenharmony_ci		ZSWPIN,
14762306a36Sopenharmony_ci		ZSWPOUT,
14862306a36Sopenharmony_ci#endif
14962306a36Sopenharmony_ci#ifdef CONFIG_X86
15062306a36Sopenharmony_ci		DIRECT_MAP_LEVEL2_SPLIT,
15162306a36Sopenharmony_ci		DIRECT_MAP_LEVEL3_SPLIT,
15262306a36Sopenharmony_ci#endif
15362306a36Sopenharmony_ci#ifdef CONFIG_PER_VMA_LOCK_STATS
15462306a36Sopenharmony_ci		VMA_LOCK_SUCCESS,
15562306a36Sopenharmony_ci		VMA_LOCK_ABORT,
15662306a36Sopenharmony_ci		VMA_LOCK_RETRY,
15762306a36Sopenharmony_ci		VMA_LOCK_MISS,
15862306a36Sopenharmony_ci#endif
15962306a36Sopenharmony_ci#ifdef CONFIG_HYPERHOLD_ZSWAPD
16062306a36Sopenharmony_ci		ZSWAPD_WAKEUP,
16162306a36Sopenharmony_ci		ZSWAPD_REFAULT,
16262306a36Sopenharmony_ci		ZSWAPD_MEDIUM_PRESS,
16362306a36Sopenharmony_ci		ZSWAPD_CRITICAL_PRESS,
16462306a36Sopenharmony_ci		ZSWAPD_MEMCG_RATIO_SKIP,
16562306a36Sopenharmony_ci		ZSWAPD_MEMCG_REFAULT_SKIP,
16662306a36Sopenharmony_ci		ZSWAPD_SWAPOUT,
16762306a36Sopenharmony_ci		ZSWAPD_EMPTY_ROUND,
16862306a36Sopenharmony_ci		ZSWAPD_EMPTY_ROUND_SKIP_TIMES,
16962306a36Sopenharmony_ci		ZSWAPD_SNAPSHOT_TIMES,
17062306a36Sopenharmony_ci		ZSWAPD_RECLAIMED,
17162306a36Sopenharmony_ci		ZSWAPD_SCANNED,
17262306a36Sopenharmony_ci#endif
17362306a36Sopenharmony_ci#ifdef CONFIG_HYPERHOLD_MEMCG
17462306a36Sopenharmony_ci		FREEZE_RECLAIMED,
17562306a36Sopenharmony_ci		FREEZE_RECLAIME_COUNT,
17662306a36Sopenharmony_ci#endif
17762306a36Sopenharmony_ci		NR_VM_EVENT_ITEMS
17862306a36Sopenharmony_ci};
17962306a36Sopenharmony_ci
18062306a36Sopenharmony_ci#ifndef CONFIG_TRANSPARENT_HUGEPAGE
18162306a36Sopenharmony_ci#define THP_FILE_ALLOC ({ BUILD_BUG(); 0; })
18262306a36Sopenharmony_ci#define THP_FILE_FALLBACK ({ BUILD_BUG(); 0; })
18362306a36Sopenharmony_ci#define THP_FILE_FALLBACK_CHARGE ({ BUILD_BUG(); 0; })
18462306a36Sopenharmony_ci#define THP_FILE_MAPPED ({ BUILD_BUG(); 0; })
18562306a36Sopenharmony_ci#endif
18662306a36Sopenharmony_ci
18762306a36Sopenharmony_ci#endif		/* VM_EVENT_ITEM_H_INCLUDED */
188