From 0f3e5325f509fd4fde5ed4c66f2be50fe9412359 Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Thu, 4 Jun 2015 13:47:02 +0200 Subject: [PATCH] qemu: Update balloon info only if job is allowed In qemuDomainUpdateCurrentMemorySize I misplaced the actual update of the balloon size to a place where it may not be initialized. Move it a few lines above. --- src/qemu/qemu_domain.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c index 3826b2fce3..0682390e83 100644 --- a/src/qemu/qemu_domain.c +++ b/src/qemu/qemu_domain.c @@ -3256,9 +3256,9 @@ qemuDomainUpdateCurrentMemorySize(virQEMUDriverPtr driver, if (ret < 0) return -1; - } - vm->def->mem.cur_balloon = balloon; + vm->def->mem.cur_balloon = balloon; + } return 0; }