qemu: monitor: Use a more obvious iterator name

The algorithm that matches data from query-cpus and
query-hotpluggable-cpus is quite complex. Start using descriptive
iterator names to avoid confusion.
This commit is contained in:
Peter Krempa 2016-09-13 17:28:02 +02:00
parent 988218ca3f
commit 03376b6da0

View File

@ -1772,6 +1772,7 @@ qemuMonitorGetCPUInfoHotplug(struct qemuMonitorQueryHotpluggableCpusEntry *hotpl
char *tmp; char *tmp;
int order = 1; int order = 1;
size_t totalvcpus = 0; size_t totalvcpus = 0;
size_t mastervcpu; /* this iterator is used for iterating hotpluggable entities */
size_t i; size_t i;
size_t j; size_t j;
@ -1812,19 +1813,19 @@ qemuMonitorGetCPUInfoHotplug(struct qemuMonitorQueryHotpluggableCpusEntry *hotpl
/* transfer appropriate data from the hotpluggable list to corresponding /* transfer appropriate data from the hotpluggable list to corresponding
* entries. the entries returned by qemu may in fact describe multiple * entries. the entries returned by qemu may in fact describe multiple
* logical vcpus in the guest */ * logical vcpus in the guest */
j = 0; mastervcpu = 0;
for (i = 0; i < nhotplugvcpus; i++) { for (i = 0; i < nhotplugvcpus; i++) {
vcpus[j].socket_id = hotplugvcpus[i].socket_id; vcpus[mastervcpu].socket_id = hotplugvcpus[i].socket_id;
vcpus[j].core_id = hotplugvcpus[i].core_id; vcpus[mastervcpu].core_id = hotplugvcpus[i].core_id;
vcpus[j].thread_id = hotplugvcpus[i].thread_id; vcpus[mastervcpu].thread_id = hotplugvcpus[i].thread_id;
vcpus[j].vcpus = hotplugvcpus[i].vcpus; vcpus[mastervcpu].vcpus = hotplugvcpus[i].vcpus;
VIR_STEAL_PTR(vcpus[j].qom_path, hotplugvcpus[i].qom_path); VIR_STEAL_PTR(vcpus[mastervcpu].qom_path, hotplugvcpus[i].qom_path);
VIR_STEAL_PTR(vcpus[j].alias, hotplugvcpus[i].alias); VIR_STEAL_PTR(vcpus[mastervcpu].alias, hotplugvcpus[i].alias);
VIR_STEAL_PTR(vcpus[j].type, hotplugvcpus[i].type); VIR_STEAL_PTR(vcpus[mastervcpu].type, hotplugvcpus[i].type);
vcpus[j].id = hotplugvcpus[i].enable_id; vcpus[mastervcpu].id = hotplugvcpus[i].enable_id;
/* skip over vcpu entries covered by this hotpluggable entry */ /* calculate next master vcpu (hotpluggable unit) entry */
j += hotplugvcpus[i].vcpus; mastervcpu += hotplugvcpus[i].vcpus;
} }
/* match entries from query cpus to the output array taking into account /* match entries from query cpus to the output array taking into account