From: Mathieu Desnoyers Date: Tue, 29 Mar 2022 20:34:07 +0000 (-0400) Subject: Fix: compaction migratepages event name X-Git-Tag: v2.12.9~7 X-Git-Url: http://git.liburcu.org/?p=lttng-modules.git;a=commitdiff_plain;h=a3f2d33768920bc81db654f4b12be7e244d3cb3f Fix: compaction migratepages event name The commit "fix: mm: compaction: fix the migration stats in trace_mm_compaction_migratepages() (v5.17)" Triggers this warning: LTTng: event provider mismatch: The event name needs to start with provider name + _ + one or more letter, provider: compaction, event name: mm_compaction_migratepages Signed-off-by: Mathieu Desnoyers Change-Id: I01c7485af765084dafb33bf33ae392e60bfbf1e7 --- diff --git a/instrumentation/events/lttng-module/compaction.h b/instrumentation/events/lttng-module/compaction.h index d3b5523e..6ef1e647 100644 --- a/instrumentation/events/lttng-module/compaction.h +++ b/instrumentation/events/lttng-module/compaction.h @@ -98,7 +98,9 @@ LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(compaction_isolate_template, #endif /* #else #if LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(4,0,0) */ #if (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(5,17,0)) -LTTNG_TRACEPOINT_EVENT(mm_compaction_migratepages, +LTTNG_TRACEPOINT_EVENT_MAP(mm_compaction_migratepages, + + compaction_migratepages, TP_PROTO(unsigned long nr_all, unsigned int nr_succeeded),