[PATCH v2 05/29] modpost: re-add warning about missing *.mod file
From: Masahiro Yamada
Date: Sun May 24 2020 - 11:43:24 EST
This reverts 4be40e22233c ("kbuild: do not emit src version warning for
non-modules").
I do not fully understand what that commit addressed, but commit
91341d4b2c19 ("kbuild: introduce new option to enhance section mismatch
analysis") introduced partial section checks by using modpost. built-in.o
was parsed by modpost. Even modules had a problem because *.mod files
were created after the modpost check.
Commit b7dca6dd1e59 ("kbuild: create *.mod with full directory path and
remove MODVERDIR") stopped doing that. Now that modpost is only invoked
after the directory descend, *.mod files should always exist at the
modpost stage. If not, something went wrong, which should be warned.
Signed-off-by: Masahiro Yamada <masahiroy@xxxxxxxxxx>
---
Changes in v2: None
scripts/mod/sumversion.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/scripts/mod/sumversion.c b/scripts/mod/sumversion.c
index f9aa532d93cf..f9df0b1863f1 100644
--- a/scripts/mod/sumversion.c
+++ b/scripts/mod/sumversion.c
@@ -402,9 +402,11 @@ void get_src_version(const char *modname, char sum[], unsigned sumlen)
(int)strlen(modname) - 1, modname);
buf = read_text_file(filelist);
- if (!buf)
- /* not a module or .mod file missing - ignore */
+ if (!buf) {
+ warn("failed to open %s. cannot calculate checksum\n",
+ filelist);
return;
+ }
pos = buf;
firstline = get_line(&pos);
--
2.25.1