The patch titled fix section mismatch warning in lockdep has been removed from the -mm tree. Its filename was fix-section-mismatch-warning-in-lockdep.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: fix section mismatch warning in lockdep From: Sam Ravnborg <sam@xxxxxxxxxxxx> lockdep_init() is marked __init but used in several places outside __init code. This causes following warnings: $ scripts/mod/modpost kernel/lockdep.o WARNING: kernel/built-in.o - Section mismatch: reference to .init.text:lockdep_init from .text.lockdep_init_map after 'lockdep_init_map' (at offset 0x105) WARNING: kernel/built-in.o - Section mismatch: reference to .init.text:lockdep_init from .text.lockdep_reset_lock after 'lockdep_reset_lock' (at offset 0x35) WARNING: kernel/built-in.o - Section mismatch: reference to .init.text:lockdep_init from .text.__lock_acquire after '__lock_acquire' (at offset 0xb2) The warnings are less obviously due to heavy inlining by gcc - this is not altered. Fix the section mismatch warnings by removing the __init marking, which seems obviously wrong. Signed-off-by: Sam Ravnborg <sam@xxxxxxxxxxxx> Acked-by: Ingo Molnar <mingo@xxxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/lockdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/lockdep.c~fix-section-mismatch-warning-in-lockdep kernel/lockdep.c --- a/kernel/lockdep.c~fix-section-mismatch-warning-in-lockdep +++ a/kernel/lockdep.c @@ -2602,7 +2602,7 @@ out_restore: raw_local_irq_restore(flags); } -void __init lockdep_init(void) +void lockdep_init(void) { int i; _ Patches currently in -mm which might be from sam@xxxxxxxxxxxx are origin.patch kbuild-override-build-timestamp.patch kconfig-abort-configuration-with-recursive-dependencies.patch allow-kernel-to-build-on-cygwin.patch pcie-fix-section-mismatch-warning.patch aer-fix-section-mismatch-warning.patch pci-do-not-mark-exported-functions-as-__devinit.patch x86_64-fix-section-mismatch-warnings.patch fix-section-mismatch-warning-in-lib-swiotlbc.patch extend-print_symbol-capability.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html