>>
>> +static void do_info_snapshots_blk(Monitor *mon, const char *device)
>> +{
>> +BlockDriverState *bs;
>> +QEMUSnapshotInfo *sn_tab, *sn;
>> +int nb_sns, i;
>> +char buf[256];
>> +
>> +/* find the target bs */
>> +bs = bdrv_find(device);
>> +if (!bs) {
>> +
Wenchao Xia writes:
> This patch add an option to show snapshots on a single block
> device, so some snapshot do not exist on other block device
> could be shown.
>
> Signed-off-by: Wenchao Xia
> ---
> monitor.c |6 +++---
> savevm.c | 55 +++
This patch add an option to show snapshots on a single block
device, so some snapshot do not exist on other block device
could be shown.
Signed-off-by: Wenchao Xia
---
monitor.c |6 +++---
savevm.c | 55 ++-
2 files changed, 57 inserti