[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250706210940.1720720-1-sidnayyar@google.com>
Date: Sun, 6 Jul 2025 21:09:40 +0000
From: Siddharth Nayyar <sidnayyar@...gle.com>
To: linux-kbuild@...r.kernel.org, linux-kernel@...r.kernel.org
Cc: Masahiro Yamada <masahiroy@...nel.org>, Nathan Chancellor <nathan@...nel.org>,
Nicolas Schier <nicolas.schier@...ux.dev>, Siddharth Nayyar <sidnayyar@...gle.com>
Subject: [PATCH] modpost: check for NULL filename pointer in find_module()
Pointer for dump filename can be NULL when a module is not created from
a dump file in modpost. The find_module() function should therefore
check whether the dump filename pointers are NULL before comparing them
using strcmp().
Signed-off-by: Siddharth Nayyar <sidnayyar@...gle.com>
---
scripts/mod/modpost.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
index 5ca7c268294e..9a64d0a55f89 100644
--- a/scripts/mod/modpost.c
+++ b/scripts/mod/modpost.c
@@ -178,8 +178,12 @@ static struct module *find_module(const char *filename, const char *modname)
struct module *mod;
list_for_each_entry(mod, &modules, list) {
- if (!strcmp(mod->dump_file, filename) &&
- !strcmp(mod->name, modname))
+ if (strcmp(mod->name, modname) != 0)
+ continue;
+ if (!mod->dump_file && !filename)
+ return mod;
+ if (mod->dump_file && filename &&
+ !strcmp(mod->dump_file, filename))
return mod;
}
return NULL;
--
2.50.0.727.gbf7dc18ff4-goog
Powered by blists - more mailing lists