diff options
| author | Mark Brown <broonie@kernel.org> | 2026-05-29 22:42:38 +0100 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2026-05-29 22:42:38 +0100 |
| commit | 0be7dbe104cadecc44e7abdd824d19c4e548a1f9 (patch) | |
| tree | 6f4d4aafa87957327eff239dd9aa9f91fa2d33f2 /arch | |
| parent | ec5c0aa668768e3d00a14ba8712549eb107ef9ee (diff) | |
| parent | ae12a56ba16adcb8a06d5b3b91d4f82a092e8de3 (diff) | |
| download | linux-next-history-0be7dbe104cadecc44e7abdd824d19c4e548a1f9.tar.gz | |
Merge branch 'modules-next' of https://git.kernel.org/pub/scm/linux/kernel/git/modules/linux.git
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm/include/asm/module.lds.h | 4 | ||||
| -rw-r--r-- | arch/arm64/include/asm/module.lds.h | 4 | ||||
| -rw-r--r-- | arch/m68k/include/asm/module.lds.h | 2 | ||||
| -rw-r--r-- | arch/riscv/include/asm/module.lds.h | 6 |
4 files changed, 8 insertions, 8 deletions
diff --git a/arch/arm/include/asm/module.lds.h b/arch/arm/include/asm/module.lds.h index 0e7cb4e314b48..f9ad774b2889d 100644 --- a/arch/arm/include/asm/module.lds.h +++ b/arch/arm/include/asm/module.lds.h @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 */ #ifdef CONFIG_ARM_MODULE_PLTS SECTIONS { - .plt : { BYTE(0) } - .init.plt : { BYTE(0) } + .plt 0 : { BYTE(0) } + .init.plt 0 : { BYTE(0) } } #endif diff --git a/arch/arm64/include/asm/module.lds.h b/arch/arm64/include/asm/module.lds.h index fb944b46846da..0b3aacd22c590 100644 --- a/arch/arm64/include/asm/module.lds.h +++ b/arch/arm64/include/asm/module.lds.h @@ -14,7 +14,7 @@ SECTIONS { * directive to force them into a single section and silence the * warning. */ - .text.hot : { *(.text.hot) } + .text.hot 0 : { *(.text.hot) } #endif #ifdef CONFIG_UNWIND_TABLES @@ -22,6 +22,6 @@ SECTIONS { * Currently, we only use unwind info at module load time, so we can * put it into the .init allocation. */ - .init.eh_frame : { *(.eh_frame) } + .init.eh_frame 0 : { *(.eh_frame) } #endif } diff --git a/arch/m68k/include/asm/module.lds.h b/arch/m68k/include/asm/module.lds.h index fda94fa382430..fcd08689b2820 100644 --- a/arch/m68k/include/asm/module.lds.h +++ b/arch/m68k/include/asm/module.lds.h @@ -1,5 +1,5 @@ SECTIONS { - .m68k_fixup : { + .m68k_fixup 0 : { __start_fixup = .; *(.m68k_fixup) __stop_fixup = .; diff --git a/arch/riscv/include/asm/module.lds.h b/arch/riscv/include/asm/module.lds.h index 1075beae1ac64..9ced27c8ccb62 100644 --- a/arch/riscv/include/asm/module.lds.h +++ b/arch/riscv/include/asm/module.lds.h @@ -2,8 +2,8 @@ /* Copyright (C) 2017 Andes Technology Corporation */ #ifdef CONFIG_MODULE_SECTIONS SECTIONS { - .plt : { BYTE(0) } - .got : { BYTE(0) } - .got.plt : { BYTE(0) } + .plt 0 : { BYTE(0) } + .got 0 : { BYTE(0) } + .got.plt 0 : { BYTE(0) } } #endif |
