diff options
Diffstat (limited to 'migration')
-rw-r--r-- | migration/block.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/migration/block.c b/migration/block.c index e0628d187f..16cc1f8609 100644 --- a/migration/block.c +++ b/migration/block.c @@ -883,8 +883,9 @@ static int block_load(QEMUFile *f, void *opaque, int version_id) } if (flags & BLK_MIG_FLAG_ZERO_BLOCK) { - ret = bdrv_write_zeroes(bs, addr, nr_sectors, - BDRV_REQ_MAY_UNMAP); + ret = bdrv_pwrite_zeroes(bs, addr << BDRV_SECTOR_BITS, + nr_sectors << BDRV_SECTOR_BITS, + BDRV_REQ_MAY_UNMAP); } else { buf = g_malloc(BLOCK_SIZE); qemu_get_buffer(f, buf, BLOCK_SIZE); |