diff options
| author | Stefan Hajnoczi | 2017-05-12 16:39:19 +0200 |
|---|---|---|
| committer | Stefan Hajnoczi | 2017-05-12 16:39:23 +0200 |
| commit | b54933eed532b10c8a1967d9f988262ccbb94ee2 (patch) | |
| tree | 091671b3016466aef7664e5beb42de15d6b62ca8 /block | |
| parent | Merge remote-tracking branch 'kwolf/tags/for-upstream' into staging (diff) | |
| parent | aio: add missing aio_notify() to aio_enable_external() (diff) | |
| download | qemu-b54933eed532b10c8a1967d9f988262ccbb94ee2.tar.gz qemu-b54933eed532b10c8a1967d9f988262ccbb94ee2.tar.xz qemu-b54933eed532b10c8a1967d9f988262ccbb94ee2.zip | |
Merge tag 'block-pull-request' into staging
# gpg: Signature made Fri 12 May 2017 10:37:12 AM EDT
# gpg: using RSA key 0x9CA4ABB381AB73C8
# gpg: Good signature from "Stefan Hajnoczi <stefanha@redhat.com>"
# gpg: aka "Stefan Hajnoczi <stefanha@gmail.com>"
# Primary key fingerprint: 8695 A8BF D3F9 7CDA AC35 775A 9CA4 ABB3 81AB 73C8
* tag 'block-pull-request':
aio: add missing aio_notify() to aio_enable_external()
block: Simplify BDRV_BLOCK_RAW recursion
coroutine: remove GThread implementation
Signed-off-by: Stefan Hajnoczi <stefanha@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 40bd94f323..fdd7485c22 100644 --- a/block/io.c +++ b/block/io.c @@ -1784,8 +1784,8 @@ static int64_t coroutine_fn bdrv_co_get_block_status(BlockDriverState *bs, if (ret & BDRV_BLOCK_RAW) { assert(ret & BDRV_BLOCK_OFFSET_VALID); - ret = bdrv_get_block_status(*file, ret >> BDRV_SECTOR_BITS, - *pnum, pnum, file); + ret = bdrv_co_get_block_status(*file, ret >> BDRV_SECTOR_BITS, + *pnum, pnum, file); goto out; } |
