mirror of
https://github.com/qemu/qemu.git
synced 2024-11-25 20:03:37 +08:00
block/qapi: Include anonymous BBs in query-blockstats
Consistent with query-block, query-blockstats should not only include named BlockBackends, but also those that are anonymous, but belong to a device model. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
5a9cb5a97f
commit
567dcb31f2
@ -593,12 +593,16 @@ BlockStatsList *qmp_query_blockstats(bool has_query_nodes,
|
|||||||
p_next = &info->next;
|
p_next = &info->next;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
|
for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
|
||||||
BlockStatsList *info = g_malloc0(sizeof(*info));
|
BlockStatsList *info = g_malloc0(sizeof(*info));
|
||||||
AioContext *ctx = blk_get_aio_context(blk);
|
AioContext *ctx = blk_get_aio_context(blk);
|
||||||
BlockStats *s;
|
BlockStats *s;
|
||||||
char *qdev;
|
char *qdev;
|
||||||
|
|
||||||
|
if (!*blk_name(blk) && !blk_get_attached_dev(blk)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
aio_context_acquire(ctx);
|
aio_context_acquire(ctx);
|
||||||
s = bdrv_query_bds_stats(blk_bs(blk), true);
|
s = bdrv_query_bds_stats(blk_bs(blk), true);
|
||||||
s->has_device = true;
|
s->has_device = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user