The patch titled Subject: initramfs: fix another section mismatch has been added to the -mm tree. Its filename is initramfs-fix-another-section-mismatch.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/initramfs-fix-another-section-mismatch.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/initramfs-fix-another-section-mismatch.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Arnd Bergmann <arnd@xxxxxxxx> Subject: initramfs: fix another section mismatch Building with gcc-10 causes a harmless warning, similar to the gcc-4.6 warning that Geert fixed last year: WARNING: modpost: vmlinux.o(.text.unlikely+0xe69): Section mismatch in reference from the function kexec_free_initrd() to the function .init.text:free_initrd_mem() The function kexec_free_initrd() references the function __init free_initrd_mem(). This is often because kexec_free_initrd lacks a __init annotation or the annotation of free_initrd_mem is wrong. Add the missing __init annotations. Link: http://lkml.kernel.org/r/20200429190135.66411-1-arnd@xxxxxxxx Fixes: 4ada1e810038 ("initramfs: fix populate_initrd_image() section mismatch") Fixes: 23091e287355 ("initramfs: cleanup initrd freeing") Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx> Cc: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> Cc: Mike Rapoport <rppt@xxxxxxxxxxxxx> Cc: Arnd Bergmann <arnd@xxxxxxxx> Cc: Christoph Hellwig <hch@xxxxxx> Cc: Catalin Marinas <catalin.marinas@xxxxxxx> Cc: Steven Price <steven.price@xxxxxxx> Cc: Alexander Viro <viro@xxxxxxxxxxxxxxxxxx> Cc: Guan Xuetao <gxt@xxxxxxxxxx> Cc: Russell King <linux@xxxxxxxxxxxxxxx> Cc: Will Deacon <will.deacon@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- init/initramfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/init/initramfs.c~initramfs-fix-another-section-mismatch +++ a/init/initramfs.c @@ -542,7 +542,7 @@ void __weak free_initrd_mem(unsigned lon } #ifdef CONFIG_KEXEC_CORE -static bool kexec_free_initrd(void) +static bool __init kexec_free_initrd(void) { unsigned long crashk_start = (unsigned long)__va(crashk_res.start); unsigned long crashk_end = (unsigned long)__va(crashk_res.end); @@ -565,7 +565,7 @@ static bool kexec_free_initrd(void) return true; } #else -static inline bool kexec_free_initrd(void) +static inline bool __init kexec_free_initrd(void) { return false; } _ Patches currently in -mm which might be from arnd@xxxxxxxx are initramfs-fix-another-section-mismatch.patch