[libvirt] [PATCH] esx: Support for disk-only and quiescing snapshots.

Eric Blake eblake at redhat.com
Wed Jul 17 21:42:18 UTC 2013


On 07/17/2013 12:28 PM, Geoff Hickey wrote:
> Add support for creating disk-only (no memory) snapshots in esx, and
> for quiescing the VM before taking the snapshot. The VMware API
> supports these operations directly, so adding support to libvirt is
> just a matter of setting the flags correctly when calling
> VMware. VIR_DOMAIN_SNAPSHOT_CREATE_DISK_ONLY and
> VIR_DOMAIN_SNAPSHOT_CREATE_QUIESCE are now valid flags for esx.
> ---
>  src/esx/esx_driver.c |   14 ++++++++++----
>  1 files changed, 10 insertions(+), 4 deletions(-)

ACK and pushed.

> 
> diff --git a/src/esx/esx_driver.c b/src/esx/esx_driver.c
> index fbe43c2..d69576d 100644
> --- a/src/esx/esx_driver.c
> +++ b/src/esx/esx_driver.c
> @@ -4209,9 +4209,14 @@ esxDomainSnapshotCreateXML(virDomainPtr domain, const char *xmlDesc,
>      esxVI_TaskInfoState taskInfoState;
>      char *taskInfoErrorMessage = NULL;
>      virDomainSnapshotPtr snapshot = NULL;
> +    bool diskOnly = (flags & VIR_DOMAIN_SNAPSHOT_CREATE_DISK_ONLY) != 0;
> +    bool quiesce = (flags & VIR_DOMAIN_SNAPSHOT_CREATE_QUIESCE) != 0;
>  
> -    /* ESX has no snapshot metadata, so this flag is trivial.  */
> -    virCheckFlags(VIR_DOMAIN_SNAPSHOT_CREATE_NO_METADATA, NULL);
> +    /* ESX supports disk-only and quiesced snapshots, but has no snapshot *
> +     * metadata. */

Comment is a bit misleading; I reworded it slightly to emphasize that
the flag is accepted and trivial because it is libvirt that tracks no
metadata.

Hmm, the ESX driver is missing support for virDomainListAllSnapshots,
along with its ability to filter based on whether a snapshot was
disk-only or included memory.  Is that something you are interested in
tackling as a followup?

-- 
Eric Blake   eblake redhat com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org

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


More information about the libvir-list mailing list