[libvirt] [PATCH] qemu: snapshot: Fix incorrect disk type for auto-generated disks

Peter Krempa pkrempa at redhat.com
Thu Dec 5 16:30:58 UTC 2013


On 12/05/13 17:17, Peter Krempa wrote:
> When changing the parsing and formatting functions in commit
> 43f2ccdc73090bd03f64de4d58d46ffa0134d705 I forgot to update the qemu
> disk alingnment function for snapshots that automatically adds snapshot
> configs for disks that were not mentioned in the XML. The function
> allocated a new disk snapshot definition but did not correctly
> initialize the snapshot disk source type variable. This resulted into
> the disks considered as block devices and invalid XML was generated.
> 
> Reported by John Ferlan.
> ---
> 
> Notes:
>     Doing a unit test for this will require yet another addition to the testsuite
>     so I'm sending this patch first.
> 
>  src/conf/snapshot_conf.c | 10 ++++++++++
>  1 file changed, 10 insertions(+)
> 
> diff --git a/src/conf/snapshot_conf.c b/src/conf/snapshot_conf.c
> index 5637975..55abd80 100644
> --- a/src/conf/snapshot_conf.c
> +++ b/src/conf/snapshot_conf.c
> @@ -532,6 +532,7 @@ virDomainSnapshotAlignDisks(virDomainSnapshotDefPtr def,
>              goto cleanup;
>          disk->index = i;
>          disk->snapshot = def->dom->disks[i]->snapshot;
> +        disk->type = -1;
>          if (!disk->snapshot)
>              disk->snapshot = default_snapshot;
>      }
> @@ -549,6 +550,15 @@ virDomainSnapshotAlignDisks(virDomainSnapshotDefPtr def,
>              const char *tmp;
>              struct stat sb;
> 
> +            if (disk->type != VIR_DOMAIN_DISK_TYPE_FILE ||

I forgot to amend the patch before sending. Please consider && in place
of || in the line above.

> +                disk->type != -1) {
> +                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
> +                               _("cannot generate external snapshot name "
> +                                 "for disk '%s' on a '%s' device"),
> +                               disk->name, virDomainDiskTypeToString(disk->type));
> +                goto cleanup;
> +            }
> +
>              if (!original) {
>                  virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
>                                 _("cannot generate external snapshot name "
> 

Peter

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 901 bytes
Desc: OpenPGP digital signature
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20131205/92f00c25/attachment-0001.sig>


More information about the libvir-list mailing list