Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'modules-for-v5.15' of git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux

Pull module updates from Jessica Yu:
"The only main change I have for this round of updates is the modules
MAINTAINERS update.

As I find myself with less time to devote to upstream these days, Luis
has kindly agreed to help maintain the module loader, to eventually
transition to being the primary maintainer. Since Luis is already very
involved upstream with experience maintaining various areas of the
kernel including the kmod usermode helper, I think he is a great fit
for this area of the kernel.

Summary:

- Add Luis Chamberlain as modules maintainer

- Fix for .ctors sections in module linker script"

* tag 'modules-for-v5.15' of git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux:
MAINTAINERS: Add Luis Chamberlain as modules maintainer
module: combine constructors in module linker script

+2
+1
MAINTAINERS
··· 12633 12633 F: drivers/media/dvb-frontends/mn88473* 12634 12634 12635 12635 MODULE SUPPORT 12636 + M: Luis Chamberlain <mcgrof@kernel.org> 12636 12637 M: Jessica Yu <jeyu@kernel.org> 12637 12638 S: Maintained 12638 12639 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
+1
scripts/module.lds.S
··· 24 24 __kcrctab 0 : { *(SORT(___kcrctab+*)) } 25 25 __kcrctab_gpl 0 : { *(SORT(___kcrctab_gpl+*)) } 26 26 27 + .ctors 0 : ALIGN(8) { *(SORT(.ctors.*)) *(.ctors) } 27 28 .init_array 0 : ALIGN(8) { *(SORT(.init_array.*)) *(.init_array) } 28 29 29 30 __jump_table 0 : ALIGN(8) { KEEP(*(__jump_table)) }