diff options
author | Tiwei Bie <[email protected]> | 2024-10-11 12:04:35 +0800 |
---|---|---|
committer | Johannes Berg <[email protected]> | 2024-10-23 09:52:48 +0200 |
commit | 5c78a58388e732974986832e6f70c7f58ee3415e (patch) | |
tree | 28b7c00713f6ded37f616a5c54e567985d72a67e | |
parent | cb055b2135d82db48ca0a3ff744b158fd5400eb2 (diff) |
um: Do not propagate uml_dir parameter to kernel
This parameter is UML specific and is unknown to kernel. It should not
be propagated to kernel, otherwise it will be passed to user space as
an environment option by kernel with a warning like:
Unknown kernel command line parameters "uml_dir=/foo", 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/umid.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/um/os-Linux/umid.c b/arch/um/os-Linux/umid.c index e09d65b05d1c..eb523ab1e218 100644 --- a/arch/um/os-Linux/umid.c +++ b/arch/um/os-Linux/umid.c @@ -358,6 +358,8 @@ char *get_umid(void) static int __init set_uml_dir(char *name, int *add) { + *add = 0; + if (*name == '\0') { os_warn("uml_dir can't be an empty string\n"); return 0; |