diff options
author | Helge Deller <deller@gmx.de> | 2023-11-25 09:16:02 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-12-08 08:52:20 +0100 |
commit | 3f01d7bb6ee262b89b614515f706d1968e184767 (patch) | |
tree | 047dd989c6307c616004a6c3e3bc94e29fd10e12 /arch | |
parent | 405870b8a861810a5686828dfa05f9f8c6423847 (diff) | |
download | linux-stable-3f01d7bb6ee262b89b614515f706d1968e184767.tar.gz linux-stable-3f01d7bb6ee262b89b614515f706d1968e184767.tar.bz2 linux-stable-3f01d7bb6ee262b89b614515f706d1968e184767.zip |
parisc: Ensure 32-bit alignment on parisc unwind section
commit c9fcb2b65c2849e8ff3be23fd8828312fb68dc19 upstream.
Make sure the .PARISC.unwind section will be 32-bit aligned.
Signed-off-by: Helge Deller <deller@gmx.de>
Cc: stable@vger.kernel.org # v6.0+
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
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 58694d1989c2..548051b0b4af 100644 --- a/arch/parisc/kernel/vmlinux.lds.S +++ b/arch/parisc/kernel/vmlinux.lds.S @@ -130,6 +130,7 @@ SECTIONS RO_DATA(8) /* unwind info */ + . = ALIGN(4); .PARISC.unwind : { __start___unwind = .; *(.PARISC.unwind) |