diff options
author | Fam Zheng <famz@redhat.com> | 2014-10-31 11:32:54 +0800 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2014-12-10 10:25:29 +0100 |
commit | 04df765ab449df24666269b0de0caf6ff250c568 (patch) | |
tree | e0f3c156c36d04dbcefa9b91cad595fd23b62cb6 /block.c | |
parent | 7fb8da2b8861795e0013e6ee97acd0363d868a35 (diff) | |
download | qemu-04df765ab449df24666269b0de0caf6ff250c568.tar.gz qemu-04df765ab449df24666269b0de0caf6ff250c568.tar.bz2 qemu-04df765ab449df24666269b0de0caf6ff250c568.zip |
block: Add bdrv_next_node
Similar to bdrv_next, this traverses through graph_bdrv_states. Will be
useful to enumerate all the named nodes.
Signed-off-by: Fam Zheng <famz@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block.c')
-rw-r--r-- | block.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -3801,6 +3801,14 @@ bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base) return top != NULL; } +BlockDriverState *bdrv_next_node(BlockDriverState *bs) +{ + if (!bs) { + return QTAILQ_FIRST(&graph_bdrv_states); + } + return QTAILQ_NEXT(bs, node_list); +} + BlockDriverState *bdrv_next(BlockDriverState *bs) { if (!bs) { |