mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-26 03:21:44 +03:00
vz: use g_autofree in prlsdkConvertCpuInfo
Convert the function to use g_autofree to silence -Wmaybe-uninitialized. Signed-off-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com>
This commit is contained in:
parent
e7741937eb
commit
6ffb444186
@ -1456,44 +1456,40 @@ prlsdkConvertCpuInfo(PRL_HANDLE sdkdom,
|
||||
virDomainDefPtr def,
|
||||
virDomainXMLOptionPtr xmlopt)
|
||||
{
|
||||
char *buf;
|
||||
g_autofree char *buf = NULL;
|
||||
int hostcpus;
|
||||
PRL_UINT32 cpuCount;
|
||||
PRL_RESULT pret;
|
||||
int ret = -1;
|
||||
|
||||
if ((hostcpus = virHostCPUGetCount()) < 0)
|
||||
goto cleanup;
|
||||
return -1;
|
||||
|
||||
/* get number of CPUs */
|
||||
pret = PrlVmCfg_GetCpuCount(sdkdom, &cpuCount);
|
||||
prlsdkCheckRetGoto(pret, cleanup);
|
||||
prlsdkCheckRetExit(pret, -1);
|
||||
|
||||
if (cpuCount > hostcpus)
|
||||
cpuCount = hostcpus;
|
||||
|
||||
if (virDomainDefSetVcpusMax(def, cpuCount, xmlopt) < 0)
|
||||
goto cleanup;
|
||||
return -1;
|
||||
|
||||
if (virDomainDefSetVcpus(def, cpuCount) < 0)
|
||||
goto cleanup;
|
||||
return -1;
|
||||
|
||||
if (!(buf = prlsdkGetStringParamVar(PrlVmCfg_GetCpuMask, sdkdom)))
|
||||
goto cleanup;
|
||||
return -1;
|
||||
|
||||
if (strlen(buf) == 0) {
|
||||
if (!(def->cpumask = virBitmapNew(hostcpus)))
|
||||
goto cleanup;
|
||||
return -1;
|
||||
virBitmapSetAll(def->cpumask);
|
||||
} else {
|
||||
if (virBitmapParse(buf, &def->cpumask, hostcpus) < 0)
|
||||
goto cleanup;
|
||||
return -1;
|
||||
}
|
||||
|
||||
ret = 0;
|
||||
cleanup:
|
||||
VIR_FREE(buf);
|
||||
return ret;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int
|
||||
|
Loading…
Reference in New Issue
Block a user