The patch titled x86_64: free_bootmem should take a physical address has been removed from the -mm tree. Its filename was x86_64-free_bootmem-should-take-phy.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: x86_64: free_bootmem should take a physical address From: "Yinghai Lu" <yhlu.kernel@xxxxxxxxx> So use nodedata_phys directly. Signed-off-by: Yinghai Lu <yhlu.kernel@xxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: Christoph Lameter <clameter@xxxxxxx> Cc: Andi Kleen <ak@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/x86/mm/numa_64.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -puN arch/x86/mm/numa_64.c~x86_64-free_bootmem-should-take-phy arch/x86/mm/numa_64.c --- a/arch/x86/mm/numa_64.c~x86_64-free_bootmem-should-take-phy +++ a/arch/x86/mm/numa_64.c @@ -221,8 +221,7 @@ void __init setup_node_bootmem(int nodei bootmap_pages<<PAGE_SHIFT, PAGE_SIZE); if (bootmap == NULL) { if (nodedata_phys < start || nodedata_phys >= end) - free_bootmem((unsigned long)node_data[nodeid], - pgdat_size); + free_bootmem(nodedata_phys, pgdat_size); node_data[nodeid] = NULL; return; } _ Patches currently in -mm which might be from yhlu.kernel@xxxxxxxxx are origin.patch mm-fix-boundary-checking-in-free_bootmem_core.patch git-x86.patch x86_64-do-not-reserve-ramdisk-two-times.patch mm-make-mem_map-allocation-continuous.patch mm-make-mem_map-allocation-continuous-checkpatch-fixes.patch mm-fix-alloc_bootmem_core-to-use-fast-searching-for-all-nodes.patch mm-allocate-section_map-for-sparse_init.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