From: Helge Deller Date: Fri, 1 Dec 2023 20:20:50 +0000 (+0100) Subject: parisc: Make RO_DATA page aligned in vmlinux.lds.S X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2751153b9945c31eb905deb9fbe2d7f127b4b34c;p=linux.git parisc: Make RO_DATA page aligned in vmlinux.lds.S The rodata_test program for CONFIG_DEBUG_RODATA_TEST=y complains if read-only data does not start at page boundary. Signed-off-by: Helge Deller --- diff --git a/arch/parisc/kernel/vmlinux.lds.S b/arch/parisc/kernel/vmlinux.lds.S index 548051b0b4aff..b445e47903cfd 100644 --- a/arch/parisc/kernel/vmlinux.lds.S +++ b/arch/parisc/kernel/vmlinux.lds.S @@ -127,7 +127,7 @@ SECTIONS } #endif - RO_DATA(8) + RO_DATA(PAGE_SIZE) /* unwind info */ . = ALIGN(4);