Skip to content

Commit 6dcaf9f

Browse files
committed
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 parents 1511e5d + ced75a2 commit 6dcaf9f

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

MAINTAINERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12633,6 +12633,7 @@ Q: http://patchwork.linuxtv.org/project/linux-media/list/
1263312633
F: drivers/media/dvb-frontends/mn88473*
1263412634

1263512635
MODULE SUPPORT
12636+
M: Luis Chamberlain <[email protected]>
1263612637
M: Jessica Yu <[email protected]>
1263712638
S: Maintained
1263812639
T: git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next

scripts/module.lds.S

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ SECTIONS {
2424
__kcrctab 0 : { *(SORT(___kcrctab+*)) }
2525
__kcrctab_gpl 0 : { *(SORT(___kcrctab_gpl+*)) }
2626

27+
.ctors 0 : ALIGN(8) { *(SORT(.ctors.*)) *(.ctors) }
2728
.init_array 0 : ALIGN(8) { *(SORT(.init_array.*)) *(.init_array) }
2829

2930
__jump_table 0 : ALIGN(8) { KEEP(*(__jump_table)) }

0 commit comments

Comments
 (0)