summary refs log tree commit diff stats
path: root/hmp.c
diff options
context:
space:
mode:
authorKevin Wolf <kwolf@redhat.com>2017-07-11 13:27:38 +0200
committerKevin Wolf <kwolf@redhat.com>2017-07-18 15:14:35 +0200
commit46eade7be83c110659ea9a6883fbd898d455ec06 (patch)
treec5f8fc27e2eaf478743d3f1a4ee1607c1e63eb03 /hmp.c
parent77beef8365ef797c95e49d87f07ed5d60d583594 (diff)
downloadfocaccia-qemu-46eade7be83c110659ea9a6883fbd898d455ec06.tar.gz
focaccia-qemu-46eade7be83c110659ea9a6883fbd898d455ec06.zip
block/qapi: Add qdev device name to query-block
With -blockdev/-device, users can indirectly create anonymous
BlockBackends, while the state of such backends is still of interest. As
a preparation for making such BBs visible in query-block, make sure that
they can be identified even without a name by adding the ID/QOM path of
their qdev device to BlockInfo.

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'hmp.c')
-rw-r--r--hmp.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/hmp.c b/hmp.c
index b42ae59a29..0e57f47682 100644
--- a/hmp.c
+++ b/hmp.c
@@ -425,6 +425,9 @@ static void print_block_info(Monitor *mon, BlockInfo *info,
     }
 
     if (info) {
+        if (info->has_qdev) {
+            monitor_printf(mon, "    Attached to:      %s\n", info->qdev);
+        }
         if (info->has_io_status && info->io_status != BLOCK_DEVICE_IO_STATUS_OK) {
             monitor_printf(mon, "    I/O status:       %s\n",
                            BlockDeviceIoStatus_lookup[info->io_status]);