diff options
author | Alberto Faria | 2022-10-13 14:37:02 +0200 |
---|---|---|
committer | Kevin Wolf | 2022-10-27 20:14:11 +0200 |
commit | ce47ff20b9f3c05b2b371539bedc437c531c0beb (patch) | |
tree | ba941e3d0dd9e6be92c4b354ceb12c02e272e8b9 /block | |
parent | commit: switch to *_co_* functions (diff) | |
download | qemu-ce47ff20b9f3c05b2b371539bedc437c531c0beb.tar.gz qemu-ce47ff20b9f3c05b2b371539bedc437c531c0beb.tar.xz qemu-ce47ff20b9f3c05b2b371539bedc437c531c0beb.zip |
block: switch to *_co_* functions
Signed-off-by: Alberto Faria <afaria@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20221013123711.620631-16-pbonzini@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/io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/block/io.c b/block/io.c index 236b12da2a..5518a9d1e6 100644 --- a/block/io.c +++ b/block/io.c @@ -2729,8 +2729,8 @@ int coroutine_fn bdrv_co_is_zero_fast(BlockDriverState *bs, int64_t offset, return 1; } - ret = bdrv_common_block_status_above(bs, NULL, false, false, offset, - bytes, &pnum, NULL, NULL, NULL); + ret = bdrv_co_common_block_status_above(bs, NULL, false, false, offset, + bytes, &pnum, NULL, NULL, NULL); if (ret < 0) { return ret; |