[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250722104820.6c629734@batman.local.home>
Date: Tue, 22 Jul 2025 10:48:20 -0400
From: Steven Rostedt <rostedt@...dmis.org>
To: LKML <linux-kernel@...r.kernel.org>, Linux trace kernel
<linux-trace-kernel@...r.kernel.org>
Cc: Masami Hiramatsu <mhiramat@...nel.org>, Mathieu Desnoyers
<mathieu.desnoyers@...icios.com>, Ingo Molnar <mingo@...nel.org>, Peter
Zijlstra <peterz@...radead.org>, Vincent Guittot
<vincent.guittot@...aro.org>, Dietmar Eggemann <dietmar.eggemann@....com>,
Mel Gorman <mgorman@...e.de>, Valentin Schneider <vschneid@...hat.com>
Subject: [PATCH] tracing: sched: Hide numa balancing trace events
From: Steven Rostedt <rostedt@...dmis.org>
The trace events sched_move_numa, sched_swap_numa and sched_stick_numa are
only used when CONFIG_NUMA_BALANCING is enabled. Put an #ifdef guard
around the definitions of these trace events so they are not defined when
numa balancing is not enabled, otherwise they waste a bit of memory being
unused.
Signed-off-by: Steven Rostedt (Google) <rostedt@...dmis.org>
---
include/trace/events/sched.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/trace/events/sched.h b/include/trace/events/sched.h
index 4e6b2910cec3..51776b45549a 100644
--- a/include/trace/events/sched.h
+++ b/include/trace/events/sched.h
@@ -628,6 +628,7 @@ TRACE_EVENT(sched_process_hang,
);
#endif /* CONFIG_DETECT_HUNG_TASK */
+#ifdef CONFIG_NUMA_BALANCING
/*
* Tracks migration of tasks from one runqueue to another. Can be used to
* detect if automatic NUMA balancing is bouncing between nodes.
@@ -719,6 +720,7 @@ DEFINE_EVENT(sched_numa_pair_template, sched_swap_numa,
TP_ARGS(src_tsk, src_cpu, dst_tsk, dst_cpu)
);
+#endif /* CONFIG_NUMA_BALANCING */
#ifdef CONFIG_NUMA_BALANCING
#define NUMAB_SKIP_REASON \
--
2.47.2
Powered by blists - more mailing lists