diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2025-09-05 13:11:10 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2025-09-05 13:11:10 -0700 |
| commit | e5d5d23319565a7e48232707c3fe30bd4eb638cd (patch) | |
| tree | 4c5de3b5bdd76c04ea271905a146a5d6b5599f35 /arch/arm64/include/asm/module.lds.h | |
| parent | 730c1451fbc3942d434a4203bd4616ad0b71b23d (diff) | |
| parent | a7ed7b9d0ebb038db9963d574da0311cab0b666a (diff) | |
| download | linux-e5d5d23319565a7e48232707c3fe30bd4eb638cd.tar.gz linux-e5d5d23319565a7e48232707c3fe30bd4eb638cd.tar.bz2 linux-e5d5d23319565a7e48232707c3fe30bd4eb638cd.zip | |
Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux
Pull arm64 fixes from Catalin Marinas:
- Incorrect __BITS_PER_LONG as 64 when compiling the compat vDSO
- Unreachable PLT for ftrace_caller() in a module's .init.text
following past reworking of the module VA range selection
- Memory leak in the ACPI iort_rmr_alloc_sids() after a failed
krealloc_array()
* tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux:
arm64: ftrace: fix unreachable PLT for ftrace_caller in init_module with CONFIG_DYNAMIC_FTRACE
ACPI/IORT: Fix memory leak in iort_rmr_alloc_sids()
arm64: uapi: Provide correct __BITS_PER_LONG for the compat vDSO
Diffstat (limited to 'arch/arm64/include/asm/module.lds.h')
| -rw-r--r-- | arch/arm64/include/asm/module.lds.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/include/asm/module.lds.h b/arch/arm64/include/asm/module.lds.h index b9ae8349e35d..fb944b46846d 100644 --- a/arch/arm64/include/asm/module.lds.h +++ b/arch/arm64/include/asm/module.lds.h @@ -2,6 +2,7 @@ SECTIONS { .plt 0 : { BYTE(0) } .init.plt 0 : { BYTE(0) } .text.ftrace_trampoline 0 : { BYTE(0) } + .init.text.ftrace_trampoline 0 : { BYTE(0) } #ifdef CONFIG_KASAN_SW_TAGS /* |
