The patch titled Subject: mm-meminit-inline-some-helper-functions-fix has been removed from the -mm tree. Its filename was mm-meminit-inline-some-helper-functions-fix.patch This patch was dropped because it was folded into mm-meminit-inline-some-helper-functions.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: mm-meminit-inline-some-helper-functions-fix mm/page_alloc.c: In function 'memmap_init_zone': mm/page_alloc.c:4287: error: implicit declaration of function 'early_pfn_in_nid' Cc: Mel Gorman <mgorman@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/page_alloc.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff -puN mm/page_alloc.c~mm-meminit-inline-some-helper-functions-fix mm/page_alloc.c --- a/mm/page_alloc.c~mm-meminit-inline-some-helper-functions-fix +++ a/mm/page_alloc.c @@ -936,8 +936,16 @@ static inline bool __meminit early_pfn_i { return meminit_pfn_in_nid(pfn, node, &early_pfnnid_cache); } + +#else + +static inline bool __meminit early_pfn_in_nid(unsigned long pfn, int node) +{ + return true; +} #endif + #ifdef CONFIG_CMA /* Free whole pageblock and set its migration type to MIGRATE_CMA. */ void __init init_cma_reserved_pageblock(struct page *page) _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are origin.patch mm-meminit-inline-some-helper-functions.patch mm-meminit-finish-initialisation-of-struct-pages-before-basic-setup-fix.patch devpts-if-initialization-failed-dont-crash-when-opening-dev-ptmx-fix.patch ipcshm-move-bug_on-check-into-shm_lock-fix.patch scsi-resolve-sg-buffer-const-ness-issue-fix.patch genalloc-rename-dev_get_gen_pool-to-gen_pool_get-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