From a9cbff64a895f2dc1834df2c2178586fafd7d212 Mon Sep 17 00:00:00 2001 From: Xie Haocheng Date: Tue, 29 Nov 2022 16:45:02 +0800 Subject: [PATCH] kabi: Fix kabi breakage caused by commit d5616bac7ada. amd inclusion category: feature bugzilla: https://gitee.com/openeuler/kernel/issues/I5S3WV CVE: NA ------------------------------------------------- Error report detail: *** ERROR - ABI BREAKAGE WAS DETECTED *** The following symbols have been changed (this will cause an ABI breakage): new kabi: 0x65d25289 __SCK__tp_func_xdp_exception vmlinux EXPORT_SYMBOL_GPL 0x5e9265ee __tracepoint_xdp_exception vmlinux EXPORT_SYMBOL_GPL old kabi: 0x5e0fbbff __SCK__tp_func_xdp_exception vmlinux EXPORT_SYMBOL_GPL 0x017cc464 __tracepoint_xdp_exception vmlinux EXPORT_SYMBOL_GPL Signed-off-by: Xie Haocheng --- arch/x86/include/asm/perf_event.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/x86/include/asm/perf_event.h b/arch/x86/include/asm/perf_event.h index feb09f963f1e..77b92b234f83 100644 --- a/arch/x86/include/asm/perf_event.h +++ b/arch/x86/include/asm/perf_event.h @@ -2,7 +2,9 @@ #ifndef _ASM_X86_PERF_EVENT_H #define _ASM_X86_PERF_EVENT_H +#ifndef __GENKSYMS__ #include +#endif /* * Performance event hw details: -- GitLab