]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
x86/tracing, x86/mm: Move page fault tracepoints to generic
authorNam Cao <namcao@linutronix.de>
Mon, 12 May 2025 10:50:59 +0000 (12:50 +0200)
committerIngo Molnar <mingo@kernel.org>
Fri, 16 May 2025 08:13:59 +0000 (10:13 +0200)
Page fault tracepoints are interesting for other architectures as well.
Move them to be generic.

Signed-off-by: Nam Cao <namcao@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Gabriele Monaco <gmonaco@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: John Ogness <john.ogness@linutronix.de>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: linux-trace-kernel@vger.kernel.org
Link: https://lore.kernel.org/r/89c2f284adf9b4c933f0e65811c50cef900a5a95.1747046848.git.namcao@linutronix.de
arch/x86/mm/Makefile
arch/x86/mm/fault.c
include/trace/events/exceptions.h [moved from arch/x86/include/asm/trace/exceptions.h with 79% similarity]

index 32035d5be5a017a97fb2699d647c4c70029a0591..629a8bf12219531fac59dd3572ed13dd03e2ede0 100644 (file)
@@ -34,8 +34,6 @@ obj-y                         += pat/
 CFLAGS_physaddr.o              := -fno-stack-protector
 CFLAGS_mem_encrypt_identity.o  := -fno-stack-protector
 
-CFLAGS_fault.o := -I $(src)/../include/asm/trace
-
 obj-$(CONFIG_X86_32)           += pgtable_32.o iomap_32.o
 
 obj-$(CONFIG_HUGETLB_PAGE)     += hugetlbpage.o
index 7e3e51fa1f95c1ecd219daf1d6c7589768a0f2e1..ad4cb15023167d36e5477d8013fb0d1af46299c6 100644 (file)
@@ -38,7 +38,7 @@
 #include <asm/sev.h>                   /* snp_dump_hva_rmpentry()      */
 
 #define CREATE_TRACE_POINTS
-#include <asm/trace/exceptions.h>
+#include <trace/events/exceptions.h>
 
 /*
  * Returns 0 if mmiotrace is disabled, or if the fault is not
similarity index 79%
rename from arch/x86/include/asm/trace/exceptions.h
rename to include/trace/events/exceptions.h
index 34bc8214a2d7c5c50a49ef3725adfbb41b226bc3..a631f8de89172de007fd820fded7b8531866b312 100644 (file)
@@ -7,7 +7,7 @@
 
 #include <linux/tracepoint.h>
 
-DECLARE_EVENT_CLASS(x86_exceptions,
+DECLARE_EVENT_CLASS(exceptions,
 
        TP_PROTO(unsigned long address, struct pt_regs *regs,
                 unsigned long error_code),
@@ -22,7 +22,7 @@ DECLARE_EVENT_CLASS(x86_exceptions,
 
        TP_fast_assign(
                __entry->address = address;
-               __entry->ip = regs->ip;
+               __entry->ip = instruction_pointer(regs);
                __entry->error_code = error_code;
        ),
 
@@ -30,18 +30,13 @@ DECLARE_EVENT_CLASS(x86_exceptions,
                  (void *)__entry->address, (void *)__entry->ip,
                  __entry->error_code) );
 
-DEFINE_EVENT(x86_exceptions, page_fault_user,
+DEFINE_EVENT(exceptions, page_fault_user,
        TP_PROTO(unsigned long address, struct pt_regs *regs, unsigned long error_code),
        TP_ARGS(address, regs, error_code));
-
-DEFINE_EVENT(x86_exceptions, page_fault_kernel,
+DEFINE_EVENT(exceptions, page_fault_kernel,
        TP_PROTO(unsigned long address, struct pt_regs *regs, unsigned long error_code),
        TP_ARGS(address, regs, error_code));
 
-#undef TRACE_INCLUDE_PATH
-#undef TRACE_INCLUDE_FILE
-#define TRACE_INCLUDE_PATH .
-#define TRACE_INCLUDE_FILE exceptions
 #endif /*  _TRACE_PAGE_FAULT_H */
 
 /* This part must be outside protection */