From: Lucas De Marchi Date: Tue, 10 Mar 2020 08:06:39 +0000 (-0700) Subject: libkmod: ignore kcmdline option if we fail to parse modname X-Git-Tag: v28~21 X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fkmod.git;a=commitdiff_plain;h=0262531556a3543f33c7a553b43e697377f8bd99 libkmod: ignore kcmdline option if we fail to parse modname The error message is saying we are ignoring the option on the kernel command line, so just do it. --- diff --git a/libkmod/libkmod-config.c b/libkmod/libkmod-config.c index 7b62367..971f20b 100644 --- a/libkmod/libkmod-config.c +++ b/libkmod/libkmod-config.c @@ -488,8 +488,9 @@ static void kcmdline_parse_result(struct kmod_config *config, char *modname, if (underscores(modname) < 0) { ERR(config->ctx, "Ignoring bad option on kernel command line while parsing module name: '%s'\n", modname); + } else { + kmod_config_add_options(config, modname, param); } - kmod_config_add_options(config, modname, param); } }