mirror of https://gitee.com/openkylin/libvirt.git
Revert "qemu: directly create virResctrlInfo ignoring capabilities"
This reverts commit 7be5fe66cd
.
This commit broke resctrl, because it missed the fact that the
virResctrlInfoGetCache() has side-effects causing it to actually
change the virResctrlInfo parameter, not merely get data from
it.
This code will need some refactoring before we can try separating
it from virCapabilities again.
Reviewed-by: Cole Robinson <crobinso@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
4af076f163
commit
766c8ae963
|
@ -2725,24 +2725,29 @@ qemuProcessSetupEmulator(virDomainObjPtr vm)
|
|||
|
||||
|
||||
static int
|
||||
qemuProcessResctrlCreate(virDomainObjPtr vm)
|
||||
qemuProcessResctrlCreate(virQEMUDriverPtr driver,
|
||||
virDomainObjPtr vm)
|
||||
{
|
||||
int ret = -1;
|
||||
size_t i = 0;
|
||||
virCapsPtr caps = NULL;
|
||||
qemuDomainObjPrivatePtr priv = vm->privateData;
|
||||
g_autoptr(virResctrlInfo) resctrl = NULL;
|
||||
|
||||
if (!vm->def->nresctrls)
|
||||
return 0;
|
||||
|
||||
if (!(resctrl = virResctrlInfoNew()))
|
||||
/* Force capability refresh since resctrl info can change
|
||||
* XXX: move cache info into virresctrl so caps are not needed */
|
||||
caps = virQEMUDriverGetCapabilities(driver, true);
|
||||
if (!caps)
|
||||
return -1;
|
||||
|
||||
for (i = 0; i < vm->def->nresctrls; i++) {
|
||||
size_t j = 0;
|
||||
if (virResctrlAllocCreate(resctrl,
|
||||
if (virResctrlAllocCreate(caps->host.resctrl,
|
||||
vm->def->resctrls[i]->alloc,
|
||||
priv->machineName) < 0)
|
||||
return -1;
|
||||
goto cleanup;
|
||||
|
||||
for (j = 0; j < vm->def->resctrls[i]->nmonitors; j++) {
|
||||
virDomainResctrlMonDefPtr mon = NULL;
|
||||
|
@ -2750,11 +2755,14 @@ qemuProcessResctrlCreate(virDomainObjPtr vm)
|
|||
mon = vm->def->resctrls[i]->monitors[j];
|
||||
if (virResctrlMonitorCreate(mon->instance,
|
||||
priv->machineName) < 0)
|
||||
return -1;
|
||||
goto cleanup;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
ret = 0;
|
||||
cleanup:
|
||||
virObjectUnref(caps);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
|
@ -6894,7 +6902,7 @@ qemuProcessLaunch(virConnectPtr conn,
|
|||
goto cleanup;
|
||||
|
||||
VIR_DEBUG("Setting up resctrl");
|
||||
if (qemuProcessResctrlCreate(vm) < 0)
|
||||
if (qemuProcessResctrlCreate(driver, vm) < 0)
|
||||
goto cleanup;
|
||||
|
||||
VIR_DEBUG("Setting up managed PR daemon");
|
||||
|
|
|
@ -100,8 +100,6 @@ typedef virResctrlInfo *virResctrlInfoPtr;
|
|||
virResctrlInfoPtr
|
||||
virResctrlInfoNew(void);
|
||||
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC(virResctrlInfo, virObjectUnref);
|
||||
|
||||
int
|
||||
virResctrlInfoGetCache(virResctrlInfoPtr resctrl,
|
||||
unsigned int level,
|
||||
|
|
Loading…
Reference in New Issue