Lines Matching refs:page_order
374 int page_order; in uninorth_create_gatt_table() local
387 size = page_order = num_entries = 0; in uninorth_create_gatt_table()
391 page_order = A_SIZE_32(temp)->page_order; in uninorth_create_gatt_table()
394 table = (char *) __get_free_pages(GFP_KERNEL, page_order); in uninorth_create_gatt_table()
407 uninorth_priv.pages_arr = kmalloc_array(1 << page_order, in uninorth_create_gatt_table()
413 table_end = table + ((PAGE_SIZE * (1 << page_order)) - 1); in uninorth_create_gatt_table()
425 bridge->gatt_table = vmap(uninorth_priv.pages_arr, (1 << page_order), 0, PAGE_KERNEL_NCG); in uninorth_create_gatt_table()
445 free_pages((unsigned long)table, page_order); in uninorth_create_gatt_table()
451 int page_order; in uninorth_free_gatt_table() local
457 page_order = A_SIZE_32(temp)->page_order; in uninorth_free_gatt_table()
467 table_end = table + ((PAGE_SIZE * (1 << page_order)) - 1); in uninorth_free_gatt_table()
472 free_pages((unsigned long) bridge->gatt_table_real, page_order); in uninorth_free_gatt_table()