1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-03-07 17:28:15 +00:00

rename qemuBuildControllerDevCommandLine

Use qemuBuildControllersCommandLine since it builds the command line
for (nearly) all controllers, not just one.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Cole Robinson <crobinso@redhat.com>
This commit is contained in:
Ján Tomko 2019-01-16 08:46:29 +01:00
parent fc1c16bccd
commit a6d3357c8b

View File

@ -3204,7 +3204,7 @@ qemuBuildControllersByTypeCommandLine(virCommandPtr cmd,
static int static int
qemuBuildControllerDevCommandLine(virCommandPtr cmd, qemuBuildControllersCommandLine(virCommandPtr cmd,
const virDomainDef *def, const virDomainDef *def,
virQEMUCapsPtr qemuCaps) virQEMUCapsPtr qemuCaps)
{ {
@ -10624,7 +10624,7 @@ qemuBuildCommandLine(virQEMUDriverPtr driver,
if (qemuBuildGlobalControllerCommandLine(cmd, def, qemuCaps) < 0) if (qemuBuildGlobalControllerCommandLine(cmd, def, qemuCaps) < 0)
goto error; goto error;
if (qemuBuildControllerDevCommandLine(cmd, def, qemuCaps) < 0) if (qemuBuildControllersCommandLine(cmd, def, qemuCaps) < 0)
goto error; goto error;
if (qemuBuildHubCommandLine(cmd, def, qemuCaps) < 0) if (qemuBuildHubCommandLine(cmd, def, qemuCaps) < 0)