The patch titled Subject: mm-meminit-inline-some-helper-functions-fix2 has been removed from the -mm tree. Its filename was mm-meminit-inline-some-helper-functions-fix2.patch This patch was dropped because it was folded into mm-meminit-inline-some-helper-functions.patch ------------------------------------------------------ From: Michal Hocko <mhocko@xxxxxxx> Subject: mm-meminit-inline-some-helper-functions-fix2 mm/page_alloc.c: In function `deferred_init_memmap': mm/page_alloc.c:1135:4: error: implicit declaration of function `meminit_pfn_in_nid' [-Werror=implicit-function-declaration] if (!meminit_pfn_in_nid(pfn, nid, &nid_init_state)) { ^ because randconfig decided to disable CONFIG_NODES_SPAN_OTHER_NODES. Signed-off-by: Michal Hocko <mhocko@xxxxxxx> Cc: Mel Gorman <mgorman@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/page_alloc.c | 5 +++++ 1 file changed, 5 insertions(+) diff -puN mm/page_alloc.c~mm-meminit-inline-some-helper-functions-fix2 mm/page_alloc.c --- a/mm/page_alloc.c~mm-meminit-inline-some-helper-functions-fix2 +++ a/mm/page_alloc.c @@ -943,6 +943,11 @@ static inline bool __meminit early_pfn_i { return true; } +static inline bool __meminit meminit_pfn_in_nid(unsigned long pfn, int node, + struct mminit_pfnnid_cache *state) +{ + return true; +} #endif _ Patches currently in -mm which might be from mhocko@xxxxxxx are origin.patch mm-meminit-inline-some-helper-functions.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