Lines Matching refs:page_order
373 int page_order; in uninorth_create_gatt_table() local
386 size = page_order = num_entries = 0; in uninorth_create_gatt_table()
390 page_order = A_SIZE_32(temp)->page_order; in uninorth_create_gatt_table()
393 table = (char *) __get_free_pages(GFP_KERNEL, page_order); in uninorth_create_gatt_table()
406 uninorth_priv.pages_arr = kmalloc_array(1 << page_order, in uninorth_create_gatt_table()
412 table_end = table + ((PAGE_SIZE * (1 << page_order)) - 1); in uninorth_create_gatt_table()
424 bridge->gatt_table = vmap(uninorth_priv.pages_arr, (1 << page_order), 0, PAGE_KERNEL_NCG); in uninorth_create_gatt_table()
444 free_pages((unsigned long)table, page_order); in uninorth_create_gatt_table()
450 int page_order; in uninorth_free_gatt_table() local
456 page_order = A_SIZE_32(temp)->page_order; in uninorth_free_gatt_table()
466 table_end = table + ((PAGE_SIZE * (1 << page_order)) - 1); in uninorth_free_gatt_table()
471 free_pages((unsigned long) bridge->gatt_table_real, page_order); in uninorth_free_gatt_table()