From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
To: qemu-devel@nongnu.org, qemu-block@nongnu.org
Cc: eblake@redhat.com, armbru@redhat.com, mreitz@redhat.com,
kwolf@redhat.com, vsementsov@virtuozzo.com, den@openvz.org
Subject: [Qemu-devel] [PATCH 4/4] qemu-img check: improve dump_human_format_alloc_info
Date: Tue, 30 May 2017 13:48:57 +0300 [thread overview]
Message-ID: <20170530104857.70083-5-vsementsov@virtuozzo.com> (raw)
In-Reply-To: <20170530104857.70083-1-vsementsov@virtuozzo.com>
Improve dump_human_format_alloc_info() by specifying format names.
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
---
qemu-img.c | 35 ++++++++++++++++++++++++++---------
1 file changed, 26 insertions(+), 9 deletions(-)
diff --git a/qemu-img.c b/qemu-img.c
index 55f8c1776c..3c03690a4f 100644
--- a/qemu-img.c
+++ b/qemu-img.c
@@ -560,7 +560,8 @@ static void dump_json_image_check(ImageCheck *check, bool quiet)
QDECREF(str);
}
-static void dump_human_format_alloc_info(BlockFormatAllocInfo *bfai, bool quiet)
+static void dump_human_format_alloc_info(BlockDriverState *bs,
+ BlockFormatAllocInfo *bfai, bool quiet)
{
char *alloc_alloc = size_to_str(bfai->alloc_alloc);
char *alloc_hole = size_to_str(bfai->alloc_hole);
@@ -568,13 +569,28 @@ static void dump_human_format_alloc_info(BlockFormatAllocInfo *bfai, bool quiet)
char *hole_alloc = size_to_str(bfai->hole_alloc);
char *hole_hole = size_to_str(bfai->hole_hole);
+ const char *format = bdrv_get_format_name(bs);
+ const char *f_format =
+ bs->file ? bdrv_get_format_name(bs->file->bs) : "file";
+ int format_len, cw;
+
+ if (format == NULL) {
+ format = "format";
+ }
+ if (f_format == NULL) {
+ f_format = "file";
+ }
+ format_len = strlen(format);
+ cw = MAX(10, strlen(f_format) + 6);
+
qprintf(quiet,
"Format allocation info (including metadata):\n"
- " file-alloc file-hole after-eof\n"
- "format-alloc %10s %10s %10s\n"
- "format-hole %10s %10s\n",
- alloc_alloc, alloc_hole, alloc_overhead,
- hole_alloc, hole_hole);
+ "%*s %*s-alloc %*s-hole %*s\n"
+ "%s-alloc %*s %*s %*s\n"
+ "%s-hole %*s %*s\n",
+ format_len, "", cw - 6, f_format, cw - 5, f_format, cw, "after-eof",
+ format, cw, alloc_alloc, cw, alloc_hole, cw, alloc_overhead,
+ format, cw, hole_alloc, cw, hole_hole);
g_free(alloc_alloc);
g_free(alloc_hole);
@@ -583,7 +599,8 @@ static void dump_human_format_alloc_info(BlockFormatAllocInfo *bfai, bool quiet)
g_free(hole_hole);
}
-static void dump_human_image_check(ImageCheck *check, bool quiet)
+static void dump_human_image_check(BlockDriverState *bs, ImageCheck *check,
+ bool quiet)
{
if (!(check->corruptions || check->leaks || check->check_errors)) {
qprintf(quiet, "No errors were found on the image.\n");
@@ -626,7 +643,7 @@ static void dump_human_image_check(ImageCheck *check, bool quiet)
}
if (check->has_format_alloc_info) {
- dump_human_format_alloc_info(check->format_alloc_info, quiet);
+ dump_human_format_alloc_info(bs, check->format_alloc_info, quiet);
}
}
@@ -840,7 +857,7 @@ static int img_check(int argc, char **argv)
if (!ret) {
switch (output_format) {
case OFORMAT_HUMAN:
- dump_human_image_check(check, quiet);
+ dump_human_image_check(bs, check, quiet);
break;
case OFORMAT_JSON:
dump_json_image_check(check, quiet);
--
2.11.1
next prev parent reply other threads:[~2017-05-30 10:49 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-30 10:48 [Qemu-devel] [PATCH v2 0/4] qemu-img check: format allocation info Vladimir Sementsov-Ogievskiy
2017-05-30 10:48 ` [Qemu-devel] [PATCH 1/4] block: add bdrv_get_format_alloc_stat format interface Vladimir Sementsov-Ogievskiy
2017-05-30 14:53 ` Eric Blake
2017-05-30 15:27 ` Vladimir Sementsov-Ogievskiy
2017-05-30 15:43 ` Eric Blake
2017-06-02 15:26 ` Vladimir Sementsov-Ogievskiy
2017-06-06 12:08 ` Eric Blake
2017-05-30 10:48 ` [Qemu-devel] [PATCH 2/4] qcow2: add .bdrv_get_format_alloc_stat Vladimir Sementsov-Ogievskiy
2017-05-30 10:48 ` [Qemu-devel] [PATCH 3/4] qemu-img check: add format allocation info Vladimir Sementsov-Ogievskiy
2017-05-30 10:48 ` Vladimir Sementsov-Ogievskiy [this message]
-- strict thread matches above, loose matches on Subject: below --
2017-05-30 10:36 [Qemu-devel] [PATCH 0/4] qemu-img check: " Vladimir Sementsov-Ogievskiy
2017-05-30 10:36 ` [Qemu-devel] [PATCH 4/4] qemu-img check: improve dump_human_format_alloc_info Vladimir Sementsov-Ogievskiy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170530104857.70083-5-vsementsov@virtuozzo.com \
--to=vsementsov@virtuozzo.com \
--cc=armbru@redhat.com \
--cc=den@openvz.org \
--cc=eblake@redhat.com \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).