From: Helge Deller Date: Mon, 20 Nov 2023 14:37:50 +0000 (+0100) Subject: parisc: Mark ex_table entries 32-bit aligned in assembly.h X-Git-Tag: v6.7-rc3~2^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e11d4cccd094a7cd4696c8c42e672c76c092dad5;p=thirdparty%2Flinux.git parisc: Mark ex_table entries 32-bit aligned in assembly.h Add an align statement to tell the linker that all ex_table entries and as such the whole ex_table section should be 32-bit aligned in vmlinux and modules. Signed-off-by: Helge Deller Cc: stable@vger.kernel.org # v6.0+ --- diff --git a/arch/parisc/include/asm/assembly.h b/arch/parisc/include/asm/assembly.h index 75677b526b2bb..74d17d7e759da 100644 --- a/arch/parisc/include/asm/assembly.h +++ b/arch/parisc/include/asm/assembly.h @@ -574,6 +574,7 @@ */ #define ASM_EXCEPTIONTABLE_ENTRY(fault_addr, except_addr) \ .section __ex_table,"aw" ! \ + .align 4 ! \ .word (fault_addr - .), (except_addr - .) ! \ .previous