mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
qemu: Introduce qemuBuildNumaCommandLine
Add new function to manage adding the '-numa' options to the command line removing that task from the mainline qemuBuildCommandLine Signed-off-by: John Ferlan <jferlan@redhat.com>
This commit is contained in:
parent
70681e3502
commit
b827eddae0
@ -5519,6 +5519,44 @@ qemuBuildNumaArgStr(virQEMUDriverConfigPtr cfg,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static int
|
||||||
|
qemuBuildNumaCommandLine(virCommandPtr cmd,
|
||||||
|
virQEMUDriverConfigPtr cfg,
|
||||||
|
virDomainDefPtr def,
|
||||||
|
virQEMUCapsPtr qemuCaps,
|
||||||
|
virBitmapPtr nodeset)
|
||||||
|
{
|
||||||
|
size_t i;
|
||||||
|
|
||||||
|
if (virDomainNumaGetNodeCount(def->numa) &&
|
||||||
|
qemuBuildNumaArgStr(cfg, def, cmd, qemuCaps, nodeset) < 0)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
/* memory hotplug requires NUMA to be enabled - we already checked
|
||||||
|
* that memory devices are present only when NUMA is */
|
||||||
|
for (i = 0; i < def->nmems; i++) {
|
||||||
|
char *backStr;
|
||||||
|
char *dimmStr;
|
||||||
|
|
||||||
|
if (!(backStr = qemuBuildMemoryDimmBackendStr(def->mems[i], def,
|
||||||
|
qemuCaps, cfg)))
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
if (!(dimmStr = qemuBuildMemoryDeviceStr(def->mems[i]))) {
|
||||||
|
VIR_FREE(backStr);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
virCommandAddArgList(cmd, "-object", backStr, "-device", dimmStr, NULL);
|
||||||
|
|
||||||
|
VIR_FREE(backStr);
|
||||||
|
VIR_FREE(dimmStr);
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
qemuBuildGraphicsVNCCommandLine(virQEMUDriverConfigPtr cfg,
|
qemuBuildGraphicsVNCCommandLine(virQEMUDriverConfigPtr cfg,
|
||||||
virCommandPtr cmd,
|
virCommandPtr cmd,
|
||||||
@ -6927,32 +6965,8 @@ qemuBuildCommandLine(virConnectPtr conn,
|
|||||||
if (qemuBuildIOThreadCommandLine(cmd, def, qemuCaps) < 0)
|
if (qemuBuildIOThreadCommandLine(cmd, def, qemuCaps) < 0)
|
||||||
goto error;
|
goto error;
|
||||||
|
|
||||||
if (virDomainNumaGetNodeCount(def->numa) &&
|
if (qemuBuildNumaCommandLine(cmd, cfg, def, qemuCaps, nodeset) < 0)
|
||||||
qemuBuildNumaArgStr(cfg, def, cmd, qemuCaps, nodeset) < 0)
|
goto error;
|
||||||
goto error;
|
|
||||||
|
|
||||||
/* memory hotplug requires NUMA to be enabled - we already checked
|
|
||||||
* that memory devices are present only when NUMA is */
|
|
||||||
|
|
||||||
|
|
||||||
for (i = 0; i < def->nmems; i++) {
|
|
||||||
char *backStr;
|
|
||||||
char *dimmStr;
|
|
||||||
|
|
||||||
if (!(backStr = qemuBuildMemoryDimmBackendStr(def->mems[i], def,
|
|
||||||
qemuCaps, cfg)))
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
if (!(dimmStr = qemuBuildMemoryDeviceStr(def->mems[i]))) {
|
|
||||||
VIR_FREE(backStr);
|
|
||||||
goto error;
|
|
||||||
}
|
|
||||||
|
|
||||||
virCommandAddArgList(cmd, "-object", backStr, "-device", dimmStr, NULL);
|
|
||||||
|
|
||||||
VIR_FREE(backStr);
|
|
||||||
VIR_FREE(dimmStr);
|
|
||||||
}
|
|
||||||
|
|
||||||
virCommandAddArgList(cmd, "-uuid", uuid, NULL);
|
virCommandAddArgList(cmd, "-uuid", uuid, NULL);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user