From: Eugen Hristev <[email protected]> Annotate vital static information into inspection table: - node_states
Information on these variables is stored in a dedicated meminspect section. Signed-off-by: Eugen Hristev <[email protected]> Signed-off-by: Mukesh Ojha <[email protected]> --- mm/page_alloc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 75ee81445640..c28a84d11d49 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -54,6 +54,7 @@ #include <linux/delayacct.h> #include <linux/cacheinfo.h> #include <linux/pgalloc_tag.h> +#include <linux/meminspect.h> #include <linux/mmzone_lock.h> #include <asm/div64.h> #include "internal.h" @@ -199,6 +200,7 @@ nodemask_t node_states[NR_NODE_STATES] __read_mostly = { #endif /* NUMA */ }; EXPORT_SYMBOL(node_states); +MEMINSPECT_SIMPLE_ENTRY(node_states); gfp_t gfp_allowed_mask __read_mostly = GFP_BOOT_MASK; -- 2.50.1

