Lines Matching refs:page_order
372 int page_order; in uninorth_create_gatt_table() local
385 size = page_order = num_entries = 0; in uninorth_create_gatt_table()
389 page_order = A_SIZE_32(temp)->page_order; in uninorth_create_gatt_table()
392 table = (char *) __get_free_pages(GFP_KERNEL, page_order); in uninorth_create_gatt_table()
405 uninorth_priv.pages_arr = kmalloc_array(1 << page_order, in uninorth_create_gatt_table()
411 table_end = table + ((PAGE_SIZE * (1 << page_order)) - 1); in uninorth_create_gatt_table()
423 bridge->gatt_table = vmap(uninorth_priv.pages_arr, (1 << page_order), 0, PAGE_KERNEL_NCG); in uninorth_create_gatt_table()
443 free_pages((unsigned long)table, page_order); in uninorth_create_gatt_table()
449 int page_order; in uninorth_free_gatt_table() local
455 page_order = A_SIZE_32(temp)->page_order; in uninorth_free_gatt_table()
465 table_end = table + ((PAGE_SIZE * (1 << page_order)) - 1); in uninorth_free_gatt_table()
470 free_pages((unsigned long) bridge->gatt_table_real, page_order); in uninorth_free_gatt_table()