summaryrefslogtreecommitdiffstats
path: root/block.c
diff options
context:
space:
mode:
authorEric Blake2015-11-18 09:52:54 +0100
committerMarkus Armbruster2015-12-17 08:21:27 +0100
commita31939e6c854e26e391efaec49c9d7f796369bbb (patch)
treea3cc98ab1cc90d9422dffad504a0c21a5451af58 /block.c
parentqapi: Remove dead visitor code (diff)
downloadqemu-a31939e6c854e26e391efaec49c9d7f796369bbb.tar.gz
qemu-a31939e6c854e26e391efaec49c9d7f796369bbb.tar.xz
qemu-a31939e6c854e26e391efaec49c9d7f796369bbb.zip
blkdebug: Merge hand-rolled and qapi BlkdebugEvent enum
No need to keep two separate enums, where editing one is likely to forget the other. Now that we can specify a qapi enum prefix, we don't even have to change the bulk of the uses. get_event_by_name() could perhaps be replaced by qapi_enum_parse(), but I left that for another day. CC: Kevin Wolf <kwolf@redhat.com> Signed-off-by: Eric Blake <eblake@redhat.com> Message-Id: <1447836791-369-20-git-send-email-eblake@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'block.c')
-rw-r--r--block.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block.c b/block.c
index 3a7324bb05..9971976c38 100644
--- a/block.c
+++ b/block.c
@@ -2851,7 +2851,7 @@ ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
return NULL;
}
-void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event)
+void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
{
if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
return;