The following changes since commit d36f6efbe0cb422fe1e4475717d75f3737088832: module: Fix use-after-free bug in read_file_mod_stats() (2023-05-22 14:13:13 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git/ tags/v6.5-rc1-modules-next for you to fetch changes up to 0eeaf1eb40a34fddd1d568a9b32c3d6669238743: kallsyms: make kallsyms_show_value() as generic function (2023-06-08 12:27:20 -0700) ---------------------------------------------------------------- v6.5-rc1-modules-next The changes queued up for v6.5-rc1 for modules are pretty tame, mostly code removal of moving of code. Only two minor functional changes are made, the only one which stands out is Sebastian Andrzej Siewior's simplification of module reference counting by removing preempt_disable() and that has been tested on linux-next for well over a month without no regressions. I'm now, I guess, also a kitchen sink for some kallsyms changes. ---------------------------------------------------------------- Arnd Bergmann (1): kallsyms: remove unused arch_get_kallsym() helper Maninder Singh (3): kallsyms: remove unsed API lookup_symbol_attrs kallsyms: move kallsyms_show_value() out of kallsyms.c kallsyms: make kallsyms_show_value() as generic function Sebastian Andrzej Siewior (1): module: Remove preempt_disable() from module reference counting. include/linux/kallsyms.h | 17 +---- include/linux/module.h | 9 --- kernel/Makefile | 2 +- kernel/kallsyms.c | 91 +---------------------- kernel/ksyms_common.c | 43 +++++++++++ kernel/module/kallsyms.c | 28 ------- kernel/module/main.c | 7 -- tools/testing/selftests/bpf/progs/bpf_iter_ksym.c | 4 +- 8 files changed, 49 insertions(+), 152 deletions(-) create mode 100644 kernel/ksyms_common.c