This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 7d4050728c83 Merge tag 'vfs-6.13-rc1.fixes' of git://git.kernel.org/pub [...] new 335de24e5e77 modules: Ensure 64-bit alignment on __ksymtab_* sections new 03ddd2f17e28 modules: Add missing entry for __ex_table new f43922162184 module: Take const arg in validate_section_offset new 90f8f312db72 module: Factor out elf_validity_ehdr new c92aab819d56 module: Factor out elf_validity_cache_sechdrs new 3c5700aeabd8 module: Factor out elf_validity_cache_secstrings new fbc0e4e482aa module: Factor out elf_validity_cache_index_info new 0be41a9367d1 module: Factor out elf_validity_cache_index_mod new 9bd4982cf7d6 module: Factor out elf_validity_cache_index_sym new 0a9395334496 module: Factor out elf_validity_cache_index_str new f3f561218bb6 module: Group section index calculations together new 837031e052af module: Factor out elf_validity_cache_strtab new d979e3dffa93 module: Additional validation in elf_validity_cache_strtab new 2295cf87ed5a module: Reformat struct for code style new 84b4a51fce4c selftests: add new kallsyms selftests new af0847537031 selftests: kallsyms: add MODULE_DESCRIPTION new 7a56ca20c09d scripts: Remove export_report.pl new 2466b3120142 tests/module/gen_test_kallsyms.sh: use 0 value for variables new b5361254c902 Merge tag 'modules-6.13-rc1' of git://git.kernel.org/pub/s [...]
The 19 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: Makefile | 6 +- kernel/module/internal.h | 7 +- kernel/module/main.c | 569 ++++++++++++++++------ lib/Kconfig.debug | 105 ++++ lib/Makefile | 1 + lib/tests/Makefile | 1 + lib/tests/module/.gitignore | 4 + lib/tests/module/Makefile | 15 + lib/tests/module/gen_test_kallsyms.sh | 129 +++++ scripts/export_report.pl | 186 ------- scripts/module.lds.S | 9 +- tools/testing/selftests/{kmod => module}/Makefile | 4 +- tools/testing/selftests/module/config | 3 + tools/testing/selftests/module/find_symbol.sh | 81 +++ 14 files changed, 775 insertions(+), 345 deletions(-) create mode 100644 lib/tests/Makefile create mode 100644 lib/tests/module/.gitignore create mode 100644 lib/tests/module/Makefile create mode 100755 lib/tests/module/gen_test_kallsyms.sh delete mode 100755 scripts/export_report.pl copy tools/testing/selftests/{kmod => module}/Makefile (71%) create mode 100644 tools/testing/selftests/module/config create mode 100755 tools/testing/selftests/module/find_symbol.sh