From 0262531556a3543f33c7a553b43e697377f8bd99 Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Tue, 10 Mar 2020 01:06:39 -0700 Subject: [PATCH] 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. --- libkmod/libkmod-config.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); } } -- 2.39.2