mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-16 06:31:51 -06:00
block: remove incorrect coroutine_fn annotation
Signed-off-by: Alberto Faria <afaria@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Message-Id: <20221013123711.620631-3-pbonzini@redhat.com> Reviewed-by: Kevin Wolf <kwolf@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
1a2152568a
commit
7c85803c49
1 changed files with 2 additions and 2 deletions
|
@ -2739,8 +2739,8 @@ int coroutine_fn bdrv_co_is_zero_fast(BlockDriverState *bs, int64_t offset,
|
||||||
return (pnum == bytes) && (ret & BDRV_BLOCK_ZERO);
|
return (pnum == bytes) && (ret & BDRV_BLOCK_ZERO);
|
||||||
}
|
}
|
||||||
|
|
||||||
int coroutine_fn bdrv_is_allocated(BlockDriverState *bs, int64_t offset,
|
int bdrv_is_allocated(BlockDriverState *bs, int64_t offset, int64_t bytes,
|
||||||
int64_t bytes, int64_t *pnum)
|
int64_t *pnum)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
int64_t dummy;
|
int64_t dummy;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue