Commit fc19793453471f28c52e870e1ac3941fa184add9
1 parent
0dd0dd55
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/trunk@6812 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
0 additions
and
4 deletions
qemu-img.c
@@ -730,10 +730,6 @@ static int img_info(int argc, char **argv) | @@ -730,10 +730,6 @@ static int img_info(int argc, char **argv) | ||
730 | if (bdrv_get_info(bs, &bdi) >= 0) { | 730 | if (bdrv_get_info(bs, &bdi) >= 0) { |
731 | if (bdi.cluster_size != 0) | 731 | if (bdi.cluster_size != 0) |
732 | printf("cluster_size: %d\n", bdi.cluster_size); | 732 | printf("cluster_size: %d\n", bdi.cluster_size); |
733 | - if (bdi.highest_alloc) | ||
734 | - printf("highest_alloc: %" PRId64 "\n", bdi.highest_alloc); | ||
735 | - if (bdi.num_free_bytes) | ||
736 | - printf("num_free_bytes: %" PRId64 "\n", bdi.num_free_bytes); | ||
737 | } | 733 | } |
738 | bdrv_get_backing_filename(bs, backing_filename, sizeof(backing_filename)); | 734 | bdrv_get_backing_filename(bs, backing_filename, sizeof(backing_filename)); |
739 | if (backing_filename[0] != '\0') { | 735 | if (backing_filename[0] != '\0') { |