Commit 04dec3c3 authored by Vladimir Sementsov-Ogievskiy's avatar Vladimir Sementsov-Ogievskiy Committed by Max Reitz
Browse files

block/snapshot: dirty all dirty bitmaps on snapshot-switch



Snapshot-switch actually changes active state of disk so it should
reflect on dirty bitmaps. Otherwise next incremental backup using
these bitmaps will be invalid.

Signed-off-by: default avatarVladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-id: 20171023092945.54532-1-vsementsov@virtuozzo.com
Reviewed-by: default avatarEric Blake <eblake@redhat.com>
Reviewed-by: default avatarJohn Snow <jsnow@redhat.com>
Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
parent bcb5270c
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -181,10 +181,24 @@ int bdrv_snapshot_goto(BlockDriverState *bs,
{
    BlockDriver *drv = bs->drv;
    int ret, open_ret;
    int64_t len;

    if (!drv) {
        return -ENOMEDIUM;
    }

    len = bdrv_getlength(bs);
    if (len < 0) {
        return len;
    }
    /* We should set all bits in all enabled dirty bitmaps, because dirty
     * bitmaps reflect active state of disk and snapshot switch operation
     * actually dirties active state.
     * TODO: It may make sense not to set all bits but analyze block status of
     * current state and destination snapshot and do not set bits corresponding
     * to both-zero or both-unallocated areas. */
    bdrv_set_dirty(bs, 0, len);

    if (drv->bdrv_snapshot_goto) {
        return drv->bdrv_snapshot_goto(bs, snapshot_id);
    }