diff options
author | Helge Deller | 2023-09-07 08:07:55 +0200 |
---|---|---|
committer | Helge Deller | 2023-09-07 09:12:20 +0200 |
commit | 4695e45ec0cd4d422694b69e9f39c742bb1f35fc (patch) | |
tree | 5b9b483a880e5d84bdd1e2605cf292733b755f34 /arch | |
parent | 510610f96d65277940a02f47d7bc7a06c8a2ab7a (diff) |
parisc: BTLB: _edata symbol has to be page aligned for BTLB support
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/parisc/kernel/vmlinux.lds.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/parisc/kernel/vmlinux.lds.S b/arch/parisc/kernel/vmlinux.lds.S index 1aaa2ca09800..58694d1989c2 100644 --- a/arch/parisc/kernel/vmlinux.lds.S +++ b/arch/parisc/kernel/vmlinux.lds.S @@ -154,6 +154,7 @@ SECTIONS } /* End of data section */ + . = ALIGN(PAGE_SIZE); _edata = .; /* BSS */ |