Home | History | Annotate | Download | only in qemu

Lines Matching refs:bs1

2480     BlockDriverState *bs, *bs1;
2555 bs1 = NULL;
2556 while ((bs1 = bdrv_next(bs1))) {
2557 if (bdrv_can_snapshot(bs1)) {
2559 ret = bdrv_snapshot_delete(bs1, old_sn->id_str);
2563 bdrv_get_device_name(bs1));
2567 sn->vm_state_size = (bs == bs1 ? vm_state_size : 0);
2568 ret = bdrv_snapshot_create(bs1, sn);
2571 bdrv_get_device_name(bs1));
2583 BlockDriverState *bs, *bs1;
2602 bs1 = bs;
2604 if (bdrv_can_snapshot(bs1)) {
2605 ret = bdrv_snapshot_goto(bs1, name);
2607 if (bs != bs1)
2613 bdrv_get_device_name(bs1));
2618 name, bdrv_get_device_name(bs1));
2622 " '%s'\n", ret, bdrv_get_device_name(bs1));
2626 if (bs == bs1)
2630 } while ((bs1 = bdrv_next(bs)));
2661 BlockDriverState *bs, *bs1;
2670 bs1 = NULL;
2671 while ((bs1 = bdrv_next(bs1))) {
2672 if (bdrv_can_snapshot(bs1)) {
2673 ret = bdrv_snapshot_delete(bs1, name);
2678 bdrv_get_device_name(bs1));
2681 "'%s'\n", ret, bdrv_get_device_name(bs1));
2689 BlockDriverState *bs, *bs1;
2700 bs1 = NULL;
2701 while ((bs1 = bdrv_next(bs1))) {
2702 if (bdrv_can_snapshot(bs1)) {
2703 if (bs == bs1)
2704 monitor_printf(out, " %s", bdrv_get_device_name(bs1));