mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-03 11:35:19 +00:00
DOn't try to query memory balloon if guest isn't active
This commit is contained in:
parent
cb7593bd19
commit
3b97f7db53
@ -1,3 +1,8 @@
|
|||||||
|
Fri Mar 27 11:44:22 GMT 2009 Daniel P. Berrange <berrange@redhat.com>
|
||||||
|
|
||||||
|
* src/qemu_driver.c: Don't try to query balloon if guest
|
||||||
|
isn't running
|
||||||
|
|
||||||
Fri Mar 27 11:44:22 GMT 2009 Daniel P. Berrange <berrange@redhat.com>
|
Fri Mar 27 11:44:22 GMT 2009 Daniel P. Berrange <berrange@redhat.com>
|
||||||
|
|
||||||
Support memory ballooning in QEMU
|
Support memory ballooning in QEMU
|
||||||
|
@ -2429,6 +2429,9 @@ static int qemudDomainGetMemoryBalloon(virConnectPtr conn,
|
|||||||
int ret = -1;
|
int ret = -1;
|
||||||
char *offset;
|
char *offset;
|
||||||
|
|
||||||
|
if (!virDomainIsActive(vm))
|
||||||
|
return 0;
|
||||||
|
|
||||||
if (qemudMonitorCommand(vm, "info balloon", &reply) < 0) {
|
if (qemudMonitorCommand(vm, "info balloon", &reply) < 0) {
|
||||||
qemudReportError(conn, dom, NULL, VIR_ERR_OPERATION_FAILED,
|
qemudReportError(conn, dom, NULL, VIR_ERR_OPERATION_FAILED,
|
||||||
"%s", _("could not query memory balloon allocation"));
|
"%s", _("could not query memory balloon allocation"));
|
||||||
|
Loading…
Reference in New Issue
Block a user