mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-09-01 14:17:33 +03: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:
@ -3204,9 +3204,9 @@ qemuBuildControllersByTypeCommandLine(virCommandPtr cmd,
|
|||||||
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
qemuBuildControllerDevCommandLine(virCommandPtr cmd,
|
qemuBuildControllersCommandLine(virCommandPtr cmd,
|
||||||
const virDomainDef *def,
|
const virDomainDef *def,
|
||||||
virQEMUCapsPtr qemuCaps)
|
virQEMUCapsPtr qemuCaps)
|
||||||
{
|
{
|
||||||
size_t j;
|
size_t j;
|
||||||
int contOrder[] = {
|
int contOrder[] = {
|
||||||
@ -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)
|
||||||
|
Reference in New Issue
Block a user