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:51:16 +0100 |
| commit | cf2ae6494d1f1f8e55c069e5cb74aa830e192df8 (patch) | |
| tree | 035b0e3e20fa9078d1da155840165161c49a3fe6 /arch/parisc/kernel | |
| parent | 2acfff573042fd521cd65bb0365658eb37ff8896 (diff) | |
| download | linux-cf2ae6494d1f1f8e55c069e5cb74aa830e192df8.tar.gz linux-cf2ae6494d1f1f8e55c069e5cb74aa830e192df8.tar.bz2 linux-cf2ae6494d1f1f8e55c069e5cb74aa830e192df8.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/parisc/kernel')
| -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 2769eb991f58..ad3a3239ea74 100644 --- a/arch/parisc/kernel/vmlinux.lds.S +++ b/arch/parisc/kernel/vmlinux.lds.S @@ -131,6 +131,7 @@ SECTIONS RO_DATA(8) /* unwind info */ + . = ALIGN(4); .PARISC.unwind : { __start___unwind = .; *(.PARISC.unwind) |
