[PATCH v5 27/39] arm64/kernel: Move 'nokaslr' parsing out of early idreg code
Ard Biesheuvel
ardb at google.com
Fri Nov 24 02:19:07 PST 2023
From: Ard Biesheuvel <ardb at kernel.org>
Parsing and ignoring 'nokaslr' can be done from anywhere, except from
the code that runs very early and is therefore built with limitations on
the kind of relocations it is permitted to use.
So move it to a source file that is part of the ordinary kernel build.
Signed-off-by: Ard Biesheuvel <ardb at kernel.org>
---
arch/arm64/kernel/kaslr.c | 7 +++++++
arch/arm64/kernel/pi/idreg-override.c | 7 -------
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/arch/arm64/kernel/kaslr.c b/arch/arm64/kernel/kaslr.c
index efbeb8356769..1da3e25f9d9e 100644
--- a/arch/arm64/kernel/kaslr.c
+++ b/arch/arm64/kernel/kaslr.c
@@ -34,3 +34,10 @@ void __init kaslr_init(void)
pr_info("KASLR enabled\n");
__kaslr_is_enabled = true;
}
+
+static int __init parse_nokaslr(char *unused)
+{
+ /* nokaslr param handling is done by early cpufeature code */
+ return 0;
+}
+early_param("nokaslr", parse_nokaslr);
diff --git a/arch/arm64/kernel/pi/idreg-override.c b/arch/arm64/kernel/pi/idreg-override.c
index bcba0ce71af0..26961e0f94b7 100644
--- a/arch/arm64/kernel/pi/idreg-override.c
+++ b/arch/arm64/kernel/pi/idreg-override.c
@@ -198,13 +198,6 @@ static const struct {
{ "nokaslr", "arm64_sw.nokaslr=1" },
};
-static int __init parse_nokaslr(char *unused)
-{
- /* nokaslr param handling is done by early cpufeature code */
- return 0;
-}
-early_param("nokaslr", parse_nokaslr);
-
static int __init parse_hexdigit(const char *p, u64 *v)
{
// skip "0x" if it comes next
--
2.43.0.rc1.413.gea7ed67945-goog
More information about the linux-arm-kernel
mailing list