Lines Matching refs:numa_distance
37 static u8 *numa_distance; variable
266 if (!numa_distance) in numa_free_distance()
270 sizeof(numa_distance[0]); in numa_free_distance()
272 memblock_free(__pa(numa_distance), size); in numa_free_distance()
274 numa_distance = NULL; in numa_free_distance()
288 size = nr_node_ids * nr_node_ids * sizeof(numa_distance[0]); in numa_alloc_distance()
296 numa_distance = __va(phys); in numa_alloc_distance()
302 numa_distance[i * numa_distance_cnt + j] = i == j ? in numa_alloc_distance()
325 if (!numa_distance) { in numa_set_distance()
344 numa_distance[from * numa_distance_cnt + to] = distance; in numa_set_distance()
354 return numa_distance[from * numa_distance_cnt + to]; in __node_distance()