[RFC PATCH V1 5/5] mm/damon/tracepoint: Add 'damon_region' NUMA access statistics support

From: Xin Hao
Date: Wed Feb 16 2022 - 03:31:10 EST


This patch is used to support 'damon_region' NUMA access for tracepoint,
The purpose of this is to facilitate users to obtain the numa access
status of 'damon_region' through perf or damo tools.

Signed-off-by: Xin Hao <xhao@xxxxxxxxxxxxxxxxx>
Signed-off-by: Rongwei Wang <rongwei.wang@xxxxxxxxxxxxxxxxx>
---
include/trace/events/damon.h | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/include/trace/events/damon.h b/include/trace/events/damon.h
index c79f1d4c39af..687b7aba751e 100644
--- a/include/trace/events/damon.h
+++ b/include/trace/events/damon.h
@@ -23,6 +23,8 @@ TRACE_EVENT(damon_aggregated,
__field(unsigned long, end)
__field(unsigned int, nr_accesses)
__field(unsigned int, age)
+ __field(unsigned long, local)
+ __field(unsigned long, remote)
),

TP_fast_assign(
@@ -32,12 +34,15 @@ TRACE_EVENT(damon_aggregated,
__entry->end = r->ar.end;
__entry->nr_accesses = r->nr_accesses;
__entry->age = r->age;
+ __entry->local = r->local;
+ __entry->remote = r->remote;
),

- TP_printk("target_id=%lu nr_regions=%u %lu-%lu: %u %u",
+ TP_printk("target_id=%lu nr_regions=%u %lu-%lu: %u %u %lu %lu",
__entry->target_id, __entry->nr_regions,
__entry->start, __entry->end,
- __entry->nr_accesses, __entry->age)
+ __entry->nr_accesses, __entry->age,
+ __entry->local, __entry->remote)
);

#endif /* _TRACE_DAMON_H */
--
2.27.0