diff options
author | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-03-11 20:15:55 +0000 |
---|---|---|
committer | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-03-11 20:15:55 +0000 |
commit | 4ca9f3dd7139057a2105de7c423f24228e3ea874 (patch) | |
tree | d74005b57d2cf745d111827ad9b4c2a76bc6b4ff | |
parent | f902c4192e11c0f1d00844e8f3e266aabe00068f (diff) |
Revert r6408
This series is broken by design as it requires expensive IO operations at
open time causing very long delays when starting a virtual machine for the
first time.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/branches/stable_0_10_0@6817 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r-- | qemu-img.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/qemu-img.c b/qemu-img.c index fb81ea723b..efbb9b6be8 100644 --- a/qemu-img.c +++ b/qemu-img.c @@ -730,10 +730,6 @@ 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: %" PRId64 "\n", bdi.highest_alloc); - if (bdi.num_free_bytes) - printf("num_free_bytes: %" PRId64 "\n", bdi.num_free_bytes); } bdrv_get_backing_filename(bs, backing_filename, sizeof(backing_filename)); if (backing_filename[0] != '\0') { |