s390/setup: do not complain about parameters handled in decompressor
authorVasily Gorbik <gor@linux.ibm.com>
Fri, 17 Feb 2023 13:00:54 +0000 (14:00 +0100)
committerHeiko Carstens <hca@linux.ibm.com>
Mon, 27 Feb 2023 14:29:36 +0000 (15:29 +0100)
Currently there are several kernel command line parameters which are
only parsed and handled in decompressor and not known to the kernel.
This leads to the following error message during kernel boot:

Unknown kernel command line parameters "mem=3G nokaslr", will be passed
to user space.

To avoid confusion, register those parameters with an empty stub so that
kernel does not complain about them.

Reported-by: Gerald Schaefer <gerald.schaefer@linux.ibm.com>
Reviewed-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
arch/s390/kernel/early.c

index 59eba19ae0f2af5bd404c5209c956da5e31d45cf..d26f02495636e66d50cc2ab086aafec9f92286cc 100644 (file)
 
 int __bootdata(is_full_image);
 
+#define decompressor_handled_param(param)                      \
+static int __init ignore_decompressor_param_##param(char *s)   \
+{                                                              \
+       return 0;                                               \
+}                                                              \
+early_param(#param, ignore_decompressor_param_##param)
+
+decompressor_handled_param(mem);
+decompressor_handled_param(vmalloc);
+decompressor_handled_param(dfltcc);
+decompressor_handled_param(noexec);
+decompressor_handled_param(facilities);
+decompressor_handled_param(nokaslr);
+#if IS_ENABLED(CONFIG_KVM)
+decompressor_handled_param(prot_virt);
+#endif
+
 static void __init reset_tod_clock(void)
 {
        union tod_clock clk;