From: Linus Torvalds Date: Tue, 21 Apr 2026 00:25:56 +0000 (-0700) Subject: tracing: tell git to ignore the generated 'undefsyms_base.c' file X-Git-Url: http://git.ipfire.org/index.cgi?a=commitdiff_plain;h=HEAD;p=thirdparty%2Flinux.git tracing: tell git to ignore the generated 'undefsyms_base.c' file This odd file was added to automatically figure out tool-generated symbols. Honestly, it *should* have been just a real honest-to-goodness regular file in git, instead of having strange code to generate it in the Makefile, but that is not how that silly thing works. So now we need to ignore it explicitly. Fixes: 1211907ac0b5 ("tracing: Generate undef symbols allowlist for simple_ring_buffer") Cc: Vincent Donnefort Cc: Nathan Chancellor Cc: Steven Rostedt (Google) Cc: Arnd Bergmann Cc: Marc Zyngier Signed-off-by: Linus Torvalds --- diff --git a/kernel/trace/.gitignore b/kernel/trace/.gitignore new file mode 100644 index 0000000000000..6adbb09d6deb0 --- /dev/null +++ b/kernel/trace/.gitignore @@ -0,0 +1 @@ +/undefsyms_base.c