diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-06-08 13:22:31 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-07-09 07:30:43 -0700 |
commit | 94a2bc0f611cd9fa4d26e4679bf7ea4b01b12d56 (patch) | |
tree | f19a35a55994647fe20814aa14e6389f10306de8 /arch/arm64/kernel/vmlinux.lds.S | |
parent | e3c92e81711d14b46c3121d36bc8e152cb843923 (diff) | |
download | linux-94a2bc0f611cd9fa4d26e4679bf7ea4b01b12d56.tar.gz linux-94a2bc0f611cd9fa4d26e4679bf7ea4b01b12d56.tar.bz2 linux-94a2bc0f611cd9fa4d26e4679bf7ea4b01b12d56.zip |
arm64: add 'runtime constant' supportruntime-constants
This implements the runtime constant infrastructure for arm64, allowing
the dcache d_hash() function to be generated using as a constant for
hash table address followed by shift by a constant of the hash index.
[ Fixed up to deal with the big-endian case as per Mark Rutland ]
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/arm64/kernel/vmlinux.lds.S')
-rw-r--r-- | arch/arm64/kernel/vmlinux.lds.S | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm64/kernel/vmlinux.lds.S b/arch/arm64/kernel/vmlinux.lds.S index 755a22d4f840..55a8e310ea12 100644 --- a/arch/arm64/kernel/vmlinux.lds.S +++ b/arch/arm64/kernel/vmlinux.lds.S @@ -264,6 +264,9 @@ SECTIONS EXIT_DATA } + RUNTIME_CONST(shift, d_hash_shift) + RUNTIME_CONST(ptr, dentry_hashtable) + PERCPU_SECTION(L1_CACHE_BYTES) HYPERVISOR_PERCPU_SECTION |