qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 10/14] qemu-img: info: show highest_alloc if exists


From: Uri Lublin
Subject: [Qemu-devel] [PATCH 10/14] qemu-img: info: show highest_alloc if exists
Date: Tue, 17 Mar 2009 22:40:48 +0200

Signed-off-by: Uri Lublin <address@hidden>
---
 qemu-img.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/qemu-img.c b/qemu-img.c
index ab380c8..9b51e85 100644
--- a/qemu-img.c
+++ b/qemu-img.c
@@ -746,6 +746,8 @@ 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);
     }
     bdrv_get_backing_filename(bs, backing_filename, sizeof(backing_filename));
     if (backing_filename[0] != '\0') {
-- 
1.6.0.6





reply via email to

[Prev in Thread] Current Thread [Next in Thread]