aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiwei Bie <[email protected]>2024-10-11 12:04:37 +0800
committerJohannes Berg <[email protected]>2024-10-23 09:52:48 +0200
commit45aa6026d16792bedf5be5aaf70b2779cc608a28 (patch)
treedc56357fa143d4c56117c684a5f7811cb5ffcd97
parent7da0c611579b722ac649cd5bc4a0e8151f70e9ee (diff)
um: Do not propagate noreboot parameter to kernel
This parameter is UML specific and is unknown to kernel. It should not be propagated to kernel, otherwise it could be passed to user space as a command line option by kernel with a warning like: Unknown kernel command line parameters "noreboot", will be passed to user space. Signed-off-by: Tiwei Bie <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Johannes Berg <[email protected]>
-rw-r--r--arch/um/os-Linux/skas/process.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/um/os-Linux/skas/process.c b/arch/um/os-Linux/skas/process.c
index 2286486bb0f3..8b328eb9d1f7 100644
--- a/arch/um/os-Linux/skas/process.c
+++ b/arch/um/os-Linux/skas/process.c
@@ -622,6 +622,7 @@ static bool noreboot;
static int __init noreboot_cmd_param(char *str, int *add)
{
+ *add = 0;
noreboot = true;
return 0;
}