diff options
author | Emanuele Giuseppe Esposito <eesposit@redhat.com> | 2022-11-28 09:23:32 -0500 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2022-12-15 16:07:43 +0100 |
commit | 1bd542016cc2c132e3d52dbc9e663966dfc10e72 (patch) | |
tree | 5ea53589764b6a65f464cd089741754e6ab352f7 /block | |
parent | 2475a0d0f4b0b450f25f7672c7072b4fdae6df00 (diff) | |
download | qemu-1bd542016cc2c132e3d52dbc9e663966dfc10e72.zip qemu-1bd542016cc2c132e3d52dbc9e663966dfc10e72.tar.gz qemu-1bd542016cc2c132e3d52dbc9e663966dfc10e72.tar.bz2 |
block: rename generated_co_wrapper in co_wrapper_mixed
In preparation to the incoming new function specifiers,
rename g_c_w with a more meaningful name and document it.
Signed-off-by: Emanuele Giuseppe Esposito <eesposit@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Message-Id: <20221128142337.657646-10-eesposit@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block')
-rw-r--r-- | block/coroutines.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/block/coroutines.h b/block/coroutines.h index 3a2bad5..17da4db 100644 --- a/block/coroutines.h +++ b/block/coroutines.h @@ -71,7 +71,7 @@ nbd_co_do_establish_connection(BlockDriverState *bs, bool blocking, * the "I/O or GS" API. */ -int generated_co_wrapper +int co_wrapper_mixed bdrv_common_block_status_above(BlockDriverState *bs, BlockDriverState *base, bool include_base, @@ -82,7 +82,7 @@ bdrv_common_block_status_above(BlockDriverState *bs, int64_t *map, BlockDriverState **file, int *depth); -int generated_co_wrapper +int co_wrapper_mixed nbd_do_establish_connection(BlockDriverState *bs, bool blocking, Error **errp); #endif /* BLOCK_COROUTINES_H */ |