qmb balloon command expects bytes

This commit is contained in:
Dietmar Maurer 2012-11-16 06:14:35 +01:00
parent 075b417acd
commit 42ca89538d
3 changed files with 8 additions and 2 deletions

View File

@ -2,7 +2,7 @@ RELEASE=2.2
VERSION=2.0
PACKAGE=qemu-server
PKGREL=68
PKGREL=69
DESTDIR=
PREFIX=/usr

View File

@ -3393,7 +3393,7 @@ sub print_pci_addr {
sub vm_balloonset {
my ($vmid, $value) = @_;
vm_mon_cmd($vmid, "balloon", value => $value);
vm_mon_cmd($vmid, "balloon", value => $value*1024*1024);
}
# vzdump restore implementaion

View File

@ -1,3 +1,9 @@
qemu-server (2.0-69) unstable; urgency=low
* fix ballon monitor command (use bytes instead of MBs)
-- Proxmox Support Team <support@proxmox.com> Fri, 16 Nov 2012 06:13:46 +0100
qemu-server (2.0-68) unstable; urgency=low
* vzdump: store drive in correct order (sort) to avoid confusion