hulk inclusion category: feature bugzilla: https://gitee.com/openeuler/kernel/issues/I8X87C
--------------------------------
reserve space for struct extable.h:exception_table_entry
Signed-off-by: Yuntao Liu liuyuntao12@huawei.com --- arch/arm64/include/asm/extable.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/arch/arm64/include/asm/extable.h b/arch/arm64/include/asm/extable.h index f80ebd0addfd..ffcb3c1ad099 100644 --- a/arch/arm64/include/asm/extable.h +++ b/arch/arm64/include/asm/extable.h @@ -2,6 +2,7 @@ #ifndef __ASM_EXTABLE_H #define __ASM_EXTABLE_H
+#include <linux/kabi.h> /* * The exception table consists of pairs of relative offsets: the first * is the relative offset to an instruction that is allowed to fault, @@ -19,6 +20,7 @@ struct exception_table_entry { int insn, fixup; short type, data; + KABI_RESERVE(1) };
#define ARCH_HAS_RELATIVE_EXTABLE