mirror of
https://git.proxmox.com/git/qemu-server
synced 2026-01-04 17:44:11 +00:00
qmb balloon command expects bytes
This commit is contained in:
parent
075b417acd
commit
42ca89538d
2
Makefile
2
Makefile
@ -2,7 +2,7 @@ RELEASE=2.2
|
||||
|
||||
VERSION=2.0
|
||||
PACKAGE=qemu-server
|
||||
PKGREL=68
|
||||
PKGREL=69
|
||||
|
||||
DESTDIR=
|
||||
PREFIX=/usr
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user