The patch titled Subject: init: clean up early_param_on_off() macro has been added to the -mm tree. Its filename is init-clean-up-early_param_on_off-macro.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/init-clean-up-early_param_on_off-macro.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/init-clean-up-early_param_on_off-macro.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Masahiro Yamada <masahiroy@xxxxxxxxxx> Subject: init: clean up early_param_on_off() macro Use early_param() to define early_param_on_off(). Link: https://lkml.kernel.org/r/20210201041532.4025025-1-masahiroy@xxxxxxxxxx Signed-off-by: Masahiro Yamada <masahiroy@xxxxxxxxxx> Reviewed-by: Johan Hovold <johan@xxxxxxxxxx> Reviewed-by: Miguel Ojeda <ojeda@xxxxxxxxxx> Cc: Masahiro Yamada <masahiroy@xxxxxxxxxx> Cc: Joe Perches <joe@xxxxxxxxxxx> Cc: Nick Desaulniers <ndesaulniers@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/init.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/include/linux/init.h~init-clean-up-early_param_on_off-macro +++ a/include/linux/init.h @@ -277,14 +277,14 @@ struct obs_kernel_param { var = 1; \ return 0; \ } \ - __setup_param(str_on, parse_##var##_on, parse_##var##_on, 1); \ + early_param(str_on, parse_##var##_on); \ \ static int __init parse_##var##_off(char *arg) \ { \ var = 0; \ return 0; \ } \ - __setup_param(str_off, parse_##var##_off, parse_##var##_off, 1) + early_param(str_off, parse_##var##_off) /* Relies on boot_command_line being set */ void __init parse_early_param(void); _ Patches currently in -mm which might be from masahiroy@xxxxxxxxxx are init-versionc-remove-version_linux_version_code-symbol.patch init-clean-up-early_param_on_off-macro.patch