mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
numa: reduce code duplication by adding helper numa_get_node_for_cpu()
Replace repeated pattern for (i = 0; i < nb_numa_nodes; i++) { if (test_bit(idx, numa_info[i].node_cpu)) { ... break; with a helper function to lookup numa node index for cpu. Suggested-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Reviewed-by: Shannon Zhao <shannon.zhao@linaro.org> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
a06b1dae47
commit
6bea1ddf8b
7 changed files with 27 additions and 22 deletions
|
@ -413,10 +413,9 @@ static void fdt_add_cpu_nodes(const VirtBoardInfo *vbi)
|
|||
armcpu->mp_affinity);
|
||||
}
|
||||
|
||||
for (i = 0; i < nb_numa_nodes; i++) {
|
||||
if (test_bit(cpu, numa_info[i].node_cpu)) {
|
||||
qemu_fdt_setprop_cell(vbi->fdt, nodename, "numa-node-id", i);
|
||||
}
|
||||
i = numa_get_node_for_cpu(cpu);
|
||||
if (i < nb_numa_nodes) {
|
||||
qemu_fdt_setprop_cell(vbi->fdt, nodename, "numa-node-id", i);
|
||||
}
|
||||
|
||||
g_free(nodename);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue