1
0

qemu: Add missing 'p' to qemuCgrouEmulatorAllNodesRestore

This commit is contained in:
Peter Krempa 2016-09-13 12:24:02 +02:00
parent 34a6e84748
commit f428ff8ad4
4 changed files with 6 additions and 6 deletions

View File

@ -1149,7 +1149,7 @@ qemuCgroupEmulatorAllNodesDataFree(qemuCgroupEmulatorAllNodesDataPtr data)
* Allows all NUMA nodes for the qemu emulator thread temporarily. This is * Allows all NUMA nodes for the qemu emulator thread temporarily. This is
* necessary when hotplugging cpus since it requires memory allocated in the * necessary when hotplugging cpus since it requires memory allocated in the
* DMA region. Afterwards the operation can be reverted by * DMA region. Afterwards the operation can be reverted by
* qemuCgrouEmulatorAllNodesRestore. * qemuCgroupEmulatorAllNodesRestore.
* *
* Returns 0 on success -1 on error * Returns 0 on success -1 on error
*/ */
@ -1196,14 +1196,14 @@ qemuCgroupEmulatorAllNodesAllow(virCgroupPtr cgroup,
/** /**
* qemuCgrouEmulatorAllNodesRestore: * qemuCgroupEmulatorAllNodesRestore:
* @data: data structure created by qemuCgroupEmulatorAllNodesAllow * @data: data structure created by qemuCgroupEmulatorAllNodesAllow
* *
* Rolls back the setting done by qemuCgroupEmulatorAllNodesAllow and frees the * Rolls back the setting done by qemuCgroupEmulatorAllNodesAllow and frees the
* associated data. * associated data.
*/ */
void void
qemuCgrouEmulatorAllNodesRestore(qemuCgroupEmulatorAllNodesDataPtr data) qemuCgroupEmulatorAllNodesRestore(qemuCgroupEmulatorAllNodesDataPtr data)
{ {
virErrorPtr err; virErrorPtr err;

View File

@ -66,6 +66,6 @@ struct _qemuCgroupEmulatorAllNodesData {
int qemuCgroupEmulatorAllNodesAllow(virCgroupPtr cgroup, int qemuCgroupEmulatorAllNodesAllow(virCgroupPtr cgroup,
qemuCgroupEmulatorAllNodesDataPtr *data); qemuCgroupEmulatorAllNodesDataPtr *data);
void qemuCgrouEmulatorAllNodesRestore(qemuCgroupEmulatorAllNodesDataPtr data); void qemuCgroupEmulatorAllNodesRestore(qemuCgroupEmulatorAllNodesDataPtr data);
#endif /* __QEMU_CGROUP_H__ */ #endif /* __QEMU_CGROUP_H__ */

View File

@ -4891,7 +4891,7 @@ qemuDomainSetVcpusLive(virQEMUDriverPtr driver,
ret = 0; ret = 0;
cleanup: cleanup:
qemuCgrouEmulatorAllNodesRestore(emulatorCgroup); qemuCgroupEmulatorAllNodesRestore(emulatorCgroup);
virBitmapFree(vcpumap); virBitmapFree(vcpumap);
return ret; return ret;

View File

@ -4925,7 +4925,7 @@ qemuProcessSetupHotpluggableVcpus(virQEMUDriverPtr driver,
ret = 0; ret = 0;
cleanup: cleanup:
qemuCgrouEmulatorAllNodesRestore(emulatorCgroup); qemuCgroupEmulatorAllNodesRestore(emulatorCgroup);
VIR_FREE(bootHotplug); VIR_FREE(bootHotplug);
virJSONValueFree(vcpuprops); virJSONValueFree(vcpuprops);
return ret; return ret;