The patch titled Subject: mn10300: Declare __pfn_to_phys() to fix build error has been removed from the -mm tree. Its filename was libnvdimm-pfn-pmem-allocate-memmap-array-in-persistent-memory-fix.patch This patch was dropped because it was folded into libnvdimm-pfn-pmem-allocate-memmap-array-in-persistent-memory.patch ------------------------------------------------------ From: Guenter Roeck <linux@xxxxxxxxxxxx> Subject: mn10300: Declare __pfn_to_phys() to fix build error __pfn_to_phys() was introduced with commit 8b79eb6f5b53e ("libnvdimm, pfn, pmem: allocate memmap array in persistent memory") but not declared for mn10300. This results in the following build error. mm/page_alloc.c: In function 'memmap_init_zone': mm/page_alloc.c:4610:9: error: implicit declaration of function '__pfn_to_phys' Fixes: 8b79eb6f5b53e ("libnvdimm, pfn, pmem: allocate memmap array in persistent memory") Signed-off-by: Guenter Roeck <linux@xxxxxxxxxxxx> Cc: Dan Williams <dan.j.williams@xxxxxxxxx> Cc: Christoph Hellwig <hch@xxxxxx> Cc: Dave Chinner <david@xxxxxxxxxxxxx> Cc: Ross Zwisler <ross.zwisler@xxxxxxxxxxxxxxx> Cc: David Howells <dhowells@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/mn10300/include/asm/page.h | 1 + 1 file changed, 1 insertion(+) diff -puN arch/mn10300/include/asm/page.h~libnvdimm-pfn-pmem-allocate-memmap-array-in-persistent-memory-fix arch/mn10300/include/asm/page.h --- a/arch/mn10300/include/asm/page.h~libnvdimm-pfn-pmem-allocate-memmap-array-in-persistent-memory-fix +++ a/arch/mn10300/include/asm/page.h @@ -107,6 +107,7 @@ static inline int get_order(unsigned lon #define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT) #define pfn_to_page(pfn) (mem_map + ((pfn) - __pfn_disp)) #define page_to_pfn(page) ((unsigned long)((page) - mem_map) + __pfn_disp) +#define __pfn_to_phys(pfn) PFN_PHYS(pfn) #define pfn_valid(pfn) \ ({ \ _ Patches currently in -mm which might be from linux@xxxxxxxxxxxx are libnvdimm-pfn-pmem-allocate-memmap-array-in-persistent-memory.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