Patch "powerpc/vmlinux.lds: Ensure STRICT_ALIGN_SIZE is at least page aligned" has been added to the 5.15-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    powerpc/vmlinux.lds: Ensure STRICT_ALIGN_SIZE is at least page aligned

to the 5.15-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:
     powerpc-vmlinux.lds-ensure-strict_align_size-is-at-l.patch
and it can be found in the queue-5.15 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit df165b0f69a04c36a4cd4cc6061e587d7f0708d1
Author: Michael Ellerman <mpe@xxxxxxxxxxxxxx>
Date:   Fri Sep 16 14:40:57 2022 +1000

    powerpc/vmlinux.lds: Ensure STRICT_ALIGN_SIZE is at least page aligned
    
    [ Upstream commit 331771e836e6a32c8632d8cf5e2cdd94471258ad ]
    
    Add a check that STRICT_ALIGN_SIZE is aligned to at least PAGE_SIZE.
    
    That then makes the alignment to PAGE_SIZE immediately after the
    alignment to STRICT_ALIGN_SIZE redundant, so remove it.
    
    Signed-off-by: Michael Ellerman <mpe@xxxxxxxxxxxxxx>
    Link: https://lore.kernel.org/r/20220916131422.318752-1-mpe@xxxxxxxxxxxxxx
    Stable-dep-of: 111bcb373853 ("powerpc/64s/radix: Fix RWX mapping with relocated kernel")
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/arch/powerpc/kernel/vmlinux.lds.S b/arch/powerpc/kernel/vmlinux.lds.S
index 1a63e37f336ab..bcbe41c6998ca 100644
--- a/arch/powerpc/kernel/vmlinux.lds.S
+++ b/arch/powerpc/kernel/vmlinux.lds.S
@@ -32,6 +32,10 @@
 
 #define STRICT_ALIGN_SIZE	(1 << CONFIG_DATA_SHIFT)
 
+#if STRICT_ALIGN_SIZE < PAGE_SIZE
+#error "CONFIG_DATA_SHIFT must be >= PAGE_SHIFT"
+#endif
+
 ENTRY(_stext)
 
 PHDRS {
@@ -209,7 +213,6 @@ SECTIONS
  */
 	. = ALIGN(STRICT_ALIGN_SIZE);
 	__init_begin = .;
-	. = ALIGN(PAGE_SIZE);
 	.init.text : AT(ADDR(.init.text) - LOAD_OFFSET) {
 		_sinittext = .;
 		INIT_TEXT



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux