Skip to content

Commit 2751153

Browse files
committed
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 <[email protected]>
1 parent 8a696a2 commit 2751153

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/parisc/kernel/vmlinux.lds.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ SECTIONS
127127
}
128128
#endif
129129

130-
RO_DATA(8)
130+
RO_DATA(PAGE_SIZE)
131131

132132
/* unwind info */
133133
. = ALIGN(4);

0 commit comments

Comments
 (0)