Re: [Qemu-block] [PATCH v5 4/6] qemu-img: Use bdrv_filename() for map

2015-10-26 Thread Kevin Wolf
Am 19.10.2015 um 20:49 hat Max Reitz geschrieben:
> Replaces bs->filename by the result of bdrv_filename() in the
> qemu-img map subcommand. Since that value is queried relatively often,
> however, it should be cached.
> 
> Signed-off-by: Max Reitz 

Reviewed-by: Kevin Wolf 



[Qemu-block] [PATCH v5 4/6] qemu-img: Use bdrv_filename() for map

2015-10-19 Thread Max Reitz
Replaces bs->filename by the result of bdrv_filename() in the
qemu-img map subcommand. Since that value is queried relatively often,
however, it should be cached.

Signed-off-by: Max Reitz 
---
 qemu-img.c | 14 +-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/qemu-img.c b/qemu-img.c
index 3025776..a44c77a 100644
--- a/qemu-img.c
+++ b/qemu-img.c
@@ -2142,6 +2142,7 @@ typedef struct MapEntry {
 int64_t length;
 int64_t offset;
 BlockDriverState *bs;
+char *bs_filename;
 } MapEntry;
 
 static void dump_map_entry(OutputFormat output_format, MapEntry *e,
@@ -2156,7 +2157,7 @@ static void dump_map_entry(OutputFormat output_format, 
MapEntry *e,
 }
 if ((e->flags & (BDRV_BLOCK_DATA|BDRV_BLOCK_ZERO)) == BDRV_BLOCK_DATA) 
{
 printf("%#-16"PRIx64"%#-16"PRIx64"%#-16"PRIx64"%s\n",
-   e->start, e->length, e->offset, e->bs->filename);
+   e->start, e->length, e->offset, e->bs_filename);
 }
 /* This format ignores the distinction between 0, ZERO and ZERO|DATA.
  * Modify the flags here to allow more coalescing.
@@ -2306,6 +2307,12 @@ static int img_map(int argc, char **argv)
 goto out;
 }
 
+if (next.bs == curr.bs) {
+next.bs_filename = curr.bs_filename;
+} else {
+next.bs_filename = bdrv_filename(next.bs, NULL, 0);
+}
+
 if (curr.length != 0 && curr.flags == next.flags &&
 curr.depth == next.depth &&
 ((curr.flags & BDRV_BLOCK_OFFSET_VALID) == 0 ||
@@ -2317,10 +2324,15 @@ static int img_map(int argc, char **argv)
 if (curr.length > 0) {
 dump_map_entry(output_format, , );
 }
+
+if (curr.bs != next.bs) {
+g_free(curr.bs_filename);
+}
 curr = next;
 }
 
 dump_map_entry(output_format, , NULL);
+g_free(curr.bs_filename);
 
 out:
 blk_unref(blk);
-- 
2.6.1