diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-06-04 12:30:02 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-06-19 12:34:34 -0700 |
commit | e78298556ee5d881f6679effb2a6743969ea6e2d (patch) | |
tree | 207742567635f7acab0a2e4b6a2bf35ef18977d4 /include/asm-generic/Kbuild | |
parent | e60cc61153e61e4e38bd983492df9959e82ae4dc (diff) |
runtime constants: add default dummy infrastructure
This adds the initial dummy support for 'runtime constants' for when
an architecture doesn't actually support an implementation of fixing
up said runtime constants.
This ends up being the fallback to just using the variables as regular
__ro_after_init variables, and changes the dcache d_hash() function to
use this model.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-generic/Kbuild')
-rw-r--r-- | include/asm-generic/Kbuild | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asm-generic/Kbuild b/include/asm-generic/Kbuild index b20fa25a7e8d..052e5c98c105 100644 --- a/include/asm-generic/Kbuild +++ b/include/asm-generic/Kbuild @@ -46,6 +46,7 @@ mandatory-y += pci.h mandatory-y += percpu.h mandatory-y += pgalloc.h mandatory-y += preempt.h +mandatory-y += runtime-const.h mandatory-y += rwonce.h mandatory-y += sections.h mandatory-y += serial.h |