Lines Matching refs:order
605 static struct page *rb_alloc_aux_page(int node, int order) in rb_alloc_aux_page() argument
609 if (order > MAX_ORDER) in rb_alloc_aux_page()
610 order = MAX_ORDER; in rb_alloc_aux_page()
613 page = alloc_pages_node(node, PERF_AUX_GFP, order); in rb_alloc_aux_page()
614 } while (!page && order--); in rb_alloc_aux_page()
616 if (page && order) { in rb_alloc_aux_page()
623 split_page(page, order); in rb_alloc_aux_page()
625 set_page_private(page, order); in rb_alloc_aux_page()
708 int last, order; in rb_alloc_aux() local
710 order = min(max_order, ilog2(nr_pages - rb->aux_nr_pages)); in rb_alloc_aux()
711 page = rb_alloc_aux_page(node, order); in rb_alloc_aux()