vmdk: add missing coroutine_fn annotations
Callers of coroutine_fn must be coroutine_fn themselves, or the call must be within "if (qemu_in_coroutine())". Apply coroutine_fn to functions where this holds. Reviewed-by: Alberto Faria <afaria@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Message-Id: <20220922084924.201610-21-pbonzini@redhat.com> [kwolf: Fixed up coding style] Reviewed-by: Kevin Wolf <kwolf@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
4cb1bc3464
commit
b4df990377
22
block/vmdk.c
22
block/vmdk.c
@ -1787,10 +1787,11 @@ static int coroutine_fn vmdk_co_block_status(BlockDriverState *bs,
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int vmdk_write_extent(VmdkExtent *extent, int64_t cluster_offset,
|
static int coroutine_fn
|
||||||
int64_t offset_in_cluster, QEMUIOVector *qiov,
|
vmdk_write_extent(VmdkExtent *extent, int64_t cluster_offset,
|
||||||
uint64_t qiov_offset, uint64_t n_bytes,
|
int64_t offset_in_cluster, QEMUIOVector *qiov,
|
||||||
uint64_t offset)
|
uint64_t qiov_offset, uint64_t n_bytes,
|
||||||
|
uint64_t offset)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
VmdkGrainMarker *data = NULL;
|
VmdkGrainMarker *data = NULL;
|
||||||
@ -1868,9 +1869,10 @@ static int vmdk_write_extent(VmdkExtent *extent, int64_t cluster_offset,
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int vmdk_read_extent(VmdkExtent *extent, int64_t cluster_offset,
|
static int coroutine_fn
|
||||||
int64_t offset_in_cluster, QEMUIOVector *qiov,
|
vmdk_read_extent(VmdkExtent *extent, int64_t cluster_offset,
|
||||||
int bytes)
|
int64_t offset_in_cluster, QEMUIOVector *qiov,
|
||||||
|
int bytes)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
int cluster_bytes, buf_bytes;
|
int cluster_bytes, buf_bytes;
|
||||||
@ -2015,9 +2017,9 @@ fail:
|
|||||||
*
|
*
|
||||||
* Returns: error code with 0 for success.
|
* Returns: error code with 0 for success.
|
||||||
*/
|
*/
|
||||||
static int vmdk_pwritev(BlockDriverState *bs, uint64_t offset,
|
static int coroutine_fn vmdk_pwritev(BlockDriverState *bs, uint64_t offset,
|
||||||
uint64_t bytes, QEMUIOVector *qiov,
|
uint64_t bytes, QEMUIOVector *qiov,
|
||||||
bool zeroed, bool zero_dry_run)
|
bool zeroed, bool zero_dry_run)
|
||||||
{
|
{
|
||||||
BDRVVmdkState *s = bs->opaque;
|
BDRVVmdkState *s = bs->opaque;
|
||||||
VmdkExtent *extent = NULL;
|
VmdkExtent *extent = NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user