aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mm/init_64.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/mm/init_64.c')
-rw-r--r--arch/x86/mm/init_64.c17
1 files changed, 12 insertions, 5 deletions
diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c
index 819dad973b13..bf7bf1de6c25 100644
--- a/arch/x86/mm/init_64.c
+++ b/arch/x86/mm/init_64.c
@@ -799,12 +799,13 @@ void free_initrd_mem(unsigned long start, unsigned long end)
799} 799}
800#endif 800#endif
801 801
802void __init reserve_bootmem_generic(unsigned long phys, unsigned len) 802int __init reserve_bootmem_generic(unsigned long phys, unsigned len, int flags)
803{ 803{
804#ifdef CONFIG_NUMA 804#ifdef CONFIG_NUMA
805 int nid, next_nid; 805 int nid, next_nid;
806#endif 806#endif
807 unsigned long pfn = phys >> PAGE_SHIFT; 807 unsigned long pfn = phys >> PAGE_SHIFT;
808 int ret;
808 809
809 if (pfn >= end_pfn) { 810 if (pfn >= end_pfn) {
810 /* 811 /*
@@ -812,11 +813,11 @@ void __init reserve_bootmem_generic(unsigned long phys, unsigned len)
812 * firmware tables: 813 * firmware tables:
813 */ 814 */
814 if (pfn < max_pfn_mapped) 815 if (pfn < max_pfn_mapped)
815 return; 816 return -EFAULT;
816 817
817 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %u\n", 818 printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %u\n",
818 phys, len); 819 phys, len);
819 return; 820 return -EFAULT;
820 } 821 }
821 822
822 /* Should check here against the e820 map to avoid double free */ 823 /* Should check here against the e820 map to avoid double free */
@@ -824,9 +825,13 @@ void __init reserve_bootmem_generic(unsigned long phys, unsigned len)
824 nid = phys_to_nid(phys); 825 nid = phys_to_nid(phys);
825 next_nid = phys_to_nid(phys + len - 1); 826 next_nid = phys_to_nid(phys + len - 1);
826 if (nid == next_nid) 827 if (nid == next_nid)
827 reserve_bootmem_node(NODE_DATA(nid), phys, len, BOOTMEM_DEFAULT); 828 ret = reserve_bootmem_node(NODE_DATA(nid), phys, len, flags);
828 else 829 else
829 reserve_bootmem(phys, len, BOOTMEM_DEFAULT); 830 ret = reserve_bootmem(phys, len, flags);
831
832 if (ret != 0)
833 return ret;
834
830#else 835#else
831 reserve_bootmem(phys, len, BOOTMEM_DEFAULT); 836 reserve_bootmem(phys, len, BOOTMEM_DEFAULT);
832#endif 837#endif
@@ -835,6 +840,8 @@ void __init reserve_bootmem_generic(unsigned long phys, unsigned len)
835 dma_reserve += len / PAGE_SIZE; 840 dma_reserve += len / PAGE_SIZE;
836 set_dma_reserve(dma_reserve); 841 set_dma_reserve(dma_reserve);
837 } 842 }
843
844 return 0;
838} 845}
839 846
840int kern_addr_valid(unsigned long addr) 847int kern_addr_valid(unsigned long addr)