diff options
Diffstat (limited to 'hmp.c')
| -rw-r--r-- | hmp.c | 3 |
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]); |