The patch titled fix efi_memory_present_wrapper() has been removed from the -mm tree. Its filename was fix-efi_memory_present_wrapper.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: fix efi_memory_present_wrapper() From: "bibo,mao" <bibo.mao@xxxxxxxxx> efi_memory_present_wrapper() parameter start/end is physical address, but function memory_present parameter is PFN, this patch converts physical address to PFN. Signed-off-by: bibo, mao <bibo.mao@xxxxxxxxx> Cc: Andi Kleen <ak@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/i386/kernel/setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/i386/kernel/setup.c~fix-efi_memory_present_wrapper arch/i386/kernel/setup.c --- a/arch/i386/kernel/setup.c~fix-efi_memory_present_wrapper +++ a/arch/i386/kernel/setup.c @@ -846,7 +846,7 @@ efi_find_max_pfn(unsigned long start, un static int __init efi_memory_present_wrapper(unsigned long start, unsigned long end, void *arg) { - memory_present(0, start, end); + memory_present(0, PFN_UP(start), PFN_DOWN(end)); return 0; } _ Patches currently in -mm which might be from bibo.mao@xxxxxxxxx are origin.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