From: Fam Zheng Date: Tue, 26 Jan 2016 03:58:51 +0000 (+0800) Subject: raw: Assign bs to file in raw_co_get_block_status X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=02650acbc622b51b3428630b2f60ca1966caa1e8;p=qemu.git raw: Assign bs to file in raw_co_get_block_status Signed-off-by: Fam Zheng Message-id: 1453780743-16806-5-git-send-email-famz@redhat.com Reviewed-by: Max Reitz Signed-off-by: Max Reitz --- diff --git a/block/raw-posix.c b/block/raw-posix.c index 3ef9b256f8..8866121cf7 100644 --- a/block/raw-posix.c +++ b/block/raw-posix.c @@ -1861,6 +1861,7 @@ static int64_t coroutine_fn raw_co_get_block_status(BlockDriverState *bs, *pnum = MIN(nb_sectors, (data - start) / BDRV_SECTOR_SIZE); ret = BDRV_BLOCK_ZERO; } + *file = bs; return ret | BDRV_BLOCK_OFFSET_VALID | start; } diff --git a/block/raw_bsd.c b/block/raw_bsd.c index 9a8933b211..ea16a231c0 100644 --- a/block/raw_bsd.c +++ b/block/raw_bsd.c @@ -119,6 +119,7 @@ static int64_t coroutine_fn raw_co_get_block_status(BlockDriverState *bs, BlockDriverState **file) { *pnum = nb_sectors; + *file = bs->file->bs; return BDRV_BLOCK_RAW | BDRV_BLOCK_OFFSET_VALID | BDRV_BLOCK_DATA | (sector_num << BDRV_SECTOR_BITS); }