aboutsummaryrefslogtreecommitdiffstats
path: root/mm/hugetlb.c
diff options
context:
space:
mode:
Diffstat (limited to 'mm/hugetlb.c')
-rw-r--r--mm/hugetlb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/hugetlb.c b/mm/hugetlb.c
index e83ad2c9228c..2f8241f300f5 100644
--- a/mm/hugetlb.c
+++ b/mm/hugetlb.c
@@ -630,7 +630,7 @@ static struct page *alloc_fresh_huge_page_node(struct hstate *h, int nid)
630 if (h->order >= MAX_ORDER) 630 if (h->order >= MAX_ORDER)
631 return NULL; 631 return NULL;
632 632
633 page = alloc_pages_node(nid, 633 page = alloc_pages_exact_node(nid,
634 htlb_alloc_mask|__GFP_COMP|__GFP_THISNODE| 634 htlb_alloc_mask|__GFP_COMP|__GFP_THISNODE|
635 __GFP_REPEAT|__GFP_NOWARN, 635 __GFP_REPEAT|__GFP_NOWARN,
636 huge_page_order(h)); 636 huge_page_order(h));
@@ -649,7 +649,7 @@ static struct page *alloc_fresh_huge_page_node(struct hstate *h, int nid)
649 * Use a helper variable to find the next node and then 649 * Use a helper variable to find the next node and then
650 * copy it back to hugetlb_next_nid afterwards: 650 * copy it back to hugetlb_next_nid afterwards:
651 * otherwise there's a window in which a racer might 651 * otherwise there's a window in which a racer might
652 * pass invalid nid MAX_NUMNODES to alloc_pages_node. 652 * pass invalid nid MAX_NUMNODES to alloc_pages_exact_node.
653 * But we don't need to use a spin_lock here: it really 653 * But we don't need to use a spin_lock here: it really
654 * doesn't matter if occasionally a racer chooses the 654 * doesn't matter if occasionally a racer chooses the
655 * same nid as we do. Move nid forward in the mask even 655 * same nid as we do. Move nid forward in the mask even