mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
tracing: Introduce tracepoint extended structure
Shrink the struct tracepoint size from 80 bytes to 72 bytes on x86-64 by moving the (typically NULL) regfunc/unregfunc pointers to an extended structure. Tested-by: Jordan Rife <jrife@google.com> Cc: Michael Jeanson <mjeanson@efficios.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Masami Hiramatsu <mhiramat@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Alexei Starovoitov <ast@kernel.org> Cc: Yonghong Song <yhs@fb.com> Cc: Paul E. McKenney <paulmck@kernel.org> Cc: Ingo Molnar <mingo@redhat.com> Cc: Arnaldo Carvalho de Melo <acme@kernel.org> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Andrii Nakryiko <andrii.nakryiko@gmail.com> Cc: bpf@vger.kernel.org Cc: Joel Fernandes <joel@joelfernandes.org> Cc: Jordan Rife <jrife@google.com> Cc: linux-trace-kernel@vger.kernel.org Link: https://lore.kernel.org/20241031152056.744137-2-mathieu.desnoyers@efficios.com Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
This commit is contained in:
committed by
Steven Rostedt (Google)
parent
e9f0a36347
commit
a9cfb8778c
@@ -278,8 +278,8 @@ static int tracepoint_add_func(struct tracepoint *tp,
|
||||
struct tracepoint_func *old, *tp_funcs;
|
||||
int ret;
|
||||
|
||||
if (tp->regfunc && !static_key_enabled(&tp->key)) {
|
||||
ret = tp->regfunc();
|
||||
if (tp->ext && tp->ext->regfunc && !static_key_enabled(&tp->key)) {
|
||||
ret = tp->ext->regfunc();
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
}
|
||||
@@ -362,9 +362,8 @@ static int tracepoint_remove_func(struct tracepoint *tp,
|
||||
switch (nr_func_state(tp_funcs)) {
|
||||
case TP_FUNC_0: /* 1->0 */
|
||||
/* Removed last function */
|
||||
if (tp->unregfunc && static_key_enabled(&tp->key))
|
||||
tp->unregfunc();
|
||||
|
||||
if (tp->ext && tp->ext->unregfunc && static_key_enabled(&tp->key))
|
||||
tp->ext->unregfunc();
|
||||
static_branch_disable(&tp->key);
|
||||
/* Set iterator static call */
|
||||
tracepoint_update_call(tp, tp_funcs);
|
||||
|
||||
Reference in New Issue
Block a user