mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-24 14:45:24 +00:00
qemu: command: Split out formatting of disk source commandline
Further split qemuBuildDiskCommandLine to separate formatting of the source part. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
48c643f47c
commit
35582d1125
@ -2230,6 +2230,31 @@ qemuBuildBlockStorageSourceAttachDataCommandline(virCommandPtr cmd,
|
||||
}
|
||||
|
||||
|
||||
static int
|
||||
qemuBuildDiskSourceCommandLine(virCommandPtr cmd,
|
||||
virDomainDiskDefPtr disk,
|
||||
virQEMUCapsPtr qemuCaps,
|
||||
bool driveBoot)
|
||||
{
|
||||
qemuBlockStorageSourceAttachDataPtr data = NULL;
|
||||
int ret = -1;
|
||||
|
||||
if (!(data = qemuBuildStorageSourceAttachPrepareDrive(disk, qemuCaps,
|
||||
driveBoot)))
|
||||
return -1;
|
||||
|
||||
if (qemuBuildStorageSourceAttachPrepareCommon(disk->src, data, qemuCaps) < 0 ||
|
||||
qemuBuildBlockStorageSourceAttachDataCommandline(cmd, data) < 0)
|
||||
goto cleanup;
|
||||
|
||||
ret = 0;
|
||||
|
||||
cleanup:
|
||||
qemuBlockStorageSourceAttachDataFree(data);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
static int
|
||||
qemuBuildDiskCommandLine(virCommandPtr cmd,
|
||||
const virDomainDef *def,
|
||||
@ -2238,21 +2263,11 @@ qemuBuildDiskCommandLine(virCommandPtr cmd,
|
||||
unsigned int bootindex,
|
||||
bool driveBoot)
|
||||
{
|
||||
qemuBlockStorageSourceAttachDataPtr data = NULL;
|
||||
char *optstr;
|
||||
|
||||
if (!(data = qemuBuildStorageSourceAttachPrepareDrive(disk, qemuCaps,
|
||||
driveBoot)))
|
||||
if (qemuBuildDiskSourceCommandLine(cmd, disk, qemuCaps, driveBoot) < 0)
|
||||
return -1;
|
||||
|
||||
if (qemuBuildStorageSourceAttachPrepareCommon(disk->src, data, qemuCaps) < 0 ||
|
||||
qemuBuildBlockStorageSourceAttachDataCommandline(cmd, data) < 0) {
|
||||
qemuBlockStorageSourceAttachDataFree(data);
|
||||
return -1;
|
||||
}
|
||||
|
||||
qemuBlockStorageSourceAttachDataFree(data);
|
||||
|
||||
if (!qemuDiskBusNeedsDriveArg(disk->bus)) {
|
||||
if (disk->bus == VIR_DOMAIN_DISK_BUS_FDC) {
|
||||
if (qemuBuildFloppyCommandLineOptions(cmd, def, disk,
|
||||
|
Loading…
Reference in New Issue
Block a user