summary refs log tree commit diff stats
path: root/qemu-nbd.c
diff options
context:
space:
mode:
authorAdam Litke <agl@us.ibm.com>2010-03-25 08:58:17 -0500
committerAurelien Jarno <aurelien@aurel32.net>2010-03-27 13:53:34 +0100
commitbd12ff9df78b0d04059a35c4a9d0a9337eb4999e (patch)
tree299225978d6c3bdf0ed6ce20580693e8d85deefd /qemu-nbd.c
parentc96c84a9ff4bc184cb1f6cc9771a550f3854ba59 (diff)
downloadfocaccia-qemu-bd12ff9df78b0d04059a35c4a9d0a9337eb4999e.tar.gz
focaccia-qemu-bd12ff9df78b0d04059a35c4a9d0a9337eb4999e.zip
balloon: Fix overflow when reporting actual memory size
Beginning with its introduction, the virtio balloon has had an overflow error
that causes 'info balloon' to misreport the actual memory size when the balloon
itself becomes larger than 4G.  Use a cast when converting dev->actual from
pages to kB to prevent overflows.

Before:
(qemu) info balloon
balloon: actual=5120
(qemu) balloon 1025
(qemu) info balloon
balloon: actual=1025
(qemu) balloon 1024
(qemu) info balloon
balloon: actual=5120

After:
(qemu) info balloon
balloon: actual=5120
(qemu) balloon 1025
(qemu) info balloon
balloon: actual=1025
(qemu) balloon 1024
(qemu) info balloon
balloon: actual=1024

Signed-off-by: Adam Litke <agl@us.ibm.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'qemu-nbd.c')
0 files changed, 0 insertions, 0 deletions