]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
riscv: make runtime const not usable by modules
authorJisheng Zhang <jszhang@kernel.org>
Sat, 21 Feb 2026 02:37:31 +0000 (10:37 +0800)
committerPaul Walmsley <pjw@kernel.org>
Sun, 5 Apr 2026 00:37:31 +0000 (18:37 -0600)
Similar as commit 284922f4c563 ("x86: uaccess: don't use runtime-const
rewriting in modules") does, make riscv's runtime const not usable by
modules too, to "make sure this doesn't get forgotten the next time
somebody wants to do runtime constant optimizations". The reason is
well explained in the above commit: "The runtime-const infrastructure
was never designed to handle the modular case, because the constant
fixup is only done at boot time for core kernel code."

Signed-off-by: Jisheng Zhang <jszhang@kernel.org>
Link: https://patch.msgid.link/20260221023731.3476-1-jszhang@kernel.org
Signed-off-by: Paul Walmsley <pjw@kernel.org>
arch/riscv/include/asm/runtime-const.h

index d766e2b9e6df1bdd2a240f7fe7d5d24b98f39f9a..900db0a103d0586fe46f6958b21ab5fe212a4c4f 100644 (file)
@@ -2,6 +2,10 @@
 #ifndef _ASM_RISCV_RUNTIME_CONST_H
 #define _ASM_RISCV_RUNTIME_CONST_H
 
+#ifdef MODULE
+  #error "Cannot use runtime-const infrastructure from modules"
+#endif
+
 #include <asm/asm.h>
 #include <asm/alternative.h>
 #include <asm/cacheflush.h>