]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
um: Do not propagate noreboot parameter to kernel
authorTiwei Bie <tiwei.btw@antgroup.com>
Fri, 11 Oct 2024 04:04:37 +0000 (12:04 +0800)
committerJohannes Berg <johannes.berg@intel.com>
Wed, 23 Oct 2024 07:52:48 +0000 (09:52 +0200)
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 <tiwei.btw@antgroup.com>
Link: https://patch.msgid.link/20241011040441.1586345-6-tiwei.btw@antgroup.com
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
arch/um/os-Linux/skas/process.c

index 2286486bb0f3783adb4708d2222e9aa60628374b..8b328eb9d1f783155d36cea5eabd1573b3a5070b 100644 (file)
@@ -622,6 +622,7 @@ static bool noreboot;
 
 static int __init noreboot_cmd_param(char *str, int *add)
 {
+       *add = 0;
        noreboot = true;
        return 0;
 }