mirror of https://gitee.com/openkylin/qemu.git
snapshot: create bdrv_all_create_snapshot helper
to create snapshot for all loaded block drivers. The patch also ensures proper locking. Signed-off-by: Denis V. Lunev <den@openvz.org> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Fam Zheng <famz@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> CC: Kevin Wolf <kwolf@redhat.com> Tested-by: Greg Kurz <gkurz@linux.vnet.ibm.com> Signed-off-by: Juan Quintela <quintela@redhat.com>
This commit is contained in:
parent
c6258b04f1
commit
a9085f9b55
|
@ -443,3 +443,29 @@ int bdrv_all_find_snapshot(const char *name, BlockDriverState **first_bad_bs)
|
||||||
*first_bad_bs = bs;
|
*first_bad_bs = bs;
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int bdrv_all_create_snapshot(QEMUSnapshotInfo *sn,
|
||||||
|
BlockDriverState *vm_state_bs,
|
||||||
|
uint64_t vm_state_size,
|
||||||
|
BlockDriverState **first_bad_bs)
|
||||||
|
{
|
||||||
|
int err = 0;
|
||||||
|
BlockDriverState *bs = NULL;
|
||||||
|
|
||||||
|
while (err == 0 && (bs = bdrv_next(bs))) {
|
||||||
|
AioContext *ctx = bdrv_get_aio_context(bs);
|
||||||
|
|
||||||
|
aio_context_acquire(ctx);
|
||||||
|
if (bs == vm_state_bs) {
|
||||||
|
sn->vm_state_size = vm_state_size;
|
||||||
|
err = bdrv_snapshot_create(bs, sn);
|
||||||
|
} else if (bdrv_can_snapshot(bs)) {
|
||||||
|
sn->vm_state_size = 0;
|
||||||
|
err = bdrv_snapshot_create(bs, sn);
|
||||||
|
}
|
||||||
|
aio_context_release(ctx);
|
||||||
|
}
|
||||||
|
|
||||||
|
*first_bad_bs = bs;
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
|
@ -86,5 +86,9 @@ int bdrv_all_delete_snapshot(const char *name, BlockDriverState **first_bsd_bs,
|
||||||
Error **err);
|
Error **err);
|
||||||
int bdrv_all_goto_snapshot(const char *name, BlockDriverState **first_bsd_bs);
|
int bdrv_all_goto_snapshot(const char *name, BlockDriverState **first_bsd_bs);
|
||||||
int bdrv_all_find_snapshot(const char *name, BlockDriverState **first_bad_bs);
|
int bdrv_all_find_snapshot(const char *name, BlockDriverState **first_bad_bs);
|
||||||
|
int bdrv_all_create_snapshot(QEMUSnapshotInfo *sn,
|
||||||
|
BlockDriverState *vm_state_bs,
|
||||||
|
uint64_t vm_state_size,
|
||||||
|
BlockDriverState **first_bad_bs);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1996,19 +1996,10 @@ void hmp_savevm(Monitor *mon, const QDict *qdict)
|
||||||
goto the_end;
|
goto the_end;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* create the snapshots */
|
ret = bdrv_all_create_snapshot(sn, bs, vm_state_size, &bs);
|
||||||
|
if (ret < 0) {
|
||||||
bs1 = NULL;
|
monitor_printf(mon, "Error while creating snapshot on '%s'\n",
|
||||||
while ((bs1 = bdrv_next(bs1))) {
|
bdrv_get_device_name(bs));
|
||||||
if (bdrv_can_snapshot(bs1)) {
|
|
||||||
/* Write VM state size only to the image that contains the state */
|
|
||||||
sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
|
|
||||||
ret = bdrv_snapshot_create(bs1, sn);
|
|
||||||
if (ret < 0) {
|
|
||||||
monitor_printf(mon, "Error while creating snapshot on '%s'\n",
|
|
||||||
bdrv_get_device_name(bs1));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
the_end:
|
the_end:
|
||||||
|
|
Loading…
Reference in New Issue