summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorFam Zheng <famz@redhat.com>2016-01-26 11:58:50 +0800
committerMax Reitz <mreitz@redhat.com>2016-02-02 17:50:47 +0100
commit178b4db7e5dc6c5bbaa24a72fdb232ec259c26eb (patch)
treedadd4adffa9fb4c7329ce39633f0183af4d014f4
parent3064bf6fffe4705d983b8cecfbbe3de3e5a75312 (diff)
downloadfocaccia-qemu-178b4db7e5dc6c5bbaa24a72fdb232ec259c26eb.tar.gz
focaccia-qemu-178b4db7e5dc6c5bbaa24a72fdb232ec259c26eb.zip
qcow2: Assign bs->file->bs to file in qcow2_co_get_block_status
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Fam Zheng <famz@redhat.com>
Message-id: 1453780743-16806-4-git-send-email-famz@redhat.com
Signed-off-by: Max Reitz <mreitz@redhat.com>
-rw-r--r--block/qcow2.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/block/qcow2.c b/block/qcow2.c
index d4ea6b416d..8babecdab2 100644
--- a/block/qcow2.c
+++ b/block/qcow2.c
@@ -1349,6 +1349,7 @@ static int64_t coroutine_fn qcow2_co_get_block_status(BlockDriverState *bs,
         !s->cipher) {
         index_in_cluster = sector_num & (s->cluster_sectors - 1);
         cluster_offset |= (index_in_cluster << BDRV_SECTOR_BITS);
+        *file = bs->file->bs;
         status |= BDRV_BLOCK_OFFSET_VALID | cluster_offset;
     }
     if (ret == QCOW2_CLUSTER_ZERO) {