mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
31d42506fb
Add <features> and <compat> elements to volume target XML. <compat> is a string which for qcow2 represents the QEMU version it should be compatible with. Valid values are 0.10 and 1.1. 1.1 is implicit if the <features> element is present, otherwise qemu-img default is used. 0.10 can be specified to explicitly create older images after the qemu-img default changes. <features> contains optional features, so far <lazy_refcounts/> is available, which enables caching of reference counters, improving performance for snapshots.
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
## Copyright (C) 2005-2011, 2013 Red Hat, Inc.
|
|
##
|
|
## This library is free software; you can redistribute it and/or
|
|
## modify it under the terms of the GNU Lesser General Public
|
|
## License as published by the Free Software Foundation; either
|
|
## version 2.1 of the License, or (at your option) any later version.
|
|
##
|
|
## This library is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
## Lesser General Public License for more details.
|
|
##
|
|
## You should have received a copy of the GNU Lesser General Public
|
|
## License along with this library. If not, see
|
|
## <http://www.gnu.org/licenses/>.
|
|
|
|
schemadir = $(pkgdatadir)/schemas
|
|
schema_DATA = \
|
|
basictypes.rng \
|
|
capability.rng \
|
|
domain.rng \
|
|
domaincommon.rng \
|
|
domainsnapshot.rng \
|
|
interface.rng \
|
|
network.rng \
|
|
networkcommon.rng \
|
|
nodedev.rng \
|
|
nwfilter.rng \
|
|
secret.rng \
|
|
storageencryption.rng \
|
|
storagefilefeatures.rng \
|
|
storagepool.rng \
|
|
storagevol.rng
|
|
|
|
EXTRA_DIST = $(schema_DATA)
|