From 265457845fc51f197d9cc0854fa5e9164565f3bb Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Wed, 22 Feb 2012 17:48:38 -0700 Subject: xml: output memory unit for clarity Make it obvious to 'dumpxml' readers what unit we are using, since our default of KiB for memory (1024) differs from qemu's default of MiB; and differs from our use of bytes for storage. Tests were updated via: $ find tests/*data tests/*out -name '*.xml' | \ xargs sed -i 's/<\(memory\|currentMemory\|hard_limit\|soft_limit\|min_guarantee\|swap_hard_limit\)>/<\1 unit='"'KiB'>/" $ find tests/*data tests/*out -name '*.xml' | \ xargs sed -i 's/<\(capacity\|allocation\|available\)>/<\1 unit='"'bytes'>/" followed by a few fixes for the stragglers. Note that with this patch, the RNG for still forbids validation of anything except unit='KiB', since the code silently ignores the attribute; a later patch will expand to allow scaled input in the code and update the RNG to match. * docs/schemas/basictypes.rng (unit): Add 'bytes'. (scaledInteger): New define. * docs/schemas/storagevol.rng (sizing): Use it. * docs/schemas/storagepool.rng (sizing): Likewise. * docs/schemas/domaincommon.rng (memoryKBElement): New define; use for memory elements. * src/conf/storage_conf.c (virStoragePoolDefFormat) (virStorageVolDefFormat): Likewise. * src/conf/domain_conf.h (_virDomainDef): Document unit used internally. * src/conf/storage_conf.h (_virStoragePoolDef, _virStorageVolDef): Likewise. * tests/*data/*.xml: Update all tests. * tests/*out/*.xml: Likewise. * tests/define-dev-segfault: Likewise. * tests/openvzutilstest.c (testReadNetworkConf): Likewise. * tests/qemuargv2xmltest.c (blankProblemElements): Likewise. --- tests/domainschemadata/domain-lxc-simple.xml | 2 +- tests/domainschemadata/portprofile.xml | 2 +- tests/domainschemadata/qemu-simple-description-title.xml | 4 ++-- tests/domainschemadata/timers.xml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) (limited to 'tests/domainschemadata') diff --git a/tests/domainschemadata/domain-lxc-simple.xml b/tests/domainschemadata/domain-lxc-simple.xml index 653bbc7fb..e61434fac 100644 --- a/tests/domainschemadata/domain-lxc-simple.xml +++ b/tests/domainschemadata/domain-lxc-simple.xml @@ -5,7 +5,7 @@ exe /sh - 500000 + 500000 diff --git a/tests/domainschemadata/portprofile.xml b/tests/domainschemadata/portprofile.xml index e51301d95..e7849b341 100644 --- a/tests/domainschemadata/portprofile.xml +++ b/tests/domainschemadata/portprofile.xml @@ -1,7 +1,7 @@ portprofile 00000000-0000-0000-0000-000000000000 - 1048576 + 1048576 exe /sh diff --git a/tests/domainschemadata/qemu-simple-description-title.xml b/tests/domainschemadata/qemu-simple-description-title.xml index a8a9cac45..365801db0 100644 --- a/tests/domainschemadata/qemu-simple-description-title.xml +++ b/tests/domainschemadata/qemu-simple-description-title.xml @@ -1,8 +1,8 @@ qemu-demo 603cc28c-9841-864e-0949-8cc7d3bae9f8 - 65536 - 65536 + 65536 + 65536 A short description of this domain A longer explanation that this domain is a test domain diff --git a/tests/domainschemadata/timers.xml b/tests/domainschemadata/timers.xml index c1baa2ccf..0bfb45697 100644 --- a/tests/domainschemadata/timers.xml +++ b/tests/domainschemadata/timers.xml @@ -1,8 +1,8 @@ QEMUGuest1 c7a5fdbd-edaf-9455-926a-d65c16db1809 - 219200 - 219200 + 219200 + 219200 1 hvm -- cgit v1.2.3-18-g5258