* [Qemu-devel] [PATCH] qemu-img: info: show highest_alloc and num_free_bytes if exist
@ 2009-01-13 14:53 Uri Lublin
0 siblings, 0 replies; only message in thread
From: Uri Lublin @ 2009-01-13 14:53 UTC (permalink / raw)
To: qemu-devel; +Cc: Uri Lublin
Signed-off-by: Uri Lublin <uril@redhat.com>
---
qemu-img.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/qemu-img.c b/qemu-img.c
index 02c513f..8a8950b 100644
--- a/qemu-img.c
+++ b/qemu-img.c
@@ -752,6 +752,10 @@ static int img_info(int argc, char **argv)
if (bdrv_get_info(bs, &bdi) >= 0) {
if (bdi.cluster_size != 0)
printf("cluster_size: %d\n", bdi.cluster_size);
+ if (bdi.highest_alloc)
+ printf("highest_alloc: %ld\n", bdi.highest_alloc);
+ if (bdi.num_free_bytes)
+ printf("num_free_bytes: %ld\n", bdi.num_free_bytes);
}
bdrv_get_backing_filename(bs, backing_filename, sizeof(backing_filename));
if (backing_filename[0] != '\0') {
--
1.6.0.6
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2009-01-13 14:53 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-13 14:53 [Qemu-devel] [PATCH] qemu-img: info: show highest_alloc and num_free_bytes if exist Uri Lublin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).