From: Tiwei Bie Date: Fri, 11 Oct 2024 04:04:34 +0000 (+0800) Subject: um: Do not propagate mem parameter to kernel X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=cb055b2135d82db48ca0a3ff744b158fd5400eb2;p=users%2Fjedix%2Flinux-maple.git um: Do not propagate mem 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 "mem=2G", will be passed to user space. Signed-off-by: Tiwei Bie Link: https://patch.msgid.link/20241011040441.1586345-3-tiwei.btw@antgroup.com Signed-off-by: Johannes Berg --- diff --git a/arch/um/kernel/physmem.c b/arch/um/kernel/physmem.c index 636830fe00f25..d60df36267279 100644 --- a/arch/um/kernel/physmem.c +++ b/arch/um/kernel/physmem.c @@ -139,6 +139,8 @@ EXPORT_SYMBOL(phys_mapping); static int __init uml_mem_setup(char *line, int *add) { char *retptr; + + *add = 0; physmem_size = memparse(line,&retptr); return 0; }