Introduce flags for reserve_bootmem()
[deliverable/linux.git] / arch / x86 / mm / init_64.c
index 9b61c75a23556f76898ca2f8b1d26d71b206ca26..5fe880fc305d03c90131948bab8c4cd16096e9f9 100644 (file)
@@ -644,9 +644,9 @@ void __init reserve_bootmem_generic(unsigned long phys, unsigned len)
 
        /* Should check here against the e820 map to avoid double free */
 #ifdef CONFIG_NUMA
-       reserve_bootmem_node(NODE_DATA(nid), phys, len);
+       reserve_bootmem_node(NODE_DATA(nid), phys, len, BOOTMEM_DEFAULT);
 #else
-       reserve_bootmem(phys, len);
+       reserve_bootmem(phys, len, BOOTMEM_DEFAULT);
 #endif
        if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
                dma_reserve += len / PAGE_SIZE;
This page took 0.03438 seconds and 5 git commands to generate.