]> Git Repo - qemu.git/commitdiff
block: Use returned *file in bdrv_co_get_block_status
authorFam Zheng <[email protected]>
Tue, 26 Jan 2016 03:59:00 +0000 (11:59 +0800)
committerMax Reitz <[email protected]>
Tue, 2 Feb 2016 16:50:47 +0000 (17:50 +0100)
Now that all drivers return the right "file" pointer, we can use it.

Signed-off-by: Fam Zheng <[email protected]>
Reviewed-by: Max Reitz <[email protected]>
Message-id: 1453780743[email protected]
Signed-off-by: Max Reitz <[email protected]>
block/io.c

index ea040bef2280408bc971b80e2b12e6d946ba3618..343ff1f233909a7910d897457c0c59fb49d1d54f 100644 (file)
@@ -1554,13 +1554,13 @@ static int64_t coroutine_fn bdrv_co_get_block_status(BlockDriverState *bs,
         }
     }
 
-    if (bs->file &&
+    if (*file && *file != bs &&
         (ret & BDRV_BLOCK_DATA) && !(ret & BDRV_BLOCK_ZERO) &&
         (ret & BDRV_BLOCK_OFFSET_VALID)) {
         BlockDriverState *file2;
         int file_pnum;
 
-        ret2 = bdrv_co_get_block_status(bs->file->bs, ret >> BDRV_SECTOR_BITS,
+        ret2 = bdrv_co_get_block_status(*file, ret >> BDRV_SECTOR_BITS,
                                         *pnum, &file_pnum, &file2);
         if (ret2 >= 0) {
             /* Ignore errors.  This is just providing extra information, it
This page took 0.032345 seconds and 4 git commands to generate.