Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

parisc: Mark ex_table entries 32-bit aligned in uaccess.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 <deller@gmx.de>
Cc: stable@vger.kernel.org # v6.0+

+1
+1
arch/parisc/include/asm/uaccess.h
··· 41 41 42 42 #define ASM_EXCEPTIONTABLE_ENTRY( fault_addr, except_addr )\ 43 43 ".section __ex_table,\"aw\"\n" \ 44 + ".align 4\n" \ 44 45 ".word (" #fault_addr " - .), (" #except_addr " - .)\n\t" \ 45 46 ".previous\n" 46 47