diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-09-26 20:54:40 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-09-26 20:54:40 +0200 |
commit | 348325d6444413caed020665b79603a2aaf00e2c (patch) | |
tree | 7fc44bc8a7ba23b7315c72ace0346552a36deb85 /arch/x86/kernel | |
parent | Merge tag 'efi-next-for-v6.12' of git://git.kernel.org/pub/scm/linux/kernel/g... (diff) | |
parent | runtime constants: move list of constants to vmlinux.lds.h (diff) | |
download | linux-348325d6444413caed020665b79603a2aaf00e2c.tar.xz linux-348325d6444413caed020665b79603a2aaf00e2c.zip |
Merge tag 'asm-generic-6.12' of git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic
Pull asm-generic updates from Arnd Bergmann:
"These are only two small patches, one cleanup for arch/alpha and a
preparation patch cleaning up the handling of runtime constants in the
linker scripts"
* tag 'asm-generic-6.12' of git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic:
runtime constants: move list of constants to vmlinux.lds.h
alpha: no need to include asm/xchg.h twice
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r-- | arch/x86/kernel/vmlinux.lds.S | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/kernel/vmlinux.lds.S b/arch/x86/kernel/vmlinux.lds.S index 6e73403e874f..6726be89b7a6 100644 --- a/arch/x86/kernel/vmlinux.lds.S +++ b/arch/x86/kernel/vmlinux.lds.S @@ -357,8 +357,7 @@ SECTIONS PERCPU_SECTION(INTERNODE_CACHE_BYTES) #endif - RUNTIME_CONST(shift, d_hash_shift) - RUNTIME_CONST(ptr, dentry_hashtable) + RUNTIME_CONST_VARIABLES . = ALIGN(PAGE_SIZE); |