This is a note to let you know that I've just added the patch titled parisc: Ensure 32-bit alignment on parisc unwind section to the 6.1-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: parisc-ensure-32-bit-alignment-on-parisc-unwind-section.patch and it can be found in the queue-6.1 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From c9fcb2b65c2849e8ff3be23fd8828312fb68dc19 Mon Sep 17 00:00:00 2001 From: Helge Deller <deller@xxxxxx> Date: Sat, 25 Nov 2023 09:16:02 +0100 Subject: parisc: Ensure 32-bit alignment on parisc unwind section From: Helge Deller <deller@xxxxxx> commit c9fcb2b65c2849e8ff3be23fd8828312fb68dc19 upstream. Make sure the .PARISC.unwind section will be 32-bit aligned. Signed-off-by: Helge Deller <deller@xxxxxx> Cc: stable@xxxxxxxxxxxxxxx # v6.0+ Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- arch/parisc/kernel/vmlinux.lds.S | 1 + 1 file changed, 1 insertion(+) --- 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) Patches currently in stable-queue which might be from deller@xxxxxx are queue-6.1/parisc-ensure-32-bit-alignment-on-parisc-unwind-section.patch queue-6.1/parisc-mark-jump_table-naturally-aligned.patch queue-6.1/parisc-mark-ex_table-entries-32-bit-aligned-in-uaccess.h.patch queue-6.1/parisc-mark-altinstructions-read-only-and-32-bit-aligned.patch queue-6.1/parisc-mark-ex_table-entries-32-bit-aligned-in-assembly.h.patch queue-6.1/parisc-drop-the-hp-ux-enosym-and-eremoterelease-error-codes.patch queue-6.1/parisc-mark-lock_aligned-variables-16-byte-aligned-on-smp.patch queue-6.1/parisc-use-natural-cpu-alignment-for-bug_table.patch