diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-12-21 11:24:32 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-12-21 11:24:32 -0800 |
commit | a016546ba60cbf3243f10670ae24fbd0bb343c08 (patch) | |
tree | 98f491ce434677ca9e1de50a29adc1cfc3b0a2d8 /scripts/mod/modpost.h | |
parent | 9c707ba99f1b638e32724691b18fd1429e23b7f4 (diff) | |
parent | 9435dc77a33fa20afec7cd35ceaae5f7f42dbbe2 (diff) | |
download | linux-a016546ba60cbf3243f10670ae24fbd0bb343c08.tar.gz linux-a016546ba60cbf3243f10670ae24fbd0bb343c08.tar.bz2 linux-a016546ba60cbf3243f10670ae24fbd0bb343c08.zip |
Merge tag 'kbuild-fixes-v6.13-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild
Pull Kbuild fixes from Masahiro Yamada:
- Remove stale code in usr/include/headers_check.pl
- Fix issues in the user-mode-linux Debian package
- Fix false-positive "export twice" errors in modpost
* tag 'kbuild-fixes-v6.13-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild:
modpost: distinguish same module paths from different dump files
kbuild: deb-pkg: Do not install maint scripts for arch 'um'
kbuild: deb-pkg: add debarch for ARCH=um
kbuild: Drop support for include/asm-<arch> in headers_check.pl
Diffstat (limited to 'scripts/mod/modpost.h')
-rw-r--r-- | scripts/mod/modpost.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/mod/modpost.h b/scripts/mod/modpost.h index 49848fcbe2a1..8b72c227ebf4 100644 --- a/scripts/mod/modpost.h +++ b/scripts/mod/modpost.h @@ -95,14 +95,15 @@ struct module_alias { /** * struct module - represent a module (vmlinux or *.ko) * + * @dump_file: path to the .symvers file if loaded from a file * @aliases: list head for module_aliases */ struct module { struct list_head list; struct list_head exported_symbols; struct list_head unresolved_symbols; + const char *dump_file; bool is_gpl_compatible; - bool from_dump; /* true if module was loaded from *.symvers */ bool is_vmlinux; bool seen; bool has_init; |