563e94d4f8
- Disable building wireshark dissector. Commit 37397320 requires wireshark pkgconfig, which SUSE wireshark packages do not provide. - Disable building the legacy Xen driver since Xen no longer provides the xend toolstack. Remove xend-specific patches while at it: fix-pci-attach-xen-driver.patch, xen-name-for-devid.patch - Update to libvirt 1.2.14 - qemu: Implement memory device hotplug - Implement public API for virDomainPinIOThread - Implement public API for virDomainGetIOThreadsInfo - SRIOV NIC offload feature discovery - Many incremental improvements and bug fixes, see http://libvirt.org/news.html - Drop disable-hugepage-test.patch in favor of upstream fix - Fix build on older distros containing a polkit package that lacks support for /etc/polkit-1/rules.d drop directory OBS-URL: https://build.opensuse.org/request/show/294211 OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=450
115 lines
3.8 KiB
Diff
115 lines
3.8 KiB
Diff
Index: libvirt-1.2.14/tests/vircgrouptest.c
|
|
===================================================================
|
|
--- libvirt-1.2.14.orig/tests/vircgrouptest.c
|
|
+++ libvirt-1.2.14/tests/vircgrouptest.c
|
|
@@ -34,7 +34,6 @@
|
|
# include "virfile.h"
|
|
# include "virbuffer.h"
|
|
# include "testutilslxc.h"
|
|
-# include "nodeinfo.h"
|
|
|
|
# define VIR_FROM_THIS VIR_FROM_NONE
|
|
|
|
@@ -586,91 +585,6 @@ static int testCgroupAvailable(const voi
|
|
return 0;
|
|
}
|
|
|
|
-static int testCgroupGetPercpuStats(const void *args ATTRIBUTE_UNUSED)
|
|
-{
|
|
- virCgroupPtr cgroup = NULL;
|
|
- size_t i;
|
|
- int rv, ret = -1;
|
|
- virTypedParameterPtr params = NULL;
|
|
-# define EXPECTED_NCPUS 160
|
|
-
|
|
- unsigned long long expected[EXPECTED_NCPUS] = {
|
|
- 0, 0, 0, 0, 0, 0, 0, 0,
|
|
- 7059492996, 0, 0, 0, 0, 0, 0, 0,
|
|
- 4180532496, 0, 0, 0, 0, 0, 0, 0,
|
|
- 0, 0, 0, 0, 0, 0, 0, 0,
|
|
- 0, 0, 0, 0, 0, 0, 0, 0,
|
|
- 0, 0, 0, 0, 0, 0, 0, 0,
|
|
- 1957541268, 0, 0, 0, 0, 0, 0, 0,
|
|
- 2065932204, 0, 0, 0, 0, 0, 0, 0,
|
|
- 18228689414, 0, 0, 0, 0, 0, 0, 0,
|
|
- 4245525148, 0, 0, 0, 0, 0, 0, 0,
|
|
- 2911161568, 0, 0, 0, 0, 0, 0, 0,
|
|
- 1407758136, 0, 0, 0, 0, 0, 0, 0,
|
|
- 1836807700, 0, 0, 0, 0, 0, 0, 0,
|
|
- 1065296618, 0, 0, 0, 0, 0, 0, 0,
|
|
- 2046213266, 0, 0, 0, 0, 0, 0, 0,
|
|
- 747889778, 0, 0, 0, 0, 0, 0, 0,
|
|
- 709566900, 0, 0, 0, 0, 0, 0, 0,
|
|
- 444777342, 0, 0, 0, 0, 0, 0, 0,
|
|
- 5683512916, 0, 0, 0, 0, 0, 0, 0,
|
|
- 635751356, 0, 0, 0, 0, 0, 0, 0,
|
|
- };
|
|
-
|
|
- if (VIR_ALLOC_N(params, EXPECTED_NCPUS) < 0)
|
|
- goto cleanup;
|
|
-
|
|
- if ((rv = virCgroupNewPartition("/virtualmachines", true,
|
|
- (1 << VIR_CGROUP_CONTROLLER_CPU) |
|
|
- (1 << VIR_CGROUP_CONTROLLER_CPUACCT),
|
|
- &cgroup)) < 0) {
|
|
- fprintf(stderr, "Could not create /virtualmachines cgroup: %d\n", -rv);
|
|
- goto cleanup;
|
|
- }
|
|
-
|
|
- if (nodeGetCPUCount() != EXPECTED_NCPUS) {
|
|
- fprintf(stderr, "Unexpected: nodeGetCPUCount() yields: %d\n", nodeGetCPUCount());
|
|
- goto cleanup;
|
|
- }
|
|
-
|
|
- if ((rv = virCgroupGetPercpuStats(cgroup,
|
|
- params,
|
|
- 1, 0, EXPECTED_NCPUS, 0)) < 0) {
|
|
- fprintf(stderr, "Failed call to virCgroupGetPercpuStats for /virtualmachines cgroup: %d\n", -rv);
|
|
- goto cleanup;
|
|
- }
|
|
-
|
|
- for (i = 0; i < EXPECTED_NCPUS; i++) {
|
|
- if (!STREQ(params[i].field, VIR_DOMAIN_CPU_STATS_CPUTIME)) {
|
|
- fprintf(stderr,
|
|
- "Wrong parameter name value from virCgroupGetPercpuStats at %zu (is: %s)\n",
|
|
- i, params[i].field);
|
|
- goto cleanup;
|
|
- }
|
|
-
|
|
- if (params[i].type != VIR_TYPED_PARAM_ULLONG) {
|
|
- fprintf(stderr,
|
|
- "Wrong parameter value type from virCgroupGetPercpuStats at %zu (is: %d)\n",
|
|
- i, params[i].type);
|
|
- goto cleanup;
|
|
- }
|
|
-
|
|
- if (params[i].value.ul != expected[i]) {
|
|
- fprintf(stderr,
|
|
- "Wrong value from virCgroupGetMemoryUsage at %zu (expected %llu)\n",
|
|
- i, params[i].value.ul);
|
|
- goto cleanup;
|
|
- }
|
|
- }
|
|
-
|
|
- ret = 0;
|
|
-
|
|
- cleanup:
|
|
- virCgroupFree(&cgroup);
|
|
- VIR_FREE(params);
|
|
- return ret;
|
|
-}
|
|
-
|
|
static int testCgroupGetMemoryUsage(const void *args ATTRIBUTE_UNUSED)
|
|
{
|
|
virCgroupPtr cgroup = NULL;
|
|
@@ -895,9 +809,6 @@ mymain(void)
|
|
if (virtTestRun("virCgroupGetMemoryUsage works", testCgroupGetMemoryUsage, NULL) < 0)
|
|
ret = -1;
|
|
|
|
- if (virtTestRun("virCgroupGetPercpuStats works", testCgroupGetPercpuStats, NULL) < 0)
|
|
- ret = -1;
|
|
-
|
|
setenv("VIR_CGROUP_MOCK_MODE", "allinone", 1);
|
|
if (virtTestRun("New cgroup for self (allinone)", testCgroupNewForSelfAllInOne, NULL) < 0)
|
|
ret = -1;
|