The patch titled Subject: mm: track-active-portions-of-a-section-at-boot-fix fix has been removed from the -mm tree. Its filename was mm-track-active-portions-of-a-section-at-boot-fix-fix.patch This patch was dropped because it was folded into mm-track-active-portions-of-a-section-at-boot.patch ------------------------------------------------------ From: Arnd Bergmann <arnd@xxxxxxxx> Subject: mm: track-active-portions-of-a-section-at-boot-fix fix A bugfix introduced a new warning as it marked a function as __init that is called by both __init and non-__init functions: WARNING: vmlinux.o(.text.unlikely+0x1b26): Section mismatch in reference from the function section_deactivate() to the function .init.text:section_active_mask() WARNING: vmlinux.o(.meminit.text+0x1ce0): Section mismatch in reference from the function sparse_add_section() to the function .init.text:section_active_mask() This removes the annotation again. Fixes: mmotm ("mm-track-active-portions-of-a-section-at-boot-fix") Link: http://lkml.kernel.org/r/20170123121509.3143377-1-arnd@xxxxxxxx Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx> Cc: Dan Williams <dan.j.williams@xxxxxxxxx> Cc: Johannes Weiner <hannes@xxxxxxxxxxx> Cc: Logan Gunthorpe <logang@xxxxxxxxxxxx> Cc: Mel Gorman <mgorman@xxxxxxxxxxxxxxxxxxx> Cc: Michal Hocko <mhocko@xxxxxxxx> Cc: Stephen Bates <stephen.bates@xxxxxxxxxxxxx> Cc: Vlastimil Babka <vbabka@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/sparse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN mm/sparse.c~mm-track-active-portions-of-a-section-at-boot-fix-fix mm/sparse.c --- a/mm/sparse.c~mm-track-active-portions-of-a-section-at-boot-fix-fix +++ a/mm/sparse.c @@ -173,8 +173,8 @@ static int __init section_active_index(p return (phys & ~(PA_SECTION_MASK)) / SECTION_ACTIVE_SIZE; } -static unsigned long __init section_active_mask(unsigned long pfn, - unsigned long nr_pages) +static unsigned long section_active_mask(unsigned long pfn, + unsigned long nr_pages) { int idx_start, idx_size; phys_addr_t start, size; _ Patches currently in -mm which might be from arnd@xxxxxxxx are mm-track-active-portions-of-a-section-at-boot.patch mm-support-section-unaligned-zone_device-memory-ranges-fix.patch mm-fs-reduce-fault-page_mkwrite-and-pfn_mkwrite-to-take-only-vmf-fix.patch userfaultfd-non-cooperative-add-event-for-memory-unmaps-fix-2.patch lib-add-config_test_sort-to-enable-self-test-of-sort-fix.patch lib-update-lz4-compressor-module.patch lib-update-lz4-compressor-module-fix.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