Devel
Threads by month
- ----- 2026 -----
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- 17 participants
- 40169 discussions
[PATCH v2 0/8] qemu: Remember memory backing paths for started domains
by Martin Kletzander 24 Sep '24
by Martin Kletzander 24 Sep '24
24 Sep '24
Every time we work with file-backed memory we construct the paths from the
driver config. Not only does is that slow, it is also wrong. If the
configuration changes while a domain with file-backed memory is running, once
the daemon is restarted and the domain is being stopped, we construct the wrong
path to clean up. And it also makes it more difficult to change that in the
future, for example the patch series which led me to write this patch series:
https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/message/I6V…
The patches are maybe split way too much, so feel free to suggest squashing some
together, I'm not opposed to that.
v2:
- Do not introduce unused functions
v1:
- https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/thread/H57G…
Martin Kletzander (8):
qemu: Move domain-related functions to qemu_domain
qemu: Change parameters of qemuGetMemoryBackingDomainPath()
qemu: Add memoryBackingDir to qemuDomainObjPrivate
qemu: Set memoryBackingDir in private data upon start
qemu: Use per-domain private memoryBackingDir for new memory backends
qemu: Make qemuGetMemoryBackingDomainPath static
qemu: Rename memory path functions
qemu: Generate domain memory backing path directly
src/qemu/qemu_command.c | 5 +-
src/qemu/qemu_conf.c | 58 ---------------
src/qemu/qemu_conf.h | 8 --
src/qemu/qemu_domain.c | 73 ++++++++++++++++++-
src/qemu/qemu_domain.h | 7 ++
src/qemu/qemu_hotplug.c | 4 +-
src/qemu/qemu_process.c | 13 ++--
src/qemu/qemu_process.h | 3 +-
.../qemustatusxml2xmldata/backup-pull-in.xml | 1 +
.../blockjob-blockdev-in.xml | 1 +
.../blockjob-mirror-in.xml | 1 +
.../memory-backing-dir-in.xml | 61 ++++++++++++++++
.../memory-backing-dir-out.xml | 1 +
.../migration-in-params-in.xml | 1 +
.../migration-out-nbd-bitmaps-in.xml | 1 +
.../migration-out-nbd-out.xml | 1 +
.../migration-out-nbd-tls-out.xml | 1 +
.../migration-out-params-in.xml | 1 +
tests/qemustatusxml2xmldata/modern-in.xml | 1 +
tests/qemustatusxml2xmldata/upgrade-out.xml | 1 +
.../qemustatusxml2xmldata/vcpus-multi-in.xml | 1 +
tests/qemuxmlactivetest.c | 2 +
22 files changed, 163 insertions(+), 83 deletions(-)
create mode 100644 tests/qemustatusxml2xmldata/memory-backing-dir-in.xml
create mode 120000 tests/qemustatusxml2xmldata/memory-backing-dir-out.xml
--
2.46.1
2
9
[PATCH 0/4] small improvements to virSocketAddr, and a trivial debug log change
by Laine Stump 21 Sep '24
by Laine Stump 21 Sep '24
21 Sep '24
I noticed the virSocjetAddr() stuff when I was writing code that was
going to use virSocketAddrMask(). I think I ended up not using that
function after all, but the fixes are still worthwhile.
Laine Stump (4):
network: fix argument order/log level in message about
firewall_backend
util: fix virSocketAddrMask() when source and result are the same
object
util: make virSocketAddrIPv4 a union
util: use uint32 instead of char[4] for several virSocketAddrIPv4
operations
src/network/bridge_driver_conf.c | 4 +-
src/util/virsocketaddr.c | 84 +++++++++++++++-----------------
2 files changed, 42 insertions(+), 46 deletions(-)
--
2.46.0
2
11
Ján Tomko (15):
util: json: introduce virJSONStringPrettifyBlanks
tests: switch to compact empty JSON object formatting
build: introduce WITH_JSON
ci: install json-c too
meson: add option for building with json-c
meson: switch checks to depend on json-c as well as yajl
build: do not depend on yajl
build: link with json_c
util: json: write a json-c implementation
nss: convert findLeases to use json-c
nss: convert findMACs to use json-c
meson: do not link anything with yajl anymore
meson: options: drop yajl
meson: drop yajl detection
ci: drop yajl completely
ci/buildenv/almalinux-9.sh | 4 +-
ci/buildenv/alpine-319.sh | 4 +-
ci/buildenv/alpine-edge.sh | 4 +-
ci/buildenv/centos-stream-9.sh | 4 +-
ci/buildenv/debian-11-cross-aarch64.sh | 2 +-
ci/buildenv/debian-11-cross-armv6l.sh | 2 +-
ci/buildenv/debian-11-cross-armv7l.sh | 2 +-
ci/buildenv/debian-11-cross-i686.sh | 2 +-
ci/buildenv/debian-11-cross-mips64el.sh | 2 +-
ci/buildenv/debian-11-cross-mipsel.sh | 2 +-
ci/buildenv/debian-11-cross-ppc64le.sh | 2 +-
ci/buildenv/debian-11-cross-s390x.sh | 2 +-
ci/buildenv/debian-11.sh | 2 +-
ci/buildenv/debian-12-cross-aarch64.sh | 2 +-
ci/buildenv/debian-12-cross-armv6l.sh | 2 +-
ci/buildenv/debian-12-cross-armv7l.sh | 2 +-
ci/buildenv/debian-12-cross-i686.sh | 2 +-
ci/buildenv/debian-12-cross-mips64el.sh | 2 +-
ci/buildenv/debian-12-cross-mipsel.sh | 2 +-
ci/buildenv/debian-12-cross-ppc64le.sh | 2 +-
ci/buildenv/debian-12-cross-s390x.sh | 2 +-
ci/buildenv/debian-12.sh | 2 +-
ci/buildenv/debian-sid-cross-aarch64.sh | 2 +-
ci/buildenv/debian-sid-cross-armv6l.sh | 2 +-
ci/buildenv/debian-sid-cross-armv7l.sh | 2 +-
ci/buildenv/debian-sid-cross-i686.sh | 2 +-
ci/buildenv/debian-sid-cross-mips64el.sh | 2 +-
ci/buildenv/debian-sid-cross-ppc64le.sh | 2 +-
ci/buildenv/debian-sid-cross-s390x.sh | 2 +-
ci/buildenv/debian-sid.sh | 2 +-
ci/buildenv/fedora-39.sh | 4 +-
ci/buildenv/fedora-40.sh | 4 +-
ci/buildenv/fedora-rawhide.sh | 4 +-
ci/buildenv/opensuse-leap-15.sh | 2 +-
ci/buildenv/opensuse-tumbleweed.sh | 2 +-
ci/buildenv/ubuntu-2204.sh | 2 +-
ci/buildenv/ubuntu-2404.sh | 2 +-
ci/cirrus/freebsd-13.vars | 2 +-
ci/cirrus/freebsd-14.vars | 2 +-
ci/cirrus/macos-13.vars | 2 +-
ci/cirrus/macos-14.vars | 2 +-
ci/containers/almalinux-9.Dockerfile | 4 +-
ci/containers/alpine-319.Dockerfile | 4 +-
ci/containers/alpine-edge.Dockerfile | 4 +-
ci/containers/centos-stream-9.Dockerfile | 4 +-
.../debian-11-cross-aarch64.Dockerfile | 2 +-
.../debian-11-cross-armv6l.Dockerfile | 2 +-
.../debian-11-cross-armv7l.Dockerfile | 2 +-
ci/containers/debian-11-cross-i686.Dockerfile | 2 +-
.../debian-11-cross-mips64el.Dockerfile | 2 +-
.../debian-11-cross-mipsel.Dockerfile | 2 +-
.../debian-11-cross-ppc64le.Dockerfile | 2 +-
.../debian-11-cross-s390x.Dockerfile | 2 +-
ci/containers/debian-11.Dockerfile | 2 +-
.../debian-12-cross-aarch64.Dockerfile | 2 +-
.../debian-12-cross-armv6l.Dockerfile | 2 +-
.../debian-12-cross-armv7l.Dockerfile | 2 +-
ci/containers/debian-12-cross-i686.Dockerfile | 2 +-
.../debian-12-cross-mips64el.Dockerfile | 2 +-
.../debian-12-cross-mipsel.Dockerfile | 2 +-
.../debian-12-cross-ppc64le.Dockerfile | 2 +-
.../debian-12-cross-s390x.Dockerfile | 2 +-
ci/containers/debian-12.Dockerfile | 2 +-
.../debian-sid-cross-aarch64.Dockerfile | 2 +-
.../debian-sid-cross-armv6l.Dockerfile | 2 +-
.../debian-sid-cross-armv7l.Dockerfile | 2 +-
.../debian-sid-cross-i686.Dockerfile | 2 +-
.../debian-sid-cross-mips64el.Dockerfile | 2 +-
.../debian-sid-cross-ppc64le.Dockerfile | 2 +-
.../debian-sid-cross-s390x.Dockerfile | 2 +-
ci/containers/debian-sid.Dockerfile | 2 +-
ci/containers/fedora-39.Dockerfile | 4 +-
ci/containers/fedora-40.Dockerfile | 4 +-
ci/containers/fedora-rawhide.Dockerfile | 4 +-
ci/containers/opensuse-leap-15.Dockerfile | 2 +-
ci/containers/opensuse-tumbleweed.Dockerfile | 2 +-
ci/containers/ubuntu-2204.Dockerfile | 2 +-
ci/containers/ubuntu-2404.Dockerfile | 2 +-
ci/lcitool/projects/libvirt.yml | 2 +-
libvirt.spec.in | 6 +-
meson.build | 62 +--
meson_options.txt | 8 +-
src/libvirt_private.syms | 1 +
src/meson.build | 2 +-
src/util/meson.build | 2 +-
src/util/virjson.c | 485 +++++-------------
src/util/virjson.h | 2 +
tests/meson.build | 8 +-
tests/qemublocktest.c | 5 +-
.../backupmerge/empty-out.json | 4 +-
tests/qemumigparamsdata/empty.json | 4 +-
tests/qemumigparamstest.c | 5 +-
tests/virmacmaptest.c | 5 +-
tests/virmacmaptestdata/empty.json | 4 +-
tests/virnetdaemontest.c | 2 +-
tests/virstoragetest.c | 4 +-
tools/nss/libvirt_nss_leases.c | 370 +++++--------
tools/nss/libvirt_nss_macs.c | 278 +++-------
tools/nss/meson.build | 4 +-
99 files changed, 475 insertions(+), 972 deletions(-)
--
2.46.0
2
31
libvirt-ci added macOS 15 so let's introduce it and while at it
drop macOS 13.
Signed-off-by: Michal Privoznik <mprivozn(a)redhat.com>
---
ci/cirrus/{macos-13.vars => macos-15.vars} | 0
ci/gitlab/builds.yml | 32 +++++++++++-----------
ci/manifest.yml | 14 +++++-----
3 files changed, 23 insertions(+), 23 deletions(-)
rename ci/cirrus/{macos-13.vars => macos-15.vars} (100%)
diff --git a/ci/cirrus/macos-13.vars b/ci/cirrus/macos-15.vars
similarity index 100%
rename from ci/cirrus/macos-13.vars
rename to ci/cirrus/macos-15.vars
diff --git a/ci/gitlab/builds.yml b/ci/gitlab/builds.yml
index 214119b902..6f78ba2e89 100644
--- a/ci/gitlab/builds.yml
+++ b/ci/gitlab/builds.yml
@@ -624,22 +624,6 @@ x86_64-freebsd-14:
UPGRADE_COMMAND: pkg upgrade -y
-aarch64-macos-13:
- extends: .cirrus_build_job
- needs: []
- allow_failure: false
- variables:
- CIRRUS_VM_IMAGE_NAME: ghcr.io/cirruslabs/macos-ventura-base:latest
- CIRRUS_VM_IMAGE_SELECTOR: image
- CIRRUS_VM_INSTANCE_TYPE: macos_instance
- INSTALL_COMMAND: brew install
- NAME: macos-13
- PATH_EXTRA: /usr/local/opt/ccache/libexec:/usr/local/opt/gettext/bin:/usr/local/opt/libpcap/bin:/usr/local/opt/libxslt/bin
- PKG_CONFIG_PATH: /usr/local/opt/curl/lib/pkgconfig:/usr/local/opt/libpcap/lib/pkgconfig:/usr/local/opt/libxml2/lib/pkgconfig:/usr/local/opt/ncurses/lib/pkgconfig:/usr/local/opt/readline/lib/pkgconfig
- UPDATE_COMMAND: brew update
- UPGRADE_COMMAND: brew upgrade
-
-
aarch64-macos-14:
extends: .cirrus_build_job
needs: []
@@ -654,3 +638,19 @@ aarch64-macos-14:
PKG_CONFIG_PATH: /usr/local/opt/curl/lib/pkgconfig:/usr/local/opt/libpcap/lib/pkgconfig:/usr/local/opt/libxml2/lib/pkgconfig:/usr/local/opt/ncurses/lib/pkgconfig:/usr/local/opt/readline/lib/pkgconfig
UPDATE_COMMAND: brew update
UPGRADE_COMMAND: brew upgrade
+
+
+aarch64-macos-15:
+ extends: .cirrus_build_job
+ needs: []
+ allow_failure: false
+ variables:
+ CIRRUS_VM_IMAGE_NAME: ghcr.io/cirruslabs/macos-sonoma-base:latest
+ CIRRUS_VM_IMAGE_SELECTOR: image
+ CIRRUS_VM_INSTANCE_TYPE: macos_instance
+ INSTALL_COMMAND: brew install
+ NAME: macos-15
+ PATH_EXTRA: /usr/local/opt/ccache/libexec:/usr/local/opt/gettext/bin:/usr/local/opt/libpcap/bin:/usr/local/opt/libxslt/bin
+ PKG_CONFIG_PATH: /usr/local/opt/curl/lib/pkgconfig:/usr/local/opt/libpcap/lib/pkgconfig:/usr/local/opt/libxml2/lib/pkgconfig:/usr/local/opt/ncurses/lib/pkgconfig:/usr/local/opt/readline/lib/pkgconfig
+ UPDATE_COMMAND: brew update
+ UPGRADE_COMMAND: brew upgrade
diff --git a/ci/manifest.yml b/ci/manifest.yml
index 647510ed2f..3c2366380c 100644
--- a/ci/manifest.yml
+++ b/ci/manifest.yml
@@ -203,13 +203,6 @@ targets:
variables:
RPM: skip
- macos-13:
- jobs:
- - arch: aarch64
- variables:
- PATH_EXTRA: /usr/local/opt/ccache/libexec:/usr/local/opt/gettext/bin:/usr/local/opt/libpcap/bin:/usr/local/opt/libxslt/bin
- PKG_CONFIG_PATH: /usr/local/opt/curl/lib/pkgconfig:/usr/local/opt/libpcap/lib/pkgconfig:/usr/local/opt/libxml2/lib/pkgconfig:/usr/local/opt/ncurses/lib/pkgconfig:/usr/local/opt/readline/lib/pkgconfig
-
macos-14:
jobs:
- arch: aarch64
@@ -217,6 +210,13 @@ targets:
PATH_EXTRA: /usr/local/opt/ccache/libexec:/usr/local/opt/gettext/bin:/usr/local/opt/libpcap/bin:/usr/local/opt/libxslt/bin
PKG_CONFIG_PATH: /usr/local/opt/curl/lib/pkgconfig:/usr/local/opt/libpcap/lib/pkgconfig:/usr/local/opt/libxml2/lib/pkgconfig:/usr/local/opt/ncurses/lib/pkgconfig:/usr/local/opt/readline/lib/pkgconfig
+ macos-15:
+ jobs:
+ - arch: aarch64
+ variables:
+ PATH_EXTRA: /usr/local/opt/ccache/libexec:/usr/local/opt/gettext/bin:/usr/local/opt/libpcap/bin:/usr/local/opt/libxslt/bin
+ PKG_CONFIG_PATH: /usr/local/opt/curl/lib/pkgconfig:/usr/local/opt/libpcap/lib/pkgconfig:/usr/local/opt/libxml2/lib/pkgconfig:/usr/local/opt/ncurses/lib/pkgconfig:/usr/local/opt/readline/lib/pkgconfig
+
ubuntu-2204:
jobs:
- arch: x86_64
--
2.44.2
4
9
20 Sep '24
v2 of:
https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/thread/X7JU…
diff to v1:
- Produce a VIR_INFO() message when enabling dump_guest_core
- Fixed comment to dump_guest_core in qemu.conf
- Fixed typo on commit message of 2/2
Michal Prívozník (2):
qemu.conf.in: Fix dumpCore capitalization
qemu: Provide sane default for dump_guest_core
meson.build | 1 +
src/qemu/qemu.conf.in | 8 ++++----
src/qemu/qemu_conf.c | 12 ++++++++++++
tests/testutilsqemu.c | 2 ++
4 files changed, 19 insertions(+), 4 deletions(-)
--
2.44.2
2
3
19 Sep '24
These patches are in response to a bug report filed a few years ago
where I said "I can look at it next week" and then promptly forgot
about it :-/
https://bugzilla.redhat.com/1949432
I was reminded of it when a bunch of old bugs were migrated from
bugzilla.redhat.com to issues.redhat.com and Yalan Zhang added the
comment that the bug was still reproducible on libvirt 10.4.0.
https://issues.redhat.com/browse/RHEL-7036
This got it back onto my todo list (where it should have been the
entire time!) and I've finally gotten to it. Two similar-but-differen
failures had been reported (one when using a network of "direct"
(macvtap) devices, and one when using an openvswitch bridge, and it
turned out that two different (but related) fixes were needed - the
direct problem is fixed *mostly* in patch 1, with the other patches
fixing the ovs problem (and the remainder of the direct problem).
Laine Stump (4):
qemu: prevent unnecessarily failing live interface update
util: don't return early from virNetDevTapReattachBridge() if "force"
is true
qemu: replace open-coded remove/attach bridge with
virNetDevTapReattachBridge()
qemu: rework needBridgeChange/needReconnect decisions in
qemuDomainChangeNet()
src/conf/domain_conf.c | 2 +-
src/qemu/qemu_hotplug.c | 263 +++++++++++++++++++++++++---------------
src/util/virnetdevtap.c | 8 +-
src/util/virnetdevtap.h | 3 +-
4 files changed, 172 insertions(+), 104 deletions(-)
--
2.46.0
2
6
19 Sep '24
Every time we work with file-backed memory we construct the paths from the
driver config. Not only does is that slow, it is also wrong. If the
configuration changes while a domain with file-backed memory is running, once
the daemon is restarted and the domain is being stopped, we construct the wrong
path to clean up. And it also makes it more difficult to change that in the
future, for example the patch series which led me to write this patch series:
https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/message/I6V…
The patches are maybe split way too much, so feel free to suggest squashing some
together, I'm not opposed to that.
Martin Kletzander (8):
qemu: Move domain-related functions to qemu_domain
qemu_domain.h: Change indentation for new functions
qemu: Change parameters of qemuGetMemoryBackingDomainPath()
qemu_domain: Add memoryBackingDir to qemuDomainObjPrivate
qemu_domain: Add qemuDomainSetPrivateMemPath()
qemu_domain: Set memoryBackingDir in private data upon start
qemu: Use per-domain private memoryBackingDir for new memory backends
qemu_domain: Remove unused qemuGetMemoryBackingDomainPath()
src/qemu/qemu_command.c | 4 +-
src/qemu/qemu_conf.c | 58 ---------------
src/qemu/qemu_conf.h | 8 --
src/qemu/qemu_domain.c | 74 ++++++++++++++++++-
src/qemu/qemu_domain.h | 11 +++
src/qemu/qemu_hotplug.c | 4 +-
src/qemu/qemu_process.c | 12 +--
src/qemu/qemu_process.h | 3 +-
.../qemustatusxml2xmldata/backup-pull-in.xml | 1 +
.../blockjob-blockdev-in.xml | 1 +
.../blockjob-mirror-in.xml | 1 +
.../memory-backing-dir-in.xml | 61 +++++++++++++++
.../memory-backing-dir-out.xml | 1 +
.../migration-in-params-in.xml | 1 +
.../migration-out-nbd-bitmaps-in.xml | 1 +
.../migration-out-nbd-out.xml | 1 +
.../migration-out-nbd-tls-out.xml | 1 +
.../migration-out-params-in.xml | 1 +
tests/qemustatusxml2xmldata/modern-in.xml | 1 +
tests/qemustatusxml2xmldata/upgrade-out.xml | 1 +
.../qemustatusxml2xmldata/vcpus-multi-in.xml | 1 +
tests/qemuxmlactivetest.c | 2 +
22 files changed, 167 insertions(+), 82 deletions(-)
create mode 100644 tests/qemustatusxml2xmldata/memory-backing-dir-in.xml
create mode 120000 tests/qemustatusxml2xmldata/memory-backing-dir-out.xml
--
2.46.0
2
9
19 Sep '24
'charstr' is unused since 36d06a5637f, breaking the build on some
platforms. Remove it.
Fixes: 36d06a5637f
Signed-off-by: Peter Krempa <pkrempa(a)redhat.com>
---
Build-breaker fix.
src/qemu/qemu_command.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/src/qemu/qemu_command.c b/src/qemu/qemu_command.c
index c2d65645c4..c20d033aea 100644
--- a/src/qemu/qemu_command.c
+++ b/src/qemu/qemu_command.c
@@ -1300,7 +1300,6 @@ qemuBuildChardevCommand(virCommand *cmd,
virQEMUCaps *qemuCaps)
{
qemuDomainChrSourcePrivate *chrSourcePriv = QEMU_DOMAIN_CHR_SOURCE_PRIVATE(dev);
- g_autofree char *charstr = NULL;
switch ((virDomainChrType) dev->type) {
case VIR_DOMAIN_CHR_TYPE_TCP:
--
2.46.0
1
0
19 Sep '24
*** BLURB HERE ***
Michal Prívozník (2):
qemu.conf.in: Fix dumpCore capitalization
qemu: Provide sane default for dump_guest_core
meson.build | 1 +
src/qemu/qemu.conf.in | 4 ++--
src/qemu/qemu_conf.c | 11 +++++++++++
tests/testutilsqemu.c | 2 ++
4 files changed, 16 insertions(+), 2 deletions(-)
--
2.44.2
2
3
[PULL 01/18] deprecation: don't enable TCG plugins by default on 32 bit hosts
by Alex Bennée 18 Sep '24
by Alex Bennée 18 Sep '24
18 Sep '24
The existing plugins already liberally use host pointer stuffing for
passing user data which will fail when doing 64 bit guests on 32 bit
hosts. We should discourage this by officially deprecating support and
adding another nail to the 32 bit host coffin.
Reviewed-by: Pierrick Bouvier <pierrick.bouvier(a)linaro.org>
Signed-off-by: Alex Bennée <alex.bennee(a)linaro.org>
Message-Id: <20240916085400.1046925-2-alex.bennee(a)linaro.org>
diff --git a/docs/about/deprecated.rst b/docs/about/deprecated.rst
index ed31d4b0b2..809b2b9b81 100644
--- a/docs/about/deprecated.rst
+++ b/docs/about/deprecated.rst
@@ -184,6 +184,17 @@ be an effective use of its limited resources, and thus intends to discontinue
it. Since all recent x86 hardware from the past >10 years is capable of the
64-bit x86 extensions, a corresponding 64-bit OS should be used instead.
+TCG Plugin support not enabled by default on 32-bit hosts (since 9.2)
+'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
+
+While it is still possible to enable TCG plugin support for 32-bit
+hosts there are a number of potential pitfalls when instrumenting
+64-bit guests. The plugin APIs typically pass most addresses as
+uint64_t but practices like encoding that address in a host pointer
+for passing as user-data will lose data. As most software analysis
+benefits from having plenty of host memory it seems reasonable to
+encourage users to use 64 bit builds of QEMU for analysis work
+whatever targets they are instrumenting.
System emulator CPUs
--------------------
diff --git a/configure b/configure
index f3e7572afb..cc8e1ed5b8 100755
--- a/configure
+++ b/configure
@@ -516,6 +516,25 @@ case "$cpu" in
;;
esac
+# Now we have our CPU_CFLAGS we can check if we are targeting a 32 or
+# 64 bit host.
+
+check_64bit_host() {
+cat > $TMPC <<EOF
+#if __SIZEOF_POINTER__ != 8
+#error not 64 bit system
+#endif
+int main(void) { return 0; }
+EOF
+ compile_object "$1"
+}
+
+if check_64bit_host "$CPU_CFLAGS"; then
+ host_bits=64
+else
+ host_bits=32
+fi
+
if test -n "$host_arch" && {
! test -d "$source_path/linux-user/include/host/$host_arch" ||
! test -d "$source_path/common-user/host/$host_arch"; }; then
@@ -1028,7 +1047,7 @@ if test "$static" = "yes" ; then
fi
plugins="no"
fi
-if test "$plugins" != "no"; then
+if test "$plugins" != "no" && test $host_bits -eq 64; then
plugins=yes
subdirs="$subdirs contrib/plugins"
fi
--
2.39.5
1
0
We are getting close to 10.8.0 release of libvirt. To aim for the
release on Tuesday 01 Oct I suggest entering the freeze on Wednesday
25 Sep and tagging RC2 on Friday 27 Sep.
I hope this works for everyone.
Jirka
1
0
18 Sep '24
See 2/2
Peter Krempa (2):
conf: Convert 'protocol' field of TCP char device backend to proper
type
qemu: Reject unsupported chardev backend protocols
src/conf/domain_conf.c | 11 +++------
src/conf/domain_conf.h | 2 +-
src/qemu/qemu_validate.c | 19 +++++++++++++++
src/vmx/vmx.c | 7 +++---
...rial-tcp-chardev-telnets.x86_64-latest.err | 1 +
.../serial-tcp-chardev-telnets.xml | 23 +++++++++++++++++++
tests/qemuxmlconftest.c | 1 +
7 files changed, 51 insertions(+), 13 deletions(-)
create mode 100644 tests/qemuxmlconfdata/serial-tcp-chardev-telnets.x86_64-latest.err
create mode 100644 tests/qemuxmlconfdata/serial-tcp-chardev-telnets.xml
--
2.46.0
2
3
[PATCH 0/8] qemu: Unify generators for commandline and monitor chardev backends
by Peter Krempa 18 Sep '24
by Peter Krempa 18 Sep '24
18 Sep '24
Apart from having just one place to fix when changing chardev backends
this also adds validation against the schema so we can spot deprecations
early.
Peter Krempa (8):
qemu: capabilities: Explain that QEMU_CAPS_CHARDEV_JSON will be used
in tests only
qemuxmlconftest: Add 'chardev-backends' test case
qemu: Introduce unified chardev backend config generator
qemuxmlconftest: Add support for validating schema for 'chardev-add'
qemuxmlconftest: Add test case for QMP schema validation of -chardev
backends
qemu: Move check for chardev backends which can't be hotplugged out of
the monitor
qemu: Use the new chardev backend JSON props generator also in the
monitor
qemu: monitor: Remove the old chardev backend generator
src/qemu/meson.build | 1 +
src/qemu/qemu_block.c | 9 +-
src/qemu/qemu_capabilities.h | 2 +-
src/qemu/qemu_chardev.c | 488 ++++++++++++++++++
src/qemu/qemu_chardev.h | 22 +
src/qemu/qemu_command.c | 202 +-------
src/qemu/qemu_hotplug.c | 51 +-
src/qemu/qemu_monitor.c | 8 +-
src/qemu/qemu_monitor.h | 4 +-
src/qemu/qemu_monitor_json.c | 273 +---------
src/qemu/qemu_monitor_json.h | 4 +-
tests/qemumonitorjsontest.c | 23 +-
.../chardev-backends-json.x86_64-latest.args | 79 +++
.../chardev-backends-json.x86_64-latest.xml | 1 +
.../qemuxmlconfdata/chardev-backends-json.xml | 1 +
.../chardev-backends.x86_64-latest.args | 79 +++
.../chardev-backends.x86_64-latest.xml | 149 ++++++
tests/qemuxmlconfdata/chardev-backends.xml | 111 ++++
tests/qemuxmlconftest.c | 7 +
19 files changed, 1026 insertions(+), 488 deletions(-)
create mode 100644 src/qemu/qemu_chardev.c
create mode 100644 src/qemu/qemu_chardev.h
create mode 100644 tests/qemuxmlconfdata/chardev-backends-json.x86_64-latest.args
create mode 120000 tests/qemuxmlconfdata/chardev-backends-json.x86_64-latest.xml
create mode 120000 tests/qemuxmlconfdata/chardev-backends-json.xml
create mode 100644 tests/qemuxmlconfdata/chardev-backends.x86_64-latest.args
create mode 100644 tests/qemuxmlconfdata/chardev-backends.x86_64-latest.xml
create mode 100644 tests/qemuxmlconfdata/chardev-backends.xml
--
2.46.0
2
16
The riscv64 architecture is not yet fully integrated into
Fedora, but KVM support is already implemented across the stack
and the Fedora package for QEMU is already set up to generate
the qemu-kvm binary package when targeting it.
Thanks: David Abdurachmanov <davidlt(a)rivosinc.com>
Signed-off-by: Andrea Bolognani <abologna(a)redhat.com>
---
libvirt.spec.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libvirt.spec.in b/libvirt.spec.in
index 4dec7ace6f..c332fb4ff1 100644
--- a/libvirt.spec.in
+++ b/libvirt.spec.in
@@ -6,7 +6,7 @@
%define min_rhel 8
%define min_fedora 37
-%define arches_qemu_kvm %{ix86} x86_64 %{power64} %{arm} aarch64 s390x
+%define arches_qemu_kvm %{ix86} x86_64 %{power64} %{arm} aarch64 s390x riscv64
%if 0%{?rhel}
%if 0%{?rhel} > 8
%define arches_qemu_kvm x86_64 aarch64 s390x
--
2.46.0
2
1
17 Sep '24
While closing out the > 50 open tabs that had accumulated in one of my
3 browser windows, I came across a couple of upstream issues where I
had posted a comment several months ago that I would fix some simple
problem "tomorrow" (or maybe it was "next week"). Now that I've been
reminded, I thought I should actually do that.
Laine Stump (5):
network: permit <forward mode='open'/> when a network has no IP
address
network: belatedly update an error message
network: support setting firewalld zone for bridge device of open
networks
network: remove firewalld version check from networkSetBridgeZone()
network: *un*set the firewalld zone while shutting down a network
src/conf/network_conf.c | 5 +-
src/libvirt_private.syms | 1 +
src/network/bridge_driver.c | 8 +++
src/network/bridge_driver_linux.c | 96 +++++++++++++++-------------
src/network/bridge_driver_nop.c | 19 ++++++
src/network/bridge_driver_platform.h | 4 ++
src/util/virfirewalld.c | 23 +++++++
src/util/virfirewalld.h | 2 +
8 files changed, 112 insertions(+), 46 deletions(-)
--
2.46.0
2
15
17 Sep '24
Signed-off-by: Martin Kletzander <mkletzan(a)redhat.com>
---
Pushed under the 'build-breaker' rule. Although I have no idea why only FreeBSD
and macOS builds found that issue when both older and newer clang builds on
Linux did not.
src/network/bridge_driver.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/src/network/bridge_driver.c b/src/network/bridge_driver.c
index 0ba62d986ff4..fe053f423ab5 100644
--- a/src/network/bridge_driver.c
+++ b/src/network/bridge_driver.c
@@ -3475,7 +3475,6 @@ static int
networkDestroy(virNetworkPtr net)
{
virNetworkDriverState *driver = networkGetDriver();
- g_autoptr(virNetworkDriverConfig) cfg = virNetworkDriverGetConfig(driver);
virNetworkObj *obj;
virNetworkDef *def;
int ret = -1;
--
2.46.0
1
0
17 Sep '24
This was initially inspired by https://issues.redhat.com/browse/RHEL-50968 which
does things behind our back. However, I have found some other things when
digging into the aforemention bug.
I rebased, changed, rebased, refactored, and rebased again this branch so many
times there might be a bunch of weird stuff I forgot to remove before posting.
I hope I did not miss any, but one can never be sure ;)
Martin Kletzander (8):
network: Do not update network ports for inactive networks
network: Do not call virNetworkObjUnsetDefTransient on start cleanup
network: Move port deletion into the shutdown function
network: Don't check if network is active in networkShutdownNetwork
network: Clean up after inactive objects during start
network: Try to read dnsmasq PIDs for inactive networks too
network: Separate cleanup from networkRemoveInactive
network: Clean up after disappeared transient inactive networks
src/network/bridge_driver.c | 62 ++++++++++++++++++++++++++++++-------
1 file changed, 50 insertions(+), 12 deletions(-)
--
2.46.0
3
19
16 Sep '24
Signed-off-by: Boris Fiuczynski <fiuczy(a)linux.ibm.com>
---
tests/qemucapabilitiesdata/README.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/qemucapabilitiesdata/README.rst b/tests/qemucapabilitiesdata/README.rst
index 727695c6b0..f65f07cfca 100644
--- a/tests/qemucapabilitiesdata/README.rst
+++ b/tests/qemucapabilitiesdata/README.rst
@@ -121,7 +121,7 @@ Fake test data dumps for certain architectures
==============================================
For some architectures it was impossible or impractical to fetch real capability
-dumps. To ensure coverate of certain cases the dumps were collected from
+dumps. To ensure coverage of certain cases the dumps were collected from
corresponding binaries running on a different architecture.
Capabilities dumps for the following architectures are usually produced on real
--
2.45.0
2
1
16 Sep '24
Currently, if either template is missing AppArmor support is
completely disabled. This means that uninstalling the LXC
driver from a system results in QEMU domains being started
without AppArmor confinement, which obviously doesn't make any
sense.
The problematic scenario was impossible to hit in Debian until
very recently, because all AppArmor files were shipped as part
of the same package; now that the Debian package is much closer
to the Fedora one, and specifically ships the AppArmor files
together with the corresponding driver, it becomes trivial to
trigger it.
Drop the checks entirely. virt-aa-helper, which is responsible
for creating the per-domain profiles starting from the
driver-specific template, already fails if the latter is not
present, so they were always redundant.
https://bugs.debian.org/1081396
Signed-off-by: Andrea Bolognani <abologna(a)redhat.com>
---
src/security/security_apparmor.c | 18 ------------------
1 file changed, 18 deletions(-)
diff --git a/src/security/security_apparmor.c b/src/security/security_apparmor.c
index 27184aef7f..a62ec1b10d 100644
--- a/src/security/security_apparmor.c
+++ b/src/security/security_apparmor.c
@@ -318,27 +318,9 @@ AppArmorSetSecurityHostLabel(virSCSIVHostDevice *dev G_GNUC_UNUSED,
static virSecurityDriverStatus
AppArmorSecurityManagerProbe(const char *virtDriver G_GNUC_UNUSED)
{
- g_autofree char *template_qemu = NULL;
- g_autofree char *template_lxc = NULL;
-
if (use_apparmor() < 0)
return SECURITY_DRIVER_DISABLE;
- /* see if template file exists */
- template_qemu = g_strdup_printf("%s/TEMPLATE.qemu", APPARMOR_DIR "/libvirt");
- template_lxc = g_strdup_printf("%s/TEMPLATE.lxc", APPARMOR_DIR "/libvirt");
-
- if (!virFileExists(template_qemu)) {
- virReportError(VIR_ERR_INTERNAL_ERROR,
- _("template \'%1$s\' does not exist"), template_qemu);
- return SECURITY_DRIVER_DISABLE;
- }
- if (!virFileExists(template_lxc)) {
- virReportError(VIR_ERR_INTERNAL_ERROR,
- _("template \'%1$s\' does not exist"), template_lxc);
- return SECURITY_DRIVER_DISABLE;
- }
-
return SECURITY_DRIVER_ENABLE;
}
--
2.46.0
2
7
16 Sep '24
The 'reconnect' option only allows to specify the time in seconds,
which is way too long for certain workflows.
We have a lightweight disk backend server, which takes about 20ms to
live update, but due to this limitation in QEMU, previously the guest
disk controller would hang for one second because it would take this
long for QEMU to reinitialize the socket connection.
Introduce a new option called 'reconnect-ms', which is the same as
'reconnect', except the value is treated as milliseconds. These are
mutually exclusive and specifying both results in an error.
'reconnect' is also deprecated by this commit to make it possible to
remove it in the future as to not keep two options that control the
same thing.
Signed-off-by: Daniil Tatianin <d-tatianin(a)yandex-team.ru>
---
chardev/char-socket.c | 33 ++++++++++++++++++++++++---------
chardev/char.c | 3 +++
include/chardev/char-socket.h | 2 +-
qapi/char.json | 17 +++++++++++++++--
4 files changed, 43 insertions(+), 12 deletions(-)
diff --git a/chardev/char-socket.c b/chardev/char-socket.c
index 1ca9441b1b..c24331ac23 100644
--- a/chardev/char-socket.c
+++ b/chardev/char-socket.c
@@ -74,7 +74,7 @@ static void qemu_chr_socket_restart_timer(Chardev *chr)
assert(!s->reconnect_timer);
name = g_strdup_printf("chardev-socket-reconnect-%s", chr->label);
s->reconnect_timer = qemu_chr_timeout_add_ms(chr,
- s->reconnect_time * 1000,
+ s->reconnect_time_ms,
socket_reconnect_timeout,
chr);
g_source_set_name(s->reconnect_timer, name);
@@ -481,7 +481,7 @@ static void tcp_chr_disconnect_locked(Chardev *chr)
if (emit_close) {
qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
}
- if (s->reconnect_time && !s->reconnect_timer) {
+ if (s->reconnect_time_ms && !s->reconnect_timer) {
qemu_chr_socket_restart_timer(chr);
}
}
@@ -1080,9 +1080,9 @@ static int tcp_chr_wait_connected(Chardev *chr, Error **errp)
} else {
Error *err = NULL;
if (tcp_chr_connect_client_sync(chr, &err) < 0) {
- if (s->reconnect_time) {
+ if (s->reconnect_time_ms) {
error_free(err);
- g_usleep(s->reconnect_time * 1000ULL * 1000ULL);
+ g_usleep(s->reconnect_time_ms * 1000ULL);
} else {
error_propagate(errp, err);
return -1;
@@ -1267,13 +1267,13 @@ skip_listen:
static int qmp_chardev_open_socket_client(Chardev *chr,
- int64_t reconnect,
+ int64_t reconnect_ms,
Error **errp)
{
SocketChardev *s = SOCKET_CHARDEV(chr);
- if (reconnect > 0) {
- s->reconnect_time = reconnect;
+ if (reconnect_ms > 0) {
+ s->reconnect_time_ms = reconnect_ms;
tcp_chr_connect_client_async(chr);
return 0;
} else {
@@ -1371,7 +1371,7 @@ static void qmp_chardev_open_socket(Chardev *chr,
bool is_tn3270 = sock->has_tn3270 ? sock->tn3270 : false;
bool is_waitconnect = sock->has_wait ? sock->wait : false;
bool is_websock = sock->has_websocket ? sock->websocket : false;
- int64_t reconnect = sock->has_reconnect ? sock->reconnect : 0;
+ int64_t reconnect_ms = 0;
SocketAddress *addr;
s->is_listen = is_listen;
@@ -1443,7 +1443,13 @@ static void qmp_chardev_open_socket(Chardev *chr,
return;
}
} else {
- if (qmp_chardev_open_socket_client(chr, reconnect, errp) < 0) {
+ if (sock->has_reconnect) {
+ reconnect_ms = sock->reconnect * 1000ULL;
+ } else if (sock->has_reconnect_ms) {
+ reconnect_ms = sock->reconnect_ms;
+ }
+
+ if (qmp_chardev_open_socket_client(chr, reconnect_ms, errp) < 0) {
return;
}
}
@@ -1509,6 +1515,15 @@ static void qemu_chr_parse_socket(QemuOpts *opts, ChardevBackend *backend,
sock->wait = qemu_opt_get_bool(opts, "wait", true);
sock->has_reconnect = qemu_opt_find(opts, "reconnect");
sock->reconnect = qemu_opt_get_number(opts, "reconnect", 0);
+ sock->has_reconnect_ms = qemu_opt_find(opts, "reconnect-ms");
+ sock->reconnect_ms = qemu_opt_get_number(opts, "reconnect-ms", 0);
+
+ if (sock->has_reconnect_ms && sock->has_reconnect) {
+ error_setg(errp,
+ "'reconnect' and 'reconnect-ms' are mutually exclusive");
+ return;
+ }
+
sock->tls_creds = g_strdup(qemu_opt_get(opts, "tls-creds"));
sock->tls_authz = g_strdup(qemu_opt_get(opts, "tls-authz"));
diff --git a/chardev/char.c b/chardev/char.c
index ba847b6e9e..35623c78a3 100644
--- a/chardev/char.c
+++ b/chardev/char.c
@@ -888,6 +888,9 @@ QemuOptsList qemu_chardev_opts = {
},{
.name = "reconnect",
.type = QEMU_OPT_NUMBER,
+ },{
+ .name = "reconnect-ms",
+ .type = QEMU_OPT_NUMBER,
},{
.name = "telnet",
.type = QEMU_OPT_BOOL,
diff --git a/include/chardev/char-socket.h b/include/chardev/char-socket.h
index 0708ca6fa9..d6d13ad37f 100644
--- a/include/chardev/char-socket.h
+++ b/include/chardev/char-socket.h
@@ -74,7 +74,7 @@ struct SocketChardev {
bool is_websock;
GSource *reconnect_timer;
- int64_t reconnect_time;
+ int64_t reconnect_time_ms;
bool connect_err_reported;
QIOTask *connect_task;
diff --git a/qapi/char.json b/qapi/char.json
index ef58445cee..7f117438c6 100644
--- a/qapi/char.json
+++ b/qapi/char.json
@@ -273,7 +273,19 @@
#
# @reconnect: For a client socket, if a socket is disconnected, then
# attempt a reconnect after the given number of seconds. Setting
-# this to zero disables this function. (default: 0) (Since: 2.2)
+# this to zero disables this function. The use of this member is
+# deprecated, use @reconnect-ms instead. (default: 0) (Since: 2.2)
+#
+# @reconnect-ms: For a client socket, if a socket is disconnected,
+# then attempt a reconnect after the given number of milliseconds.
+# Setting this to zero disables this function. This member is
+# mutually exclusive with @reconnect.
+# (default: 0) (Since: 9.2)
+#
+# Features:
+#
+# @deprecated: Member @reconnect is deprecated. Use @reconnect-ms
+# instead.
#
# Since: 1.4
##
@@ -287,7 +299,8 @@
'*telnet': 'bool',
'*tn3270': 'bool',
'*websocket': 'bool',
- '*reconnect': 'int' },
+ '*reconnect': { 'type': 'int', 'features': [ 'deprecated' ] },
+ '*reconnect-ms': 'int' },
'base': 'ChardevCommon' }
##
--
2.34.1
6
6
[PATCH] Revert "vircommand: Parse /dev/fd on *BSD-like systems when looking for opened FDs"
by Michal Privoznik 16 Sep '24
by Michal Privoznik 16 Sep '24
16 Sep '24
Unfortunately, devfs on FreeBSD (accessible via /dev/fd) exposes
only those FDs which can be represented as a file. To cite
manpage [1]:
The files /dev/fd/0 through /dev/fd/# refer to file descriptors
which can be accessed through the file system.
This means FDs representing pipes and/or unnamed sockets are not
visible by default. To expose all FDs a slightly different
filesystem must be mounted [2]:
mount -t fdescfs none /dev/fd
Apparently, on my test machine fdescfs is mounted by default and
thus I haven't seen any problem. Only after aforementioned patch
was merged our CI started reporting problems. While we could try
to figure out whether correct FS is mounted, it's a needless
micro optimization. Just revert the code to the state it was
before I touched it.
1: https://man.freebsd.org/cgi/man.cgi?query=fd&sektion=4&manpath=freebsd-rele…
2: https://man.freebsd.org/cgi/man.cgi?query=fdescfs&sektion=5&n=1
This reverts commit 308ec0fb2c77f4867179f00c628f05d1d784f370.
Signed-off-by: Michal Privoznik <mprivozn(a)redhat.com>
---
src/util/vircommand.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/src/util/vircommand.c b/src/util/vircommand.c
index 969d4c28ef..ea52acfbb8 100644
--- a/src/util/vircommand.c
+++ b/src/util/vircommand.c
@@ -472,7 +472,7 @@ virExecCommon(virCommand *cmd, gid_t *groups, int ngroups)
return 0;
}
-# if defined(__linux__) || defined(__APPLE__) || defined(__FreeBSD__)
+# ifdef __linux__
static int
virCommandMassCloseGetFDsDir(virBitmap *fds,
const char *dirName)
@@ -502,7 +502,7 @@ virCommandMassCloseGetFDsDir(virBitmap *fds,
return 0;
}
-# endif /* defined(__linux__) || defined(__APPLE__) || defined(__FreeBSD__) */
+# endif /* __linux__ */
static int
virCommandMassCloseGetFDs(virBitmap *fds)
@@ -513,8 +513,6 @@ virCommandMassCloseGetFDs(virBitmap *fds)
* onto child process (well, the one we will exec soon since this
* is called from the child). */
return virCommandMassCloseGetFDsDir(fds, "/proc/self/fd");
-# elif defined(__APPLE__) || defined(__FreeBSD__)
- return virCommandMassCloseGetFDsDir(fds, "/dev/fd");
# else
virBitmapSetAll(fds);
return 0;
--
2.44.2
2
1
[PATCH] resctrl: Do not rewrite default MB values for new allocations
by Martin Kletzander 16 Sep '24
by Martin Kletzander 16 Sep '24
16 Sep '24
The code did it "just in case" the allocation was not reset for new
subdirectories. That might've happened in the past with CAT settings,
but checking it now it is properly reset to its maximum values for each
new CLOSID (Class of Service ID).
The advantage of this is that we do not rewrite the value with itself
which causes an issue with the current linux kernel and mba_MBps option
where the default is UINT_MAX (or (uint32_t) -1), but gets rounded up to
bandwidth granularity (10), overflows and small number (4) is set
instead.
Signed-off-by: Martin Kletzander <mkletzan(a)redhat.com>
---
src/util/virresctrl.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/src/util/virresctrl.c b/src/util/virresctrl.c
index c126ec7e41a6..8f33a85a5639 100644
--- a/src/util/virresctrl.c
+++ b/src/util/virresctrl.c
@@ -2158,9 +2158,6 @@ virResctrlAllocAssign(virResctrlInfo *resctrl,
if (virResctrlAllocCopyMasks(alloc, alloc_default) < 0)
return -1;
- if (virResctrlAllocCopyMemBW(alloc, alloc_default) < 0)
- return -1;
-
for (level = 0; level < alloc->nlevels; level++) {
virResctrlAllocPerLevel *a_level = alloc->levels[level];
virResctrlAllocPerLevel *f_level = NULL;
--
2.46.0
2
1
[PATCH 00/17] tcg plugins pre-PR (deprecations, mem apis, contrib plugins)
by Alex Bennée 16 Sep '24
by Alex Bennée 16 Sep '24
16 Sep '24
I think all these are ready to go having been mostly reviewed in previous
series. The following still need review:
util/timer: avoid deadlock when shutting down
tests/tcg: add a system test to check memory instrumentation
tests/tcg: ensure s390x-softmmu output redirected
tests/tcg/multiarch: add test for plugin memory access (0 acks, 1 sobs, 1 tbs)
Alex.
Akihiko Odaki (1):
contrib/plugins: Add a plugin to generate basic block vectors
Alex Bennée (8):
deprecation: don't enable TCG plugins by default on 32 bit hosts
deprecation: don't enable TCG plugins by default with TCI
contrib/plugins: control flow plugin
tests/tcg: clean up output of memory system test
tests/tcg: only read/write 64 bit words on 64 bit systems
tests/tcg: ensure s390x-softmmu output redirected
tests/tcg: add a system test to check memory instrumentation
util/timer: avoid deadlock when shutting down
Pierrick Bouvier (6):
plugins: save value during memory accesses
plugins: extend API to get latest memory value accessed
tests/tcg: add mechanism to run specific tests with plugins
tests/tcg: allow to check output of plugins
tests/tcg/plugins/mem: add option to print memory accesses
tests/tcg/multiarch: add test for plugin memory access
Rowan Hart (2):
plugins: add plugin API to read guest memory
plugins: add option to dump write argument to syscall plugin
docs/about/deprecated.rst | 19 +
docs/about/emulation.rst | 44 +-
configure | 32 +-
accel/tcg/atomic_template.h | 66 ++-
include/hw/core/cpu.h | 4 +
include/qemu/plugin.h | 4 +
include/qemu/qemu-plugin.h | 64 ++-
contrib/plugins/bbv.c | 158 +++++++
contrib/plugins/cflow.c | 384 ++++++++++++++++++
plugins/api.c | 53 +++
plugins/core.c | 6 +
tcg/tcg-op-ldst.c | 66 ++-
tests/tcg/multiarch/system/memory.c | 123 ++++--
tests/tcg/multiarch/test-plugin-mem-access.c | 177 ++++++++
tests/tcg/plugins/mem.c | 248 ++++++++++-
tests/tcg/plugins/syscall.c | 117 ++++++
util/qemu-timer.c | 14 +-
accel/tcg/atomic_common.c.inc | 13 +-
accel/tcg/ldst_common.c.inc | 38 +-
contrib/plugins/Makefile | 2 +
plugins/qemu-plugins.symbols | 2 +
tests/tcg/Makefile.target | 12 +-
tests/tcg/alpha/Makefile.softmmu-target | 2 +-
tests/tcg/alpha/Makefile.target | 3 +
tests/tcg/multiarch/Makefile.target | 11 +
tests/tcg/multiarch/check-plugin-output.sh | 36 ++
.../multiarch/system/Makefile.softmmu-target | 6 +
.../system/validate-memory-counts.py | 129 ++++++
tests/tcg/ppc64/Makefile.target | 5 +
tests/tcg/s390x/Makefile.softmmu-target | 7 +-
30 files changed, 1762 insertions(+), 83 deletions(-)
create mode 100644 contrib/plugins/bbv.c
create mode 100644 contrib/plugins/cflow.c
create mode 100644 tests/tcg/multiarch/test-plugin-mem-access.c
create mode 100755 tests/tcg/multiarch/check-plugin-output.sh
create mode 100755 tests/tcg/multiarch/system/validate-memory-counts.py
--
2.39.2
3
23
The code is teeny tiny less terrible with these.
Martin Kletzander (10):
resctrl: Account for memory bandwidth of 0 being valid
docs: Document memory bandwidth allocation limits more clearly
resctrl: Relax the limit of maximum memory bandwidth allocation
resctrl: Move virResctrlAllocCopyMemBW up in the file
resctrl: Add virResctrlInfoMemBWFree
resctrl: Add virResctrlInfoPerTypeFree
capabilities: Also report L2 caches
resctrl: Don't assume MBA availability in virResctrlAllocNewFromInfo
resctrl: Do not use max_id for
tests: Add caps2xml and resctrl data from the wild
docs/formatdomain.rst | 7 +-
src/conf/capabilities.c | 7 +-
src/util/virresctrl.c | 181 +++++++++--------
src/util/virresctrl.h | 3 +
.../linux-resctrl-amd/resctrl/cpus | 1 +
.../linux-resctrl-amd/resctrl/cpus_list | 1 +
.../resctrl/info/L3/bit_usage | 1 +
.../resctrl/info/L3/cbm_mask | 1 +
.../resctrl/info/L3/min_cbm_bits | 1 +
.../resctrl/info/L3/num_closids | 1 +
.../resctrl/info/L3/shareable_bits | 1 +
.../resctrl/info/L3/sparse_masks | 1 +
.../info/L3_MON/max_threshold_occupancy | 1 +
.../info/L3_MON/mbm_local_bytes_config | 1 +
.../info/L3_MON/mbm_total_bytes_config | 1 +
.../resctrl/info/L3_MON/mon_features | 5 +
.../resctrl/info/L3_MON/num_rmids | 1 +
.../resctrl/info/MB/bandwidth_gran | 1 +
.../resctrl/info/MB/delay_linear | 1 +
.../resctrl/info/MB/min_bandwidth | 1 +
.../resctrl/info/MB/num_closids | 1 +
.../resctrl/info/SMBA/bandwidth_gran | 1 +
.../resctrl/info/SMBA/delay_linear | 1 +
.../resctrl/info/SMBA/min_bandwidth | 1 +
.../resctrl/info/SMBA/num_closids | 1 +
.../resctrl/info/last_cmd_status | 1 +
.../linux-resctrl-amd/resctrl/mode | 1 +
.../resctrl/mon_data/mon_L3_00/llc_occupancy | 1 +
.../mon_data/mon_L3_00/mbm_local_bytes | 1 +
.../mon_data/mon_L3_00/mbm_total_bytes | 1 +
.../resctrl/mon_data/mon_L3_02/llc_occupancy | 1 +
.../mon_data/mon_L3_02/mbm_local_bytes | 1 +
.../mon_data/mon_L3_02/mbm_total_bytes | 1 +
.../resctrl/mon_data/mon_L3_04/llc_occupancy | 1 +
.../mon_data/mon_L3_04/mbm_local_bytes | 1 +
.../mon_data/mon_L3_04/mbm_total_bytes | 1 +
.../resctrl/mon_data/mon_L3_06/llc_occupancy | 1 +
.../mon_data/mon_L3_06/mbm_local_bytes | 1 +
.../mon_data/mon_L3_06/mbm_total_bytes | 1 +
.../resctrl/mon_data/mon_L3_08/llc_occupancy | 1 +
.../mon_data/mon_L3_08/mbm_local_bytes | 1 +
.../mon_data/mon_L3_08/mbm_total_bytes | 1 +
.../resctrl/mon_data/mon_L3_10/llc_occupancy | 1 +
.../mon_data/mon_L3_10/mbm_local_bytes | 1 +
.../mon_data/mon_L3_10/mbm_total_bytes | 1 +
.../resctrl/mon_data/mon_L3_12/llc_occupancy | 1 +
.../mon_data/mon_L3_12/mbm_local_bytes | 1 +
.../mon_data/mon_L3_12/mbm_total_bytes | 1 +
.../resctrl/mon_data/mon_L3_14/llc_occupancy | 1 +
.../mon_data/mon_L3_14/mbm_local_bytes | 1 +
.../mon_data/mon_L3_14/mbm_total_bytes | 1 +
.../linux-resctrl-amd/resctrl/schemata | 3 +
.../linux-resctrl-amd/resctrl/size | 3 +
.../linux-resctrl-amd/resctrl/tasks | 1 +
.../cpu/cpu0/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu0/cache/index0/id | 1 +
.../system/cpu/cpu0/cache/index0/level | 1 +
.../cpu/cpu0/cache/index0/number_of_sets | 1 +
.../cpu0/cache/index0/physical_line_partition | 1 +
.../cpu/cpu0/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu0/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu0/cache/index0/size | 1 +
.../system/cpu/cpu0/cache/index0/type | 1 +
.../system/cpu/cpu0/cache/index0/uevent | 0
.../cpu0/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu0/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu0/cache/index1/id | 1 +
.../system/cpu/cpu0/cache/index1/level | 1 +
.../cpu/cpu0/cache/index1/number_of_sets | 1 +
.../cpu0/cache/index1/physical_line_partition | 1 +
.../cpu/cpu0/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu0/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu0/cache/index1/size | 1 +
.../system/cpu/cpu0/cache/index1/type | 1 +
.../system/cpu/cpu0/cache/index1/uevent | 0
.../cpu0/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu0/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu0/cache/index2/id | 1 +
.../system/cpu/cpu0/cache/index2/level | 1 +
.../cpu/cpu0/cache/index2/number_of_sets | 1 +
.../cpu0/cache/index2/physical_line_partition | 1 +
.../cpu/cpu0/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu0/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu0/cache/index2/size | 1 +
.../system/cpu/cpu0/cache/index2/type | 1 +
.../system/cpu/cpu0/cache/index2/uevent | 0
.../cpu0/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu0/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu0/cache/index3/id | 1 +
.../system/cpu/cpu0/cache/index3/level | 1 +
.../cpu/cpu0/cache/index3/number_of_sets | 1 +
.../cpu0/cache/index3/physical_line_partition | 1 +
.../cpu/cpu0/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu0/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu0/cache/index3/size | 1 +
.../system/cpu/cpu0/cache/index3/type | 1 +
.../system/cpu/cpu0/cache/index3/uevent | 0
.../cpu0/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu0/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu0/node0 | 1 +
.../system/cpu/cpu0/topology/cluster_cpus | 1 +
.../cpu/cpu0/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu0/topology/cluster_id | 1 +
.../system/cpu/cpu0/topology/core_cpus | 1 +
.../system/cpu/cpu0/topology/core_cpus_list | 1 +
.../system/cpu/cpu0/topology/core_id | 1 +
.../system/cpu/cpu0/topology/core_siblings | 1 +
.../cpu/cpu0/topology/core_siblings_list | 1 +
.../system/cpu/cpu0/topology/die_cpus | 1 +
.../system/cpu/cpu0/topology/die_cpus_list | 1 +
.../system/cpu/cpu0/topology/die_id | 1 +
.../system/cpu/cpu0/topology/package_cpus | 1 +
.../cpu/cpu0/topology/package_cpus_list | 1 +
.../cpu/cpu0/topology/physical_package_id | 1 +
.../system/cpu/cpu0/topology/ppin | 1 +
.../system/cpu/cpu0/topology/thread_siblings | 1 +
.../cpu/cpu0/topology/thread_siblings_list | 1 +
.../cpu/cpu1/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu1/cache/index0/id | 1 +
.../system/cpu/cpu1/cache/index0/level | 1 +
.../cpu/cpu1/cache/index0/number_of_sets | 1 +
.../cpu1/cache/index0/physical_line_partition | 1 +
.../cpu/cpu1/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu1/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu1/cache/index0/size | 1 +
.../system/cpu/cpu1/cache/index0/type | 1 +
.../system/cpu/cpu1/cache/index0/uevent | 0
.../cpu1/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu1/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu1/cache/index1/id | 1 +
.../system/cpu/cpu1/cache/index1/level | 1 +
.../cpu/cpu1/cache/index1/number_of_sets | 1 +
.../cpu1/cache/index1/physical_line_partition | 1 +
.../cpu/cpu1/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu1/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu1/cache/index1/size | 1 +
.../system/cpu/cpu1/cache/index1/type | 1 +
.../system/cpu/cpu1/cache/index1/uevent | 0
.../cpu1/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu1/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu1/cache/index2/id | 1 +
.../system/cpu/cpu1/cache/index2/level | 1 +
.../cpu/cpu1/cache/index2/number_of_sets | 1 +
.../cpu1/cache/index2/physical_line_partition | 1 +
.../cpu/cpu1/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu1/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu1/cache/index2/size | 1 +
.../system/cpu/cpu1/cache/index2/type | 1 +
.../system/cpu/cpu1/cache/index2/uevent | 0
.../cpu1/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu1/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu1/cache/index3/id | 1 +
.../system/cpu/cpu1/cache/index3/level | 1 +
.../cpu/cpu1/cache/index3/number_of_sets | 1 +
.../cpu1/cache/index3/physical_line_partition | 1 +
.../cpu/cpu1/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu1/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu1/cache/index3/size | 1 +
.../system/cpu/cpu1/cache/index3/type | 1 +
.../system/cpu/cpu1/cache/index3/uevent | 0
.../cpu1/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu1/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu1/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu1/online | 1 +
.../system/cpu/cpu1/topology/cluster_cpus | 1 +
.../cpu/cpu1/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu1/topology/cluster_id | 1 +
.../system/cpu/cpu1/topology/core_cpus | 1 +
.../system/cpu/cpu1/topology/core_cpus_list | 1 +
.../system/cpu/cpu1/topology/core_id | 1 +
.../system/cpu/cpu1/topology/core_siblings | 1 +
.../cpu/cpu1/topology/core_siblings_list | 1 +
.../system/cpu/cpu1/topology/die_cpus | 1 +
.../system/cpu/cpu1/topology/die_cpus_list | 1 +
.../system/cpu/cpu1/topology/die_id | 1 +
.../system/cpu/cpu1/topology/package_cpus | 1 +
.../cpu/cpu1/topology/package_cpus_list | 1 +
.../cpu/cpu1/topology/physical_package_id | 1 +
.../system/cpu/cpu1/topology/ppin | 1 +
.../system/cpu/cpu1/topology/thread_siblings | 1 +
.../cpu/cpu1/topology/thread_siblings_list | 1 +
.../cpu10/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu10/cache/index0/id | 1 +
.../system/cpu/cpu10/cache/index0/level | 1 +
.../cpu/cpu10/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu10/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu10/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu10/cache/index0/size | 1 +
.../system/cpu/cpu10/cache/index0/type | 1 +
.../system/cpu/cpu10/cache/index0/uevent | 0
.../cpu10/cache/index0/ways_of_associativity | 1 +
.../cpu10/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu10/cache/index1/id | 1 +
.../system/cpu/cpu10/cache/index1/level | 1 +
.../cpu/cpu10/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu10/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu10/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu10/cache/index1/size | 1 +
.../system/cpu/cpu10/cache/index1/type | 1 +
.../system/cpu/cpu10/cache/index1/uevent | 0
.../cpu10/cache/index1/ways_of_associativity | 1 +
.../cpu10/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu10/cache/index2/id | 1 +
.../system/cpu/cpu10/cache/index2/level | 1 +
.../cpu/cpu10/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu10/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu10/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu10/cache/index2/size | 1 +
.../system/cpu/cpu10/cache/index2/type | 1 +
.../system/cpu/cpu10/cache/index2/uevent | 0
.../cpu10/cache/index2/ways_of_associativity | 1 +
.../cpu10/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu10/cache/index3/id | 1 +
.../system/cpu/cpu10/cache/index3/level | 1 +
.../cpu/cpu10/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu10/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu10/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu10/cache/index3/size | 1 +
.../system/cpu/cpu10/cache/index3/type | 1 +
.../system/cpu/cpu10/cache/index3/uevent | 0
.../cpu10/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu10/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu10/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu10/online | 1 +
.../system/cpu/cpu10/topology/cluster_cpus | 1 +
.../cpu/cpu10/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu10/topology/cluster_id | 1 +
.../system/cpu/cpu10/topology/core_cpus | 1 +
.../system/cpu/cpu10/topology/core_cpus_list | 1 +
.../system/cpu/cpu10/topology/core_id | 1 +
.../system/cpu/cpu10/topology/core_siblings | 1 +
.../cpu/cpu10/topology/core_siblings_list | 1 +
.../system/cpu/cpu10/topology/die_cpus | 1 +
.../system/cpu/cpu10/topology/die_cpus_list | 1 +
.../system/cpu/cpu10/topology/die_id | 1 +
.../system/cpu/cpu10/topology/package_cpus | 1 +
.../cpu/cpu10/topology/package_cpus_list | 1 +
.../cpu/cpu10/topology/physical_package_id | 1 +
.../system/cpu/cpu10/topology/ppin | 1 +
.../system/cpu/cpu10/topology/thread_siblings | 1 +
.../cpu/cpu10/topology/thread_siblings_list | 1 +
.../cpu11/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu11/cache/index0/id | 1 +
.../system/cpu/cpu11/cache/index0/level | 1 +
.../cpu/cpu11/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu11/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu11/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu11/cache/index0/size | 1 +
.../system/cpu/cpu11/cache/index0/type | 1 +
.../system/cpu/cpu11/cache/index0/uevent | 0
.../cpu11/cache/index0/ways_of_associativity | 1 +
.../cpu11/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu11/cache/index1/id | 1 +
.../system/cpu/cpu11/cache/index1/level | 1 +
.../cpu/cpu11/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu11/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu11/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu11/cache/index1/size | 1 +
.../system/cpu/cpu11/cache/index1/type | 1 +
.../system/cpu/cpu11/cache/index1/uevent | 0
.../cpu11/cache/index1/ways_of_associativity | 1 +
.../cpu11/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu11/cache/index2/id | 1 +
.../system/cpu/cpu11/cache/index2/level | 1 +
.../cpu/cpu11/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu11/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu11/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu11/cache/index2/size | 1 +
.../system/cpu/cpu11/cache/index2/type | 1 +
.../system/cpu/cpu11/cache/index2/uevent | 0
.../cpu11/cache/index2/ways_of_associativity | 1 +
.../cpu11/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu11/cache/index3/id | 1 +
.../system/cpu/cpu11/cache/index3/level | 1 +
.../cpu/cpu11/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu11/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu11/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu11/cache/index3/size | 1 +
.../system/cpu/cpu11/cache/index3/type | 1 +
.../system/cpu/cpu11/cache/index3/uevent | 0
.../cpu11/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu11/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu11/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu11/online | 1 +
.../system/cpu/cpu11/topology/cluster_cpus | 1 +
.../cpu/cpu11/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu11/topology/cluster_id | 1 +
.../system/cpu/cpu11/topology/core_cpus | 1 +
.../system/cpu/cpu11/topology/core_cpus_list | 1 +
.../system/cpu/cpu11/topology/core_id | 1 +
.../system/cpu/cpu11/topology/core_siblings | 1 +
.../cpu/cpu11/topology/core_siblings_list | 1 +
.../system/cpu/cpu11/topology/die_cpus | 1 +
.../system/cpu/cpu11/topology/die_cpus_list | 1 +
.../system/cpu/cpu11/topology/die_id | 1 +
.../system/cpu/cpu11/topology/package_cpus | 1 +
.../cpu/cpu11/topology/package_cpus_list | 1 +
.../cpu/cpu11/topology/physical_package_id | 1 +
.../system/cpu/cpu11/topology/ppin | 1 +
.../system/cpu/cpu11/topology/thread_siblings | 1 +
.../cpu/cpu11/topology/thread_siblings_list | 1 +
.../cpu12/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu12/cache/index0/id | 1 +
.../system/cpu/cpu12/cache/index0/level | 1 +
.../cpu/cpu12/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu12/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu12/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu12/cache/index0/size | 1 +
.../system/cpu/cpu12/cache/index0/type | 1 +
.../system/cpu/cpu12/cache/index0/uevent | 0
.../cpu12/cache/index0/ways_of_associativity | 1 +
.../cpu12/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu12/cache/index1/id | 1 +
.../system/cpu/cpu12/cache/index1/level | 1 +
.../cpu/cpu12/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu12/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu12/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu12/cache/index1/size | 1 +
.../system/cpu/cpu12/cache/index1/type | 1 +
.../system/cpu/cpu12/cache/index1/uevent | 0
.../cpu12/cache/index1/ways_of_associativity | 1 +
.../cpu12/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu12/cache/index2/id | 1 +
.../system/cpu/cpu12/cache/index2/level | 1 +
.../cpu/cpu12/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu12/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu12/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu12/cache/index2/size | 1 +
.../system/cpu/cpu12/cache/index2/type | 1 +
.../system/cpu/cpu12/cache/index2/uevent | 0
.../cpu12/cache/index2/ways_of_associativity | 1 +
.../cpu12/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu12/cache/index3/id | 1 +
.../system/cpu/cpu12/cache/index3/level | 1 +
.../cpu/cpu12/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu12/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu12/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu12/cache/index3/size | 1 +
.../system/cpu/cpu12/cache/index3/type | 1 +
.../system/cpu/cpu12/cache/index3/uevent | 0
.../cpu12/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu12/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu12/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu12/online | 1 +
.../system/cpu/cpu12/topology/cluster_cpus | 1 +
.../cpu/cpu12/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu12/topology/cluster_id | 1 +
.../system/cpu/cpu12/topology/core_cpus | 1 +
.../system/cpu/cpu12/topology/core_cpus_list | 1 +
.../system/cpu/cpu12/topology/core_id | 1 +
.../system/cpu/cpu12/topology/core_siblings | 1 +
.../cpu/cpu12/topology/core_siblings_list | 1 +
.../system/cpu/cpu12/topology/die_cpus | 1 +
.../system/cpu/cpu12/topology/die_cpus_list | 1 +
.../system/cpu/cpu12/topology/die_id | 1 +
.../system/cpu/cpu12/topology/package_cpus | 1 +
.../cpu/cpu12/topology/package_cpus_list | 1 +
.../cpu/cpu12/topology/physical_package_id | 1 +
.../system/cpu/cpu12/topology/ppin | 1 +
.../system/cpu/cpu12/topology/thread_siblings | 1 +
.../cpu/cpu12/topology/thread_siblings_list | 1 +
.../cpu13/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu13/cache/index0/id | 1 +
.../system/cpu/cpu13/cache/index0/level | 1 +
.../cpu/cpu13/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu13/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu13/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu13/cache/index0/size | 1 +
.../system/cpu/cpu13/cache/index0/type | 1 +
.../system/cpu/cpu13/cache/index0/uevent | 0
.../cpu13/cache/index0/ways_of_associativity | 1 +
.../cpu13/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu13/cache/index1/id | 1 +
.../system/cpu/cpu13/cache/index1/level | 1 +
.../cpu/cpu13/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu13/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu13/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu13/cache/index1/size | 1 +
.../system/cpu/cpu13/cache/index1/type | 1 +
.../system/cpu/cpu13/cache/index1/uevent | 0
.../cpu13/cache/index1/ways_of_associativity | 1 +
.../cpu13/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu13/cache/index2/id | 1 +
.../system/cpu/cpu13/cache/index2/level | 1 +
.../cpu/cpu13/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu13/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu13/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu13/cache/index2/size | 1 +
.../system/cpu/cpu13/cache/index2/type | 1 +
.../system/cpu/cpu13/cache/index2/uevent | 0
.../cpu13/cache/index2/ways_of_associativity | 1 +
.../cpu13/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu13/cache/index3/id | 1 +
.../system/cpu/cpu13/cache/index3/level | 1 +
.../cpu/cpu13/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu13/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu13/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu13/cache/index3/size | 1 +
.../system/cpu/cpu13/cache/index3/type | 1 +
.../system/cpu/cpu13/cache/index3/uevent | 0
.../cpu13/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu13/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu13/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu13/online | 1 +
.../system/cpu/cpu13/topology/cluster_cpus | 1 +
.../cpu/cpu13/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu13/topology/cluster_id | 1 +
.../system/cpu/cpu13/topology/core_cpus | 1 +
.../system/cpu/cpu13/topology/core_cpus_list | 1 +
.../system/cpu/cpu13/topology/core_id | 1 +
.../system/cpu/cpu13/topology/core_siblings | 1 +
.../cpu/cpu13/topology/core_siblings_list | 1 +
.../system/cpu/cpu13/topology/die_cpus | 1 +
.../system/cpu/cpu13/topology/die_cpus_list | 1 +
.../system/cpu/cpu13/topology/die_id | 1 +
.../system/cpu/cpu13/topology/package_cpus | 1 +
.../cpu/cpu13/topology/package_cpus_list | 1 +
.../cpu/cpu13/topology/physical_package_id | 1 +
.../system/cpu/cpu13/topology/ppin | 1 +
.../system/cpu/cpu13/topology/thread_siblings | 1 +
.../cpu/cpu13/topology/thread_siblings_list | 1 +
.../cpu14/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu14/cache/index0/id | 1 +
.../system/cpu/cpu14/cache/index0/level | 1 +
.../cpu/cpu14/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu14/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu14/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu14/cache/index0/size | 1 +
.../system/cpu/cpu14/cache/index0/type | 1 +
.../system/cpu/cpu14/cache/index0/uevent | 0
.../cpu14/cache/index0/ways_of_associativity | 1 +
.../cpu14/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu14/cache/index1/id | 1 +
.../system/cpu/cpu14/cache/index1/level | 1 +
.../cpu/cpu14/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu14/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu14/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu14/cache/index1/size | 1 +
.../system/cpu/cpu14/cache/index1/type | 1 +
.../system/cpu/cpu14/cache/index1/uevent | 0
.../cpu14/cache/index1/ways_of_associativity | 1 +
.../cpu14/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu14/cache/index2/id | 1 +
.../system/cpu/cpu14/cache/index2/level | 1 +
.../cpu/cpu14/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu14/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu14/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu14/cache/index2/size | 1 +
.../system/cpu/cpu14/cache/index2/type | 1 +
.../system/cpu/cpu14/cache/index2/uevent | 0
.../cpu14/cache/index2/ways_of_associativity | 1 +
.../cpu14/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu14/cache/index3/id | 1 +
.../system/cpu/cpu14/cache/index3/level | 1 +
.../cpu/cpu14/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu14/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu14/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu14/cache/index3/size | 1 +
.../system/cpu/cpu14/cache/index3/type | 1 +
.../system/cpu/cpu14/cache/index3/uevent | 0
.../cpu14/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu14/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu14/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu14/online | 1 +
.../system/cpu/cpu14/topology/cluster_cpus | 1 +
.../cpu/cpu14/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu14/topology/cluster_id | 1 +
.../system/cpu/cpu14/topology/core_cpus | 1 +
.../system/cpu/cpu14/topology/core_cpus_list | 1 +
.../system/cpu/cpu14/topology/core_id | 1 +
.../system/cpu/cpu14/topology/core_siblings | 1 +
.../cpu/cpu14/topology/core_siblings_list | 1 +
.../system/cpu/cpu14/topology/die_cpus | 1 +
.../system/cpu/cpu14/topology/die_cpus_list | 1 +
.../system/cpu/cpu14/topology/die_id | 1 +
.../system/cpu/cpu14/topology/package_cpus | 1 +
.../cpu/cpu14/topology/package_cpus_list | 1 +
.../cpu/cpu14/topology/physical_package_id | 1 +
.../system/cpu/cpu14/topology/ppin | 1 +
.../system/cpu/cpu14/topology/thread_siblings | 1 +
.../cpu/cpu14/topology/thread_siblings_list | 1 +
.../cpu15/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu15/cache/index0/id | 1 +
.../system/cpu/cpu15/cache/index0/level | 1 +
.../cpu/cpu15/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu15/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu15/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu15/cache/index0/size | 1 +
.../system/cpu/cpu15/cache/index0/type | 1 +
.../system/cpu/cpu15/cache/index0/uevent | 0
.../cpu15/cache/index0/ways_of_associativity | 1 +
.../cpu15/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu15/cache/index1/id | 1 +
.../system/cpu/cpu15/cache/index1/level | 1 +
.../cpu/cpu15/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu15/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu15/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu15/cache/index1/size | 1 +
.../system/cpu/cpu15/cache/index1/type | 1 +
.../system/cpu/cpu15/cache/index1/uevent | 0
.../cpu15/cache/index1/ways_of_associativity | 1 +
.../cpu15/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu15/cache/index2/id | 1 +
.../system/cpu/cpu15/cache/index2/level | 1 +
.../cpu/cpu15/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu15/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu15/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu15/cache/index2/size | 1 +
.../system/cpu/cpu15/cache/index2/type | 1 +
.../system/cpu/cpu15/cache/index2/uevent | 0
.../cpu15/cache/index2/ways_of_associativity | 1 +
.../cpu15/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu15/cache/index3/id | 1 +
.../system/cpu/cpu15/cache/index3/level | 1 +
.../cpu/cpu15/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu15/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu15/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu15/cache/index3/size | 1 +
.../system/cpu/cpu15/cache/index3/type | 1 +
.../system/cpu/cpu15/cache/index3/uevent | 0
.../cpu15/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu15/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu15/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu15/online | 1 +
.../system/cpu/cpu15/topology/cluster_cpus | 1 +
.../cpu/cpu15/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu15/topology/cluster_id | 1 +
.../system/cpu/cpu15/topology/core_cpus | 1 +
.../system/cpu/cpu15/topology/core_cpus_list | 1 +
.../system/cpu/cpu15/topology/core_id | 1 +
.../system/cpu/cpu15/topology/core_siblings | 1 +
.../cpu/cpu15/topology/core_siblings_list | 1 +
.../system/cpu/cpu15/topology/die_cpus | 1 +
.../system/cpu/cpu15/topology/die_cpus_list | 1 +
.../system/cpu/cpu15/topology/die_id | 1 +
.../system/cpu/cpu15/topology/package_cpus | 1 +
.../cpu/cpu15/topology/package_cpus_list | 1 +
.../cpu/cpu15/topology/physical_package_id | 1 +
.../system/cpu/cpu15/topology/ppin | 1 +
.../system/cpu/cpu15/topology/thread_siblings | 1 +
.../cpu/cpu15/topology/thread_siblings_list | 1 +
.../cpu16/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu16/cache/index0/id | 1 +
.../system/cpu/cpu16/cache/index0/level | 1 +
.../cpu/cpu16/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu16/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu16/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu16/cache/index0/size | 1 +
.../system/cpu/cpu16/cache/index0/type | 1 +
.../system/cpu/cpu16/cache/index0/uevent | 0
.../cpu16/cache/index0/ways_of_associativity | 1 +
.../cpu16/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu16/cache/index1/id | 1 +
.../system/cpu/cpu16/cache/index1/level | 1 +
.../cpu/cpu16/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu16/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu16/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu16/cache/index1/size | 1 +
.../system/cpu/cpu16/cache/index1/type | 1 +
.../system/cpu/cpu16/cache/index1/uevent | 0
.../cpu16/cache/index1/ways_of_associativity | 1 +
.../cpu16/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu16/cache/index2/id | 1 +
.../system/cpu/cpu16/cache/index2/level | 1 +
.../cpu/cpu16/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu16/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu16/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu16/cache/index2/size | 1 +
.../system/cpu/cpu16/cache/index2/type | 1 +
.../system/cpu/cpu16/cache/index2/uevent | 0
.../cpu16/cache/index2/ways_of_associativity | 1 +
.../cpu16/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu16/cache/index3/id | 1 +
.../system/cpu/cpu16/cache/index3/level | 1 +
.../cpu/cpu16/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu16/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu16/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu16/cache/index3/size | 1 +
.../system/cpu/cpu16/cache/index3/type | 1 +
.../system/cpu/cpu16/cache/index3/uevent | 0
.../cpu16/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu16/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu16/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu16/online | 1 +
.../system/cpu/cpu16/topology/cluster_cpus | 1 +
.../cpu/cpu16/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu16/topology/cluster_id | 1 +
.../system/cpu/cpu16/topology/core_cpus | 1 +
.../system/cpu/cpu16/topology/core_cpus_list | 1 +
.../system/cpu/cpu16/topology/core_id | 1 +
.../system/cpu/cpu16/topology/core_siblings | 1 +
.../cpu/cpu16/topology/core_siblings_list | 1 +
.../system/cpu/cpu16/topology/die_cpus | 1 +
.../system/cpu/cpu16/topology/die_cpus_list | 1 +
.../system/cpu/cpu16/topology/die_id | 1 +
.../system/cpu/cpu16/topology/package_cpus | 1 +
.../cpu/cpu16/topology/package_cpus_list | 1 +
.../cpu/cpu16/topology/physical_package_id | 1 +
.../system/cpu/cpu16/topology/ppin | 1 +
.../system/cpu/cpu16/topology/thread_siblings | 1 +
.../cpu/cpu16/topology/thread_siblings_list | 1 +
.../cpu17/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu17/cache/index0/id | 1 +
.../system/cpu/cpu17/cache/index0/level | 1 +
.../cpu/cpu17/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu17/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu17/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu17/cache/index0/size | 1 +
.../system/cpu/cpu17/cache/index0/type | 1 +
.../system/cpu/cpu17/cache/index0/uevent | 0
.../cpu17/cache/index0/ways_of_associativity | 1 +
.../cpu17/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu17/cache/index1/id | 1 +
.../system/cpu/cpu17/cache/index1/level | 1 +
.../cpu/cpu17/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu17/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu17/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu17/cache/index1/size | 1 +
.../system/cpu/cpu17/cache/index1/type | 1 +
.../system/cpu/cpu17/cache/index1/uevent | 0
.../cpu17/cache/index1/ways_of_associativity | 1 +
.../cpu17/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu17/cache/index2/id | 1 +
.../system/cpu/cpu17/cache/index2/level | 1 +
.../cpu/cpu17/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu17/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu17/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu17/cache/index2/size | 1 +
.../system/cpu/cpu17/cache/index2/type | 1 +
.../system/cpu/cpu17/cache/index2/uevent | 0
.../cpu17/cache/index2/ways_of_associativity | 1 +
.../cpu17/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu17/cache/index3/id | 1 +
.../system/cpu/cpu17/cache/index3/level | 1 +
.../cpu/cpu17/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu17/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu17/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu17/cache/index3/size | 1 +
.../system/cpu/cpu17/cache/index3/type | 1 +
.../system/cpu/cpu17/cache/index3/uevent | 0
.../cpu17/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu17/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu17/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu17/online | 1 +
.../system/cpu/cpu17/topology/cluster_cpus | 1 +
.../cpu/cpu17/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu17/topology/cluster_id | 1 +
.../system/cpu/cpu17/topology/core_cpus | 1 +
.../system/cpu/cpu17/topology/core_cpus_list | 1 +
.../system/cpu/cpu17/topology/core_id | 1 +
.../system/cpu/cpu17/topology/core_siblings | 1 +
.../cpu/cpu17/topology/core_siblings_list | 1 +
.../system/cpu/cpu17/topology/die_cpus | 1 +
.../system/cpu/cpu17/topology/die_cpus_list | 1 +
.../system/cpu/cpu17/topology/die_id | 1 +
.../system/cpu/cpu17/topology/package_cpus | 1 +
.../cpu/cpu17/topology/package_cpus_list | 1 +
.../cpu/cpu17/topology/physical_package_id | 1 +
.../system/cpu/cpu17/topology/ppin | 1 +
.../system/cpu/cpu17/topology/thread_siblings | 1 +
.../cpu/cpu17/topology/thread_siblings_list | 1 +
.../cpu18/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu18/cache/index0/id | 1 +
.../system/cpu/cpu18/cache/index0/level | 1 +
.../cpu/cpu18/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu18/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu18/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu18/cache/index0/size | 1 +
.../system/cpu/cpu18/cache/index0/type | 1 +
.../system/cpu/cpu18/cache/index0/uevent | 0
.../cpu18/cache/index0/ways_of_associativity | 1 +
.../cpu18/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu18/cache/index1/id | 1 +
.../system/cpu/cpu18/cache/index1/level | 1 +
.../cpu/cpu18/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu18/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu18/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu18/cache/index1/size | 1 +
.../system/cpu/cpu18/cache/index1/type | 1 +
.../system/cpu/cpu18/cache/index1/uevent | 0
.../cpu18/cache/index1/ways_of_associativity | 1 +
.../cpu18/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu18/cache/index2/id | 1 +
.../system/cpu/cpu18/cache/index2/level | 1 +
.../cpu/cpu18/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu18/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu18/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu18/cache/index2/size | 1 +
.../system/cpu/cpu18/cache/index2/type | 1 +
.../system/cpu/cpu18/cache/index2/uevent | 0
.../cpu18/cache/index2/ways_of_associativity | 1 +
.../cpu18/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu18/cache/index3/id | 1 +
.../system/cpu/cpu18/cache/index3/level | 1 +
.../cpu/cpu18/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu18/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu18/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu18/cache/index3/size | 1 +
.../system/cpu/cpu18/cache/index3/type | 1 +
.../system/cpu/cpu18/cache/index3/uevent | 0
.../cpu18/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu18/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu18/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu18/online | 1 +
.../system/cpu/cpu18/topology/cluster_cpus | 1 +
.../cpu/cpu18/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu18/topology/cluster_id | 1 +
.../system/cpu/cpu18/topology/core_cpus | 1 +
.../system/cpu/cpu18/topology/core_cpus_list | 1 +
.../system/cpu/cpu18/topology/core_id | 1 +
.../system/cpu/cpu18/topology/core_siblings | 1 +
.../cpu/cpu18/topology/core_siblings_list | 1 +
.../system/cpu/cpu18/topology/die_cpus | 1 +
.../system/cpu/cpu18/topology/die_cpus_list | 1 +
.../system/cpu/cpu18/topology/die_id | 1 +
.../system/cpu/cpu18/topology/package_cpus | 1 +
.../cpu/cpu18/topology/package_cpus_list | 1 +
.../cpu/cpu18/topology/physical_package_id | 1 +
.../system/cpu/cpu18/topology/ppin | 1 +
.../system/cpu/cpu18/topology/thread_siblings | 1 +
.../cpu/cpu18/topology/thread_siblings_list | 1 +
.../cpu19/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu19/cache/index0/id | 1 +
.../system/cpu/cpu19/cache/index0/level | 1 +
.../cpu/cpu19/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu19/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu19/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu19/cache/index0/size | 1 +
.../system/cpu/cpu19/cache/index0/type | 1 +
.../system/cpu/cpu19/cache/index0/uevent | 0
.../cpu19/cache/index0/ways_of_associativity | 1 +
.../cpu19/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu19/cache/index1/id | 1 +
.../system/cpu/cpu19/cache/index1/level | 1 +
.../cpu/cpu19/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu19/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu19/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu19/cache/index1/size | 1 +
.../system/cpu/cpu19/cache/index1/type | 1 +
.../system/cpu/cpu19/cache/index1/uevent | 0
.../cpu19/cache/index1/ways_of_associativity | 1 +
.../cpu19/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu19/cache/index2/id | 1 +
.../system/cpu/cpu19/cache/index2/level | 1 +
.../cpu/cpu19/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu19/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu19/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu19/cache/index2/size | 1 +
.../system/cpu/cpu19/cache/index2/type | 1 +
.../system/cpu/cpu19/cache/index2/uevent | 0
.../cpu19/cache/index2/ways_of_associativity | 1 +
.../cpu19/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu19/cache/index3/id | 1 +
.../system/cpu/cpu19/cache/index3/level | 1 +
.../cpu/cpu19/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu19/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu19/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu19/cache/index3/size | 1 +
.../system/cpu/cpu19/cache/index3/type | 1 +
.../system/cpu/cpu19/cache/index3/uevent | 0
.../cpu19/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu19/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu19/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu19/online | 1 +
.../system/cpu/cpu19/topology/cluster_cpus | 1 +
.../cpu/cpu19/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu19/topology/cluster_id | 1 +
.../system/cpu/cpu19/topology/core_cpus | 1 +
.../system/cpu/cpu19/topology/core_cpus_list | 1 +
.../system/cpu/cpu19/topology/core_id | 1 +
.../system/cpu/cpu19/topology/core_siblings | 1 +
.../cpu/cpu19/topology/core_siblings_list | 1 +
.../system/cpu/cpu19/topology/die_cpus | 1 +
.../system/cpu/cpu19/topology/die_cpus_list | 1 +
.../system/cpu/cpu19/topology/die_id | 1 +
.../system/cpu/cpu19/topology/package_cpus | 1 +
.../cpu/cpu19/topology/package_cpus_list | 1 +
.../cpu/cpu19/topology/physical_package_id | 1 +
.../system/cpu/cpu19/topology/ppin | 1 +
.../system/cpu/cpu19/topology/thread_siblings | 1 +
.../cpu/cpu19/topology/thread_siblings_list | 1 +
.../cpu/cpu2/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu2/cache/index0/id | 1 +
.../system/cpu/cpu2/cache/index0/level | 1 +
.../cpu/cpu2/cache/index0/number_of_sets | 1 +
.../cpu2/cache/index0/physical_line_partition | 1 +
.../cpu/cpu2/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu2/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu2/cache/index0/size | 1 +
.../system/cpu/cpu2/cache/index0/type | 1 +
.../system/cpu/cpu2/cache/index0/uevent | 0
.../cpu2/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu2/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu2/cache/index1/id | 1 +
.../system/cpu/cpu2/cache/index1/level | 1 +
.../cpu/cpu2/cache/index1/number_of_sets | 1 +
.../cpu2/cache/index1/physical_line_partition | 1 +
.../cpu/cpu2/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu2/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu2/cache/index1/size | 1 +
.../system/cpu/cpu2/cache/index1/type | 1 +
.../system/cpu/cpu2/cache/index1/uevent | 0
.../cpu2/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu2/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu2/cache/index2/id | 1 +
.../system/cpu/cpu2/cache/index2/level | 1 +
.../cpu/cpu2/cache/index2/number_of_sets | 1 +
.../cpu2/cache/index2/physical_line_partition | 1 +
.../cpu/cpu2/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu2/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu2/cache/index2/size | 1 +
.../system/cpu/cpu2/cache/index2/type | 1 +
.../system/cpu/cpu2/cache/index2/uevent | 0
.../cpu2/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu2/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu2/cache/index3/id | 1 +
.../system/cpu/cpu2/cache/index3/level | 1 +
.../cpu/cpu2/cache/index3/number_of_sets | 1 +
.../cpu2/cache/index3/physical_line_partition | 1 +
.../cpu/cpu2/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu2/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu2/cache/index3/size | 1 +
.../system/cpu/cpu2/cache/index3/type | 1 +
.../system/cpu/cpu2/cache/index3/uevent | 0
.../cpu2/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu2/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu2/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu2/online | 1 +
.../system/cpu/cpu2/topology/cluster_cpus | 1 +
.../cpu/cpu2/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu2/topology/cluster_id | 1 +
.../system/cpu/cpu2/topology/core_cpus | 1 +
.../system/cpu/cpu2/topology/core_cpus_list | 1 +
.../system/cpu/cpu2/topology/core_id | 1 +
.../system/cpu/cpu2/topology/core_siblings | 1 +
.../cpu/cpu2/topology/core_siblings_list | 1 +
.../system/cpu/cpu2/topology/die_cpus | 1 +
.../system/cpu/cpu2/topology/die_cpus_list | 1 +
.../system/cpu/cpu2/topology/die_id | 1 +
.../system/cpu/cpu2/topology/package_cpus | 1 +
.../cpu/cpu2/topology/package_cpus_list | 1 +
.../cpu/cpu2/topology/physical_package_id | 1 +
.../system/cpu/cpu2/topology/ppin | 1 +
.../system/cpu/cpu2/topology/thread_siblings | 1 +
.../cpu/cpu2/topology/thread_siblings_list | 1 +
.../cpu20/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu20/cache/index0/id | 1 +
.../system/cpu/cpu20/cache/index0/level | 1 +
.../cpu/cpu20/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu20/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu20/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu20/cache/index0/size | 1 +
.../system/cpu/cpu20/cache/index0/type | 1 +
.../system/cpu/cpu20/cache/index0/uevent | 0
.../cpu20/cache/index0/ways_of_associativity | 1 +
.../cpu20/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu20/cache/index1/id | 1 +
.../system/cpu/cpu20/cache/index1/level | 1 +
.../cpu/cpu20/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu20/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu20/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu20/cache/index1/size | 1 +
.../system/cpu/cpu20/cache/index1/type | 1 +
.../system/cpu/cpu20/cache/index1/uevent | 0
.../cpu20/cache/index1/ways_of_associativity | 1 +
.../cpu20/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu20/cache/index2/id | 1 +
.../system/cpu/cpu20/cache/index2/level | 1 +
.../cpu/cpu20/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu20/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu20/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu20/cache/index2/size | 1 +
.../system/cpu/cpu20/cache/index2/type | 1 +
.../system/cpu/cpu20/cache/index2/uevent | 0
.../cpu20/cache/index2/ways_of_associativity | 1 +
.../cpu20/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu20/cache/index3/id | 1 +
.../system/cpu/cpu20/cache/index3/level | 1 +
.../cpu/cpu20/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu20/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu20/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu20/cache/index3/size | 1 +
.../system/cpu/cpu20/cache/index3/type | 1 +
.../system/cpu/cpu20/cache/index3/uevent | 0
.../cpu20/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu20/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu20/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu20/online | 1 +
.../system/cpu/cpu20/topology/cluster_cpus | 1 +
.../cpu/cpu20/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu20/topology/cluster_id | 1 +
.../system/cpu/cpu20/topology/core_cpus | 1 +
.../system/cpu/cpu20/topology/core_cpus_list | 1 +
.../system/cpu/cpu20/topology/core_id | 1 +
.../system/cpu/cpu20/topology/core_siblings | 1 +
.../cpu/cpu20/topology/core_siblings_list | 1 +
.../system/cpu/cpu20/topology/die_cpus | 1 +
.../system/cpu/cpu20/topology/die_cpus_list | 1 +
.../system/cpu/cpu20/topology/die_id | 1 +
.../system/cpu/cpu20/topology/package_cpus | 1 +
.../cpu/cpu20/topology/package_cpus_list | 1 +
.../cpu/cpu20/topology/physical_package_id | 1 +
.../system/cpu/cpu20/topology/ppin | 1 +
.../system/cpu/cpu20/topology/thread_siblings | 1 +
.../cpu/cpu20/topology/thread_siblings_list | 1 +
.../cpu21/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu21/cache/index0/id | 1 +
.../system/cpu/cpu21/cache/index0/level | 1 +
.../cpu/cpu21/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu21/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu21/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu21/cache/index0/size | 1 +
.../system/cpu/cpu21/cache/index0/type | 1 +
.../system/cpu/cpu21/cache/index0/uevent | 0
.../cpu21/cache/index0/ways_of_associativity | 1 +
.../cpu21/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu21/cache/index1/id | 1 +
.../system/cpu/cpu21/cache/index1/level | 1 +
.../cpu/cpu21/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu21/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu21/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu21/cache/index1/size | 1 +
.../system/cpu/cpu21/cache/index1/type | 1 +
.../system/cpu/cpu21/cache/index1/uevent | 0
.../cpu21/cache/index1/ways_of_associativity | 1 +
.../cpu21/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu21/cache/index2/id | 1 +
.../system/cpu/cpu21/cache/index2/level | 1 +
.../cpu/cpu21/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu21/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu21/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu21/cache/index2/size | 1 +
.../system/cpu/cpu21/cache/index2/type | 1 +
.../system/cpu/cpu21/cache/index2/uevent | 0
.../cpu21/cache/index2/ways_of_associativity | 1 +
.../cpu21/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu21/cache/index3/id | 1 +
.../system/cpu/cpu21/cache/index3/level | 1 +
.../cpu/cpu21/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu21/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu21/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu21/cache/index3/size | 1 +
.../system/cpu/cpu21/cache/index3/type | 1 +
.../system/cpu/cpu21/cache/index3/uevent | 0
.../cpu21/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu21/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu21/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu21/online | 1 +
.../system/cpu/cpu21/topology/cluster_cpus | 1 +
.../cpu/cpu21/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu21/topology/cluster_id | 1 +
.../system/cpu/cpu21/topology/core_cpus | 1 +
.../system/cpu/cpu21/topology/core_cpus_list | 1 +
.../system/cpu/cpu21/topology/core_id | 1 +
.../system/cpu/cpu21/topology/core_siblings | 1 +
.../cpu/cpu21/topology/core_siblings_list | 1 +
.../system/cpu/cpu21/topology/die_cpus | 1 +
.../system/cpu/cpu21/topology/die_cpus_list | 1 +
.../system/cpu/cpu21/topology/die_id | 1 +
.../system/cpu/cpu21/topology/package_cpus | 1 +
.../cpu/cpu21/topology/package_cpus_list | 1 +
.../cpu/cpu21/topology/physical_package_id | 1 +
.../system/cpu/cpu21/topology/ppin | 1 +
.../system/cpu/cpu21/topology/thread_siblings | 1 +
.../cpu/cpu21/topology/thread_siblings_list | 1 +
.../cpu22/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu22/cache/index0/id | 1 +
.../system/cpu/cpu22/cache/index0/level | 1 +
.../cpu/cpu22/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu22/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu22/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu22/cache/index0/size | 1 +
.../system/cpu/cpu22/cache/index0/type | 1 +
.../system/cpu/cpu22/cache/index0/uevent | 0
.../cpu22/cache/index0/ways_of_associativity | 1 +
.../cpu22/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu22/cache/index1/id | 1 +
.../system/cpu/cpu22/cache/index1/level | 1 +
.../cpu/cpu22/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu22/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu22/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu22/cache/index1/size | 1 +
.../system/cpu/cpu22/cache/index1/type | 1 +
.../system/cpu/cpu22/cache/index1/uevent | 0
.../cpu22/cache/index1/ways_of_associativity | 1 +
.../cpu22/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu22/cache/index2/id | 1 +
.../system/cpu/cpu22/cache/index2/level | 1 +
.../cpu/cpu22/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu22/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu22/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu22/cache/index2/size | 1 +
.../system/cpu/cpu22/cache/index2/type | 1 +
.../system/cpu/cpu22/cache/index2/uevent | 0
.../cpu22/cache/index2/ways_of_associativity | 1 +
.../cpu22/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu22/cache/index3/id | 1 +
.../system/cpu/cpu22/cache/index3/level | 1 +
.../cpu/cpu22/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu22/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu22/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu22/cache/index3/size | 1 +
.../system/cpu/cpu22/cache/index3/type | 1 +
.../system/cpu/cpu22/cache/index3/uevent | 0
.../cpu22/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu22/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu22/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu22/online | 1 +
.../system/cpu/cpu22/topology/cluster_cpus | 1 +
.../cpu/cpu22/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu22/topology/cluster_id | 1 +
.../system/cpu/cpu22/topology/core_cpus | 1 +
.../system/cpu/cpu22/topology/core_cpus_list | 1 +
.../system/cpu/cpu22/topology/core_id | 1 +
.../system/cpu/cpu22/topology/core_siblings | 1 +
.../cpu/cpu22/topology/core_siblings_list | 1 +
.../system/cpu/cpu22/topology/die_cpus | 1 +
.../system/cpu/cpu22/topology/die_cpus_list | 1 +
.../system/cpu/cpu22/topology/die_id | 1 +
.../system/cpu/cpu22/topology/package_cpus | 1 +
.../cpu/cpu22/topology/package_cpus_list | 1 +
.../cpu/cpu22/topology/physical_package_id | 1 +
.../system/cpu/cpu22/topology/ppin | 1 +
.../system/cpu/cpu22/topology/thread_siblings | 1 +
.../cpu/cpu22/topology/thread_siblings_list | 1 +
.../cpu23/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu23/cache/index0/id | 1 +
.../system/cpu/cpu23/cache/index0/level | 1 +
.../cpu/cpu23/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu23/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu23/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu23/cache/index0/size | 1 +
.../system/cpu/cpu23/cache/index0/type | 1 +
.../system/cpu/cpu23/cache/index0/uevent | 0
.../cpu23/cache/index0/ways_of_associativity | 1 +
.../cpu23/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu23/cache/index1/id | 1 +
.../system/cpu/cpu23/cache/index1/level | 1 +
.../cpu/cpu23/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu23/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu23/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu23/cache/index1/size | 1 +
.../system/cpu/cpu23/cache/index1/type | 1 +
.../system/cpu/cpu23/cache/index1/uevent | 0
.../cpu23/cache/index1/ways_of_associativity | 1 +
.../cpu23/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu23/cache/index2/id | 1 +
.../system/cpu/cpu23/cache/index2/level | 1 +
.../cpu/cpu23/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu23/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu23/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu23/cache/index2/size | 1 +
.../system/cpu/cpu23/cache/index2/type | 1 +
.../system/cpu/cpu23/cache/index2/uevent | 0
.../cpu23/cache/index2/ways_of_associativity | 1 +
.../cpu23/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu23/cache/index3/id | 1 +
.../system/cpu/cpu23/cache/index3/level | 1 +
.../cpu/cpu23/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu23/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu23/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu23/cache/index3/size | 1 +
.../system/cpu/cpu23/cache/index3/type | 1 +
.../system/cpu/cpu23/cache/index3/uevent | 0
.../cpu23/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu23/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu23/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu23/online | 1 +
.../system/cpu/cpu23/topology/cluster_cpus | 1 +
.../cpu/cpu23/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu23/topology/cluster_id | 1 +
.../system/cpu/cpu23/topology/core_cpus | 1 +
.../system/cpu/cpu23/topology/core_cpus_list | 1 +
.../system/cpu/cpu23/topology/core_id | 1 +
.../system/cpu/cpu23/topology/core_siblings | 1 +
.../cpu/cpu23/topology/core_siblings_list | 1 +
.../system/cpu/cpu23/topology/die_cpus | 1 +
.../system/cpu/cpu23/topology/die_cpus_list | 1 +
.../system/cpu/cpu23/topology/die_id | 1 +
.../system/cpu/cpu23/topology/package_cpus | 1 +
.../cpu/cpu23/topology/package_cpus_list | 1 +
.../cpu/cpu23/topology/physical_package_id | 1 +
.../system/cpu/cpu23/topology/ppin | 1 +
.../system/cpu/cpu23/topology/thread_siblings | 1 +
.../cpu/cpu23/topology/thread_siblings_list | 1 +
.../cpu24/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu24/cache/index0/id | 1 +
.../system/cpu/cpu24/cache/index0/level | 1 +
.../cpu/cpu24/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu24/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu24/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu24/cache/index0/size | 1 +
.../system/cpu/cpu24/cache/index0/type | 1 +
.../system/cpu/cpu24/cache/index0/uevent | 0
.../cpu24/cache/index0/ways_of_associativity | 1 +
.../cpu24/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu24/cache/index1/id | 1 +
.../system/cpu/cpu24/cache/index1/level | 1 +
.../cpu/cpu24/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu24/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu24/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu24/cache/index1/size | 1 +
.../system/cpu/cpu24/cache/index1/type | 1 +
.../system/cpu/cpu24/cache/index1/uevent | 0
.../cpu24/cache/index1/ways_of_associativity | 1 +
.../cpu24/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu24/cache/index2/id | 1 +
.../system/cpu/cpu24/cache/index2/level | 1 +
.../cpu/cpu24/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu24/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu24/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu24/cache/index2/size | 1 +
.../system/cpu/cpu24/cache/index2/type | 1 +
.../system/cpu/cpu24/cache/index2/uevent | 0
.../cpu24/cache/index2/ways_of_associativity | 1 +
.../cpu24/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu24/cache/index3/id | 1 +
.../system/cpu/cpu24/cache/index3/level | 1 +
.../cpu/cpu24/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu24/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu24/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu24/cache/index3/size | 1 +
.../system/cpu/cpu24/cache/index3/type | 1 +
.../system/cpu/cpu24/cache/index3/uevent | 0
.../cpu24/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu24/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu24/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu24/online | 1 +
.../system/cpu/cpu24/topology/cluster_cpus | 1 +
.../cpu/cpu24/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu24/topology/cluster_id | 1 +
.../system/cpu/cpu24/topology/core_cpus | 1 +
.../system/cpu/cpu24/topology/core_cpus_list | 1 +
.../system/cpu/cpu24/topology/core_id | 1 +
.../system/cpu/cpu24/topology/core_siblings | 1 +
.../cpu/cpu24/topology/core_siblings_list | 1 +
.../system/cpu/cpu24/topology/die_cpus | 1 +
.../system/cpu/cpu24/topology/die_cpus_list | 1 +
.../system/cpu/cpu24/topology/die_id | 1 +
.../system/cpu/cpu24/topology/package_cpus | 1 +
.../cpu/cpu24/topology/package_cpus_list | 1 +
.../cpu/cpu24/topology/physical_package_id | 1 +
.../system/cpu/cpu24/topology/ppin | 1 +
.../system/cpu/cpu24/topology/thread_siblings | 1 +
.../cpu/cpu24/topology/thread_siblings_list | 1 +
.../cpu25/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu25/cache/index0/id | 1 +
.../system/cpu/cpu25/cache/index0/level | 1 +
.../cpu/cpu25/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu25/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu25/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu25/cache/index0/size | 1 +
.../system/cpu/cpu25/cache/index0/type | 1 +
.../system/cpu/cpu25/cache/index0/uevent | 0
.../cpu25/cache/index0/ways_of_associativity | 1 +
.../cpu25/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu25/cache/index1/id | 1 +
.../system/cpu/cpu25/cache/index1/level | 1 +
.../cpu/cpu25/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu25/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu25/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu25/cache/index1/size | 1 +
.../system/cpu/cpu25/cache/index1/type | 1 +
.../system/cpu/cpu25/cache/index1/uevent | 0
.../cpu25/cache/index1/ways_of_associativity | 1 +
.../cpu25/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu25/cache/index2/id | 1 +
.../system/cpu/cpu25/cache/index2/level | 1 +
.../cpu/cpu25/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu25/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu25/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu25/cache/index2/size | 1 +
.../system/cpu/cpu25/cache/index2/type | 1 +
.../system/cpu/cpu25/cache/index2/uevent | 0
.../cpu25/cache/index2/ways_of_associativity | 1 +
.../cpu25/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu25/cache/index3/id | 1 +
.../system/cpu/cpu25/cache/index3/level | 1 +
.../cpu/cpu25/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu25/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu25/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu25/cache/index3/size | 1 +
.../system/cpu/cpu25/cache/index3/type | 1 +
.../system/cpu/cpu25/cache/index3/uevent | 0
.../cpu25/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu25/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu25/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu25/online | 1 +
.../system/cpu/cpu25/topology/cluster_cpus | 1 +
.../cpu/cpu25/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu25/topology/cluster_id | 1 +
.../system/cpu/cpu25/topology/core_cpus | 1 +
.../system/cpu/cpu25/topology/core_cpus_list | 1 +
.../system/cpu/cpu25/topology/core_id | 1 +
.../system/cpu/cpu25/topology/core_siblings | 1 +
.../cpu/cpu25/topology/core_siblings_list | 1 +
.../system/cpu/cpu25/topology/die_cpus | 1 +
.../system/cpu/cpu25/topology/die_cpus_list | 1 +
.../system/cpu/cpu25/topology/die_id | 1 +
.../system/cpu/cpu25/topology/package_cpus | 1 +
.../cpu/cpu25/topology/package_cpus_list | 1 +
.../cpu/cpu25/topology/physical_package_id | 1 +
.../system/cpu/cpu25/topology/ppin | 1 +
.../system/cpu/cpu25/topology/thread_siblings | 1 +
.../cpu/cpu25/topology/thread_siblings_list | 1 +
.../cpu26/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu26/cache/index0/id | 1 +
.../system/cpu/cpu26/cache/index0/level | 1 +
.../cpu/cpu26/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu26/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu26/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu26/cache/index0/size | 1 +
.../system/cpu/cpu26/cache/index0/type | 1 +
.../system/cpu/cpu26/cache/index0/uevent | 0
.../cpu26/cache/index0/ways_of_associativity | 1 +
.../cpu26/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu26/cache/index1/id | 1 +
.../system/cpu/cpu26/cache/index1/level | 1 +
.../cpu/cpu26/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu26/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu26/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu26/cache/index1/size | 1 +
.../system/cpu/cpu26/cache/index1/type | 1 +
.../system/cpu/cpu26/cache/index1/uevent | 0
.../cpu26/cache/index1/ways_of_associativity | 1 +
.../cpu26/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu26/cache/index2/id | 1 +
.../system/cpu/cpu26/cache/index2/level | 1 +
.../cpu/cpu26/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu26/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu26/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu26/cache/index2/size | 1 +
.../system/cpu/cpu26/cache/index2/type | 1 +
.../system/cpu/cpu26/cache/index2/uevent | 0
.../cpu26/cache/index2/ways_of_associativity | 1 +
.../cpu26/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu26/cache/index3/id | 1 +
.../system/cpu/cpu26/cache/index3/level | 1 +
.../cpu/cpu26/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu26/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu26/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu26/cache/index3/size | 1 +
.../system/cpu/cpu26/cache/index3/type | 1 +
.../system/cpu/cpu26/cache/index3/uevent | 0
.../cpu26/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu26/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu26/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu26/online | 1 +
.../system/cpu/cpu26/topology/cluster_cpus | 1 +
.../cpu/cpu26/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu26/topology/cluster_id | 1 +
.../system/cpu/cpu26/topology/core_cpus | 1 +
.../system/cpu/cpu26/topology/core_cpus_list | 1 +
.../system/cpu/cpu26/topology/core_id | 1 +
.../system/cpu/cpu26/topology/core_siblings | 1 +
.../cpu/cpu26/topology/core_siblings_list | 1 +
.../system/cpu/cpu26/topology/die_cpus | 1 +
.../system/cpu/cpu26/topology/die_cpus_list | 1 +
.../system/cpu/cpu26/topology/die_id | 1 +
.../system/cpu/cpu26/topology/package_cpus | 1 +
.../cpu/cpu26/topology/package_cpus_list | 1 +
.../cpu/cpu26/topology/physical_package_id | 1 +
.../system/cpu/cpu26/topology/ppin | 1 +
.../system/cpu/cpu26/topology/thread_siblings | 1 +
.../cpu/cpu26/topology/thread_siblings_list | 1 +
.../cpu27/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu27/cache/index0/id | 1 +
.../system/cpu/cpu27/cache/index0/level | 1 +
.../cpu/cpu27/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu27/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu27/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu27/cache/index0/size | 1 +
.../system/cpu/cpu27/cache/index0/type | 1 +
.../system/cpu/cpu27/cache/index0/uevent | 0
.../cpu27/cache/index0/ways_of_associativity | 1 +
.../cpu27/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu27/cache/index1/id | 1 +
.../system/cpu/cpu27/cache/index1/level | 1 +
.../cpu/cpu27/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu27/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu27/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu27/cache/index1/size | 1 +
.../system/cpu/cpu27/cache/index1/type | 1 +
.../system/cpu/cpu27/cache/index1/uevent | 0
.../cpu27/cache/index1/ways_of_associativity | 1 +
.../cpu27/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu27/cache/index2/id | 1 +
.../system/cpu/cpu27/cache/index2/level | 1 +
.../cpu/cpu27/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu27/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu27/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu27/cache/index2/size | 1 +
.../system/cpu/cpu27/cache/index2/type | 1 +
.../system/cpu/cpu27/cache/index2/uevent | 0
.../cpu27/cache/index2/ways_of_associativity | 1 +
.../cpu27/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu27/cache/index3/id | 1 +
.../system/cpu/cpu27/cache/index3/level | 1 +
.../cpu/cpu27/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu27/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu27/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu27/cache/index3/size | 1 +
.../system/cpu/cpu27/cache/index3/type | 1 +
.../system/cpu/cpu27/cache/index3/uevent | 0
.../cpu27/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu27/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu27/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu27/online | 1 +
.../system/cpu/cpu27/topology/cluster_cpus | 1 +
.../cpu/cpu27/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu27/topology/cluster_id | 1 +
.../system/cpu/cpu27/topology/core_cpus | 1 +
.../system/cpu/cpu27/topology/core_cpus_list | 1 +
.../system/cpu/cpu27/topology/core_id | 1 +
.../system/cpu/cpu27/topology/core_siblings | 1 +
.../cpu/cpu27/topology/core_siblings_list | 1 +
.../system/cpu/cpu27/topology/die_cpus | 1 +
.../system/cpu/cpu27/topology/die_cpus_list | 1 +
.../system/cpu/cpu27/topology/die_id | 1 +
.../system/cpu/cpu27/topology/package_cpus | 1 +
.../cpu/cpu27/topology/package_cpus_list | 1 +
.../cpu/cpu27/topology/physical_package_id | 1 +
.../system/cpu/cpu27/topology/ppin | 1 +
.../system/cpu/cpu27/topology/thread_siblings | 1 +
.../cpu/cpu27/topology/thread_siblings_list | 1 +
.../cpu28/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu28/cache/index0/id | 1 +
.../system/cpu/cpu28/cache/index0/level | 1 +
.../cpu/cpu28/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu28/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu28/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu28/cache/index0/size | 1 +
.../system/cpu/cpu28/cache/index0/type | 1 +
.../system/cpu/cpu28/cache/index0/uevent | 0
.../cpu28/cache/index0/ways_of_associativity | 1 +
.../cpu28/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu28/cache/index1/id | 1 +
.../system/cpu/cpu28/cache/index1/level | 1 +
.../cpu/cpu28/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu28/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu28/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu28/cache/index1/size | 1 +
.../system/cpu/cpu28/cache/index1/type | 1 +
.../system/cpu/cpu28/cache/index1/uevent | 0
.../cpu28/cache/index1/ways_of_associativity | 1 +
.../cpu28/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu28/cache/index2/id | 1 +
.../system/cpu/cpu28/cache/index2/level | 1 +
.../cpu/cpu28/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu28/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu28/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu28/cache/index2/size | 1 +
.../system/cpu/cpu28/cache/index2/type | 1 +
.../system/cpu/cpu28/cache/index2/uevent | 0
.../cpu28/cache/index2/ways_of_associativity | 1 +
.../cpu28/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu28/cache/index3/id | 1 +
.../system/cpu/cpu28/cache/index3/level | 1 +
.../cpu/cpu28/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu28/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu28/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu28/cache/index3/size | 1 +
.../system/cpu/cpu28/cache/index3/type | 1 +
.../system/cpu/cpu28/cache/index3/uevent | 0
.../cpu28/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu28/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu28/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu28/online | 1 +
.../system/cpu/cpu28/topology/cluster_cpus | 1 +
.../cpu/cpu28/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu28/topology/cluster_id | 1 +
.../system/cpu/cpu28/topology/core_cpus | 1 +
.../system/cpu/cpu28/topology/core_cpus_list | 1 +
.../system/cpu/cpu28/topology/core_id | 1 +
.../system/cpu/cpu28/topology/core_siblings | 1 +
.../cpu/cpu28/topology/core_siblings_list | 1 +
.../system/cpu/cpu28/topology/die_cpus | 1 +
.../system/cpu/cpu28/topology/die_cpus_list | 1 +
.../system/cpu/cpu28/topology/die_id | 1 +
.../system/cpu/cpu28/topology/package_cpus | 1 +
.../cpu/cpu28/topology/package_cpus_list | 1 +
.../cpu/cpu28/topology/physical_package_id | 1 +
.../system/cpu/cpu28/topology/ppin | 1 +
.../system/cpu/cpu28/topology/thread_siblings | 1 +
.../cpu/cpu28/topology/thread_siblings_list | 1 +
.../cpu29/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu29/cache/index0/id | 1 +
.../system/cpu/cpu29/cache/index0/level | 1 +
.../cpu/cpu29/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu29/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu29/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu29/cache/index0/size | 1 +
.../system/cpu/cpu29/cache/index0/type | 1 +
.../system/cpu/cpu29/cache/index0/uevent | 0
.../cpu29/cache/index0/ways_of_associativity | 1 +
.../cpu29/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu29/cache/index1/id | 1 +
.../system/cpu/cpu29/cache/index1/level | 1 +
.../cpu/cpu29/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu29/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu29/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu29/cache/index1/size | 1 +
.../system/cpu/cpu29/cache/index1/type | 1 +
.../system/cpu/cpu29/cache/index1/uevent | 0
.../cpu29/cache/index1/ways_of_associativity | 1 +
.../cpu29/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu29/cache/index2/id | 1 +
.../system/cpu/cpu29/cache/index2/level | 1 +
.../cpu/cpu29/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu29/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu29/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu29/cache/index2/size | 1 +
.../system/cpu/cpu29/cache/index2/type | 1 +
.../system/cpu/cpu29/cache/index2/uevent | 0
.../cpu29/cache/index2/ways_of_associativity | 1 +
.../cpu29/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu29/cache/index3/id | 1 +
.../system/cpu/cpu29/cache/index3/level | 1 +
.../cpu/cpu29/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu29/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu29/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu29/cache/index3/size | 1 +
.../system/cpu/cpu29/cache/index3/type | 1 +
.../system/cpu/cpu29/cache/index3/uevent | 0
.../cpu29/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu29/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu29/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu29/online | 1 +
.../system/cpu/cpu29/topology/cluster_cpus | 1 +
.../cpu/cpu29/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu29/topology/cluster_id | 1 +
.../system/cpu/cpu29/topology/core_cpus | 1 +
.../system/cpu/cpu29/topology/core_cpus_list | 1 +
.../system/cpu/cpu29/topology/core_id | 1 +
.../system/cpu/cpu29/topology/core_siblings | 1 +
.../cpu/cpu29/topology/core_siblings_list | 1 +
.../system/cpu/cpu29/topology/die_cpus | 1 +
.../system/cpu/cpu29/topology/die_cpus_list | 1 +
.../system/cpu/cpu29/topology/die_id | 1 +
.../system/cpu/cpu29/topology/package_cpus | 1 +
.../cpu/cpu29/topology/package_cpus_list | 1 +
.../cpu/cpu29/topology/physical_package_id | 1 +
.../system/cpu/cpu29/topology/ppin | 1 +
.../system/cpu/cpu29/topology/thread_siblings | 1 +
.../cpu/cpu29/topology/thread_siblings_list | 1 +
.../cpu/cpu3/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu3/cache/index0/id | 1 +
.../system/cpu/cpu3/cache/index0/level | 1 +
.../cpu/cpu3/cache/index0/number_of_sets | 1 +
.../cpu3/cache/index0/physical_line_partition | 1 +
.../cpu/cpu3/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu3/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu3/cache/index0/size | 1 +
.../system/cpu/cpu3/cache/index0/type | 1 +
.../system/cpu/cpu3/cache/index0/uevent | 0
.../cpu3/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu3/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu3/cache/index1/id | 1 +
.../system/cpu/cpu3/cache/index1/level | 1 +
.../cpu/cpu3/cache/index1/number_of_sets | 1 +
.../cpu3/cache/index1/physical_line_partition | 1 +
.../cpu/cpu3/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu3/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu3/cache/index1/size | 1 +
.../system/cpu/cpu3/cache/index1/type | 1 +
.../system/cpu/cpu3/cache/index1/uevent | 0
.../cpu3/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu3/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu3/cache/index2/id | 1 +
.../system/cpu/cpu3/cache/index2/level | 1 +
.../cpu/cpu3/cache/index2/number_of_sets | 1 +
.../cpu3/cache/index2/physical_line_partition | 1 +
.../cpu/cpu3/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu3/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu3/cache/index2/size | 1 +
.../system/cpu/cpu3/cache/index2/type | 1 +
.../system/cpu/cpu3/cache/index2/uevent | 0
.../cpu3/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu3/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu3/cache/index3/id | 1 +
.../system/cpu/cpu3/cache/index3/level | 1 +
.../cpu/cpu3/cache/index3/number_of_sets | 1 +
.../cpu3/cache/index3/physical_line_partition | 1 +
.../cpu/cpu3/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu3/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu3/cache/index3/size | 1 +
.../system/cpu/cpu3/cache/index3/type | 1 +
.../system/cpu/cpu3/cache/index3/uevent | 0
.../cpu3/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu3/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu3/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu3/online | 1 +
.../system/cpu/cpu3/topology/cluster_cpus | 1 +
.../cpu/cpu3/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu3/topology/cluster_id | 1 +
.../system/cpu/cpu3/topology/core_cpus | 1 +
.../system/cpu/cpu3/topology/core_cpus_list | 1 +
.../system/cpu/cpu3/topology/core_id | 1 +
.../system/cpu/cpu3/topology/core_siblings | 1 +
.../cpu/cpu3/topology/core_siblings_list | 1 +
.../system/cpu/cpu3/topology/die_cpus | 1 +
.../system/cpu/cpu3/topology/die_cpus_list | 1 +
.../system/cpu/cpu3/topology/die_id | 1 +
.../system/cpu/cpu3/topology/package_cpus | 1 +
.../cpu/cpu3/topology/package_cpus_list | 1 +
.../cpu/cpu3/topology/physical_package_id | 1 +
.../system/cpu/cpu3/topology/ppin | 1 +
.../system/cpu/cpu3/topology/thread_siblings | 1 +
.../cpu/cpu3/topology/thread_siblings_list | 1 +
.../cpu30/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu30/cache/index0/id | 1 +
.../system/cpu/cpu30/cache/index0/level | 1 +
.../cpu/cpu30/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu30/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu30/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu30/cache/index0/size | 1 +
.../system/cpu/cpu30/cache/index0/type | 1 +
.../system/cpu/cpu30/cache/index0/uevent | 0
.../cpu30/cache/index0/ways_of_associativity | 1 +
.../cpu30/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu30/cache/index1/id | 1 +
.../system/cpu/cpu30/cache/index1/level | 1 +
.../cpu/cpu30/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu30/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu30/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu30/cache/index1/size | 1 +
.../system/cpu/cpu30/cache/index1/type | 1 +
.../system/cpu/cpu30/cache/index1/uevent | 0
.../cpu30/cache/index1/ways_of_associativity | 1 +
.../cpu30/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu30/cache/index2/id | 1 +
.../system/cpu/cpu30/cache/index2/level | 1 +
.../cpu/cpu30/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu30/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu30/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu30/cache/index2/size | 1 +
.../system/cpu/cpu30/cache/index2/type | 1 +
.../system/cpu/cpu30/cache/index2/uevent | 0
.../cpu30/cache/index2/ways_of_associativity | 1 +
.../cpu30/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu30/cache/index3/id | 1 +
.../system/cpu/cpu30/cache/index3/level | 1 +
.../cpu/cpu30/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu30/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu30/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu30/cache/index3/size | 1 +
.../system/cpu/cpu30/cache/index3/type | 1 +
.../system/cpu/cpu30/cache/index3/uevent | 0
.../cpu30/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu30/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu30/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu30/online | 1 +
.../system/cpu/cpu30/topology/cluster_cpus | 1 +
.../cpu/cpu30/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu30/topology/cluster_id | 1 +
.../system/cpu/cpu30/topology/core_cpus | 1 +
.../system/cpu/cpu30/topology/core_cpus_list | 1 +
.../system/cpu/cpu30/topology/core_id | 1 +
.../system/cpu/cpu30/topology/core_siblings | 1 +
.../cpu/cpu30/topology/core_siblings_list | 1 +
.../system/cpu/cpu30/topology/die_cpus | 1 +
.../system/cpu/cpu30/topology/die_cpus_list | 1 +
.../system/cpu/cpu30/topology/die_id | 1 +
.../system/cpu/cpu30/topology/package_cpus | 1 +
.../cpu/cpu30/topology/package_cpus_list | 1 +
.../cpu/cpu30/topology/physical_package_id | 1 +
.../system/cpu/cpu30/topology/ppin | 1 +
.../system/cpu/cpu30/topology/thread_siblings | 1 +
.../cpu/cpu30/topology/thread_siblings_list | 1 +
.../cpu31/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu31/cache/index0/id | 1 +
.../system/cpu/cpu31/cache/index0/level | 1 +
.../cpu/cpu31/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu31/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu31/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu31/cache/index0/size | 1 +
.../system/cpu/cpu31/cache/index0/type | 1 +
.../system/cpu/cpu31/cache/index0/uevent | 0
.../cpu31/cache/index0/ways_of_associativity | 1 +
.../cpu31/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu31/cache/index1/id | 1 +
.../system/cpu/cpu31/cache/index1/level | 1 +
.../cpu/cpu31/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu31/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu31/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu31/cache/index1/size | 1 +
.../system/cpu/cpu31/cache/index1/type | 1 +
.../system/cpu/cpu31/cache/index1/uevent | 0
.../cpu31/cache/index1/ways_of_associativity | 1 +
.../cpu31/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu31/cache/index2/id | 1 +
.../system/cpu/cpu31/cache/index2/level | 1 +
.../cpu/cpu31/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu31/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu31/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu31/cache/index2/size | 1 +
.../system/cpu/cpu31/cache/index2/type | 1 +
.../system/cpu/cpu31/cache/index2/uevent | 0
.../cpu31/cache/index2/ways_of_associativity | 1 +
.../cpu31/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu31/cache/index3/id | 1 +
.../system/cpu/cpu31/cache/index3/level | 1 +
.../cpu/cpu31/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu31/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu31/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu31/cache/index3/size | 1 +
.../system/cpu/cpu31/cache/index3/type | 1 +
.../system/cpu/cpu31/cache/index3/uevent | 0
.../cpu31/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu31/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu31/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu31/online | 1 +
.../system/cpu/cpu31/topology/cluster_cpus | 1 +
.../cpu/cpu31/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu31/topology/cluster_id | 1 +
.../system/cpu/cpu31/topology/core_cpus | 1 +
.../system/cpu/cpu31/topology/core_cpus_list | 1 +
.../system/cpu/cpu31/topology/core_id | 1 +
.../system/cpu/cpu31/topology/core_siblings | 1 +
.../cpu/cpu31/topology/core_siblings_list | 1 +
.../system/cpu/cpu31/topology/die_cpus | 1 +
.../system/cpu/cpu31/topology/die_cpus_list | 1 +
.../system/cpu/cpu31/topology/die_id | 1 +
.../system/cpu/cpu31/topology/package_cpus | 1 +
.../cpu/cpu31/topology/package_cpus_list | 1 +
.../cpu/cpu31/topology/physical_package_id | 1 +
.../system/cpu/cpu31/topology/ppin | 1 +
.../system/cpu/cpu31/topology/thread_siblings | 1 +
.../cpu/cpu31/topology/thread_siblings_list | 1 +
.../cpu32/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu32/cache/index0/id | 1 +
.../system/cpu/cpu32/cache/index0/level | 1 +
.../cpu/cpu32/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu32/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu32/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu32/cache/index0/size | 1 +
.../system/cpu/cpu32/cache/index0/type | 1 +
.../system/cpu/cpu32/cache/index0/uevent | 0
.../cpu32/cache/index0/ways_of_associativity | 1 +
.../cpu32/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu32/cache/index1/id | 1 +
.../system/cpu/cpu32/cache/index1/level | 1 +
.../cpu/cpu32/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu32/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu32/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu32/cache/index1/size | 1 +
.../system/cpu/cpu32/cache/index1/type | 1 +
.../system/cpu/cpu32/cache/index1/uevent | 0
.../cpu32/cache/index1/ways_of_associativity | 1 +
.../cpu32/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu32/cache/index2/id | 1 +
.../system/cpu/cpu32/cache/index2/level | 1 +
.../cpu/cpu32/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu32/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu32/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu32/cache/index2/size | 1 +
.../system/cpu/cpu32/cache/index2/type | 1 +
.../system/cpu/cpu32/cache/index2/uevent | 0
.../cpu32/cache/index2/ways_of_associativity | 1 +
.../cpu32/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu32/cache/index3/id | 1 +
.../system/cpu/cpu32/cache/index3/level | 1 +
.../cpu/cpu32/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu32/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu32/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu32/cache/index3/size | 1 +
.../system/cpu/cpu32/cache/index3/type | 1 +
.../system/cpu/cpu32/cache/index3/uevent | 0
.../cpu32/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu32/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu32/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu32/online | 1 +
.../system/cpu/cpu32/topology/cluster_cpus | 1 +
.../cpu/cpu32/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu32/topology/cluster_id | 1 +
.../system/cpu/cpu32/topology/core_cpus | 1 +
.../system/cpu/cpu32/topology/core_cpus_list | 1 +
.../system/cpu/cpu32/topology/core_id | 1 +
.../system/cpu/cpu32/topology/core_siblings | 1 +
.../cpu/cpu32/topology/core_siblings_list | 1 +
.../system/cpu/cpu32/topology/die_cpus | 1 +
.../system/cpu/cpu32/topology/die_cpus_list | 1 +
.../system/cpu/cpu32/topology/die_id | 1 +
.../system/cpu/cpu32/topology/package_cpus | 1 +
.../cpu/cpu32/topology/package_cpus_list | 1 +
.../cpu/cpu32/topology/physical_package_id | 1 +
.../system/cpu/cpu32/topology/ppin | 1 +
.../system/cpu/cpu32/topology/thread_siblings | 1 +
.../cpu/cpu32/topology/thread_siblings_list | 1 +
.../cpu33/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu33/cache/index0/id | 1 +
.../system/cpu/cpu33/cache/index0/level | 1 +
.../cpu/cpu33/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu33/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu33/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu33/cache/index0/size | 1 +
.../system/cpu/cpu33/cache/index0/type | 1 +
.../system/cpu/cpu33/cache/index0/uevent | 0
.../cpu33/cache/index0/ways_of_associativity | 1 +
.../cpu33/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu33/cache/index1/id | 1 +
.../system/cpu/cpu33/cache/index1/level | 1 +
.../cpu/cpu33/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu33/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu33/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu33/cache/index1/size | 1 +
.../system/cpu/cpu33/cache/index1/type | 1 +
.../system/cpu/cpu33/cache/index1/uevent | 0
.../cpu33/cache/index1/ways_of_associativity | 1 +
.../cpu33/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu33/cache/index2/id | 1 +
.../system/cpu/cpu33/cache/index2/level | 1 +
.../cpu/cpu33/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu33/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu33/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu33/cache/index2/size | 1 +
.../system/cpu/cpu33/cache/index2/type | 1 +
.../system/cpu/cpu33/cache/index2/uevent | 0
.../cpu33/cache/index2/ways_of_associativity | 1 +
.../cpu33/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu33/cache/index3/id | 1 +
.../system/cpu/cpu33/cache/index3/level | 1 +
.../cpu/cpu33/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu33/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu33/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu33/cache/index3/size | 1 +
.../system/cpu/cpu33/cache/index3/type | 1 +
.../system/cpu/cpu33/cache/index3/uevent | 0
.../cpu33/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu33/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu33/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu33/online | 1 +
.../system/cpu/cpu33/topology/cluster_cpus | 1 +
.../cpu/cpu33/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu33/topology/cluster_id | 1 +
.../system/cpu/cpu33/topology/core_cpus | 1 +
.../system/cpu/cpu33/topology/core_cpus_list | 1 +
.../system/cpu/cpu33/topology/core_id | 1 +
.../system/cpu/cpu33/topology/core_siblings | 1 +
.../cpu/cpu33/topology/core_siblings_list | 1 +
.../system/cpu/cpu33/topology/die_cpus | 1 +
.../system/cpu/cpu33/topology/die_cpus_list | 1 +
.../system/cpu/cpu33/topology/die_id | 1 +
.../system/cpu/cpu33/topology/package_cpus | 1 +
.../cpu/cpu33/topology/package_cpus_list | 1 +
.../cpu/cpu33/topology/physical_package_id | 1 +
.../system/cpu/cpu33/topology/ppin | 1 +
.../system/cpu/cpu33/topology/thread_siblings | 1 +
.../cpu/cpu33/topology/thread_siblings_list | 1 +
.../cpu34/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu34/cache/index0/id | 1 +
.../system/cpu/cpu34/cache/index0/level | 1 +
.../cpu/cpu34/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu34/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu34/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu34/cache/index0/size | 1 +
.../system/cpu/cpu34/cache/index0/type | 1 +
.../system/cpu/cpu34/cache/index0/uevent | 0
.../cpu34/cache/index0/ways_of_associativity | 1 +
.../cpu34/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu34/cache/index1/id | 1 +
.../system/cpu/cpu34/cache/index1/level | 1 +
.../cpu/cpu34/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu34/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu34/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu34/cache/index1/size | 1 +
.../system/cpu/cpu34/cache/index1/type | 1 +
.../system/cpu/cpu34/cache/index1/uevent | 0
.../cpu34/cache/index1/ways_of_associativity | 1 +
.../cpu34/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu34/cache/index2/id | 1 +
.../system/cpu/cpu34/cache/index2/level | 1 +
.../cpu/cpu34/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu34/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu34/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu34/cache/index2/size | 1 +
.../system/cpu/cpu34/cache/index2/type | 1 +
.../system/cpu/cpu34/cache/index2/uevent | 0
.../cpu34/cache/index2/ways_of_associativity | 1 +
.../cpu34/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu34/cache/index3/id | 1 +
.../system/cpu/cpu34/cache/index3/level | 1 +
.../cpu/cpu34/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu34/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu34/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu34/cache/index3/size | 1 +
.../system/cpu/cpu34/cache/index3/type | 1 +
.../system/cpu/cpu34/cache/index3/uevent | 0
.../cpu34/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu34/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu34/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu34/online | 1 +
.../system/cpu/cpu34/topology/cluster_cpus | 1 +
.../cpu/cpu34/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu34/topology/cluster_id | 1 +
.../system/cpu/cpu34/topology/core_cpus | 1 +
.../system/cpu/cpu34/topology/core_cpus_list | 1 +
.../system/cpu/cpu34/topology/core_id | 1 +
.../system/cpu/cpu34/topology/core_siblings | 1 +
.../cpu/cpu34/topology/core_siblings_list | 1 +
.../system/cpu/cpu34/topology/die_cpus | 1 +
.../system/cpu/cpu34/topology/die_cpus_list | 1 +
.../system/cpu/cpu34/topology/die_id | 1 +
.../system/cpu/cpu34/topology/package_cpus | 1 +
.../cpu/cpu34/topology/package_cpus_list | 1 +
.../cpu/cpu34/topology/physical_package_id | 1 +
.../system/cpu/cpu34/topology/ppin | 1 +
.../system/cpu/cpu34/topology/thread_siblings | 1 +
.../cpu/cpu34/topology/thread_siblings_list | 1 +
.../cpu35/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu35/cache/index0/id | 1 +
.../system/cpu/cpu35/cache/index0/level | 1 +
.../cpu/cpu35/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu35/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu35/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu35/cache/index0/size | 1 +
.../system/cpu/cpu35/cache/index0/type | 1 +
.../system/cpu/cpu35/cache/index0/uevent | 0
.../cpu35/cache/index0/ways_of_associativity | 1 +
.../cpu35/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu35/cache/index1/id | 1 +
.../system/cpu/cpu35/cache/index1/level | 1 +
.../cpu/cpu35/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu35/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu35/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu35/cache/index1/size | 1 +
.../system/cpu/cpu35/cache/index1/type | 1 +
.../system/cpu/cpu35/cache/index1/uevent | 0
.../cpu35/cache/index1/ways_of_associativity | 1 +
.../cpu35/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu35/cache/index2/id | 1 +
.../system/cpu/cpu35/cache/index2/level | 1 +
.../cpu/cpu35/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu35/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu35/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu35/cache/index2/size | 1 +
.../system/cpu/cpu35/cache/index2/type | 1 +
.../system/cpu/cpu35/cache/index2/uevent | 0
.../cpu35/cache/index2/ways_of_associativity | 1 +
.../cpu35/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu35/cache/index3/id | 1 +
.../system/cpu/cpu35/cache/index3/level | 1 +
.../cpu/cpu35/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu35/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu35/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu35/cache/index3/size | 1 +
.../system/cpu/cpu35/cache/index3/type | 1 +
.../system/cpu/cpu35/cache/index3/uevent | 0
.../cpu35/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu35/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu35/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu35/online | 1 +
.../system/cpu/cpu35/topology/cluster_cpus | 1 +
.../cpu/cpu35/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu35/topology/cluster_id | 1 +
.../system/cpu/cpu35/topology/core_cpus | 1 +
.../system/cpu/cpu35/topology/core_cpus_list | 1 +
.../system/cpu/cpu35/topology/core_id | 1 +
.../system/cpu/cpu35/topology/core_siblings | 1 +
.../cpu/cpu35/topology/core_siblings_list | 1 +
.../system/cpu/cpu35/topology/die_cpus | 1 +
.../system/cpu/cpu35/topology/die_cpus_list | 1 +
.../system/cpu/cpu35/topology/die_id | 1 +
.../system/cpu/cpu35/topology/package_cpus | 1 +
.../cpu/cpu35/topology/package_cpus_list | 1 +
.../cpu/cpu35/topology/physical_package_id | 1 +
.../system/cpu/cpu35/topology/ppin | 1 +
.../system/cpu/cpu35/topology/thread_siblings | 1 +
.../cpu/cpu35/topology/thread_siblings_list | 1 +
.../cpu36/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu36/cache/index0/id | 1 +
.../system/cpu/cpu36/cache/index0/level | 1 +
.../cpu/cpu36/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu36/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu36/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu36/cache/index0/size | 1 +
.../system/cpu/cpu36/cache/index0/type | 1 +
.../system/cpu/cpu36/cache/index0/uevent | 0
.../cpu36/cache/index0/ways_of_associativity | 1 +
.../cpu36/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu36/cache/index1/id | 1 +
.../system/cpu/cpu36/cache/index1/level | 1 +
.../cpu/cpu36/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu36/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu36/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu36/cache/index1/size | 1 +
.../system/cpu/cpu36/cache/index1/type | 1 +
.../system/cpu/cpu36/cache/index1/uevent | 0
.../cpu36/cache/index1/ways_of_associativity | 1 +
.../cpu36/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu36/cache/index2/id | 1 +
.../system/cpu/cpu36/cache/index2/level | 1 +
.../cpu/cpu36/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu36/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu36/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu36/cache/index2/size | 1 +
.../system/cpu/cpu36/cache/index2/type | 1 +
.../system/cpu/cpu36/cache/index2/uevent | 0
.../cpu36/cache/index2/ways_of_associativity | 1 +
.../cpu36/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu36/cache/index3/id | 1 +
.../system/cpu/cpu36/cache/index3/level | 1 +
.../cpu/cpu36/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu36/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu36/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu36/cache/index3/size | 1 +
.../system/cpu/cpu36/cache/index3/type | 1 +
.../system/cpu/cpu36/cache/index3/uevent | 0
.../cpu36/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu36/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu36/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu36/online | 1 +
.../system/cpu/cpu36/topology/cluster_cpus | 1 +
.../cpu/cpu36/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu36/topology/cluster_id | 1 +
.../system/cpu/cpu36/topology/core_cpus | 1 +
.../system/cpu/cpu36/topology/core_cpus_list | 1 +
.../system/cpu/cpu36/topology/core_id | 1 +
.../system/cpu/cpu36/topology/core_siblings | 1 +
.../cpu/cpu36/topology/core_siblings_list | 1 +
.../system/cpu/cpu36/topology/die_cpus | 1 +
.../system/cpu/cpu36/topology/die_cpus_list | 1 +
.../system/cpu/cpu36/topology/die_id | 1 +
.../system/cpu/cpu36/topology/package_cpus | 1 +
.../cpu/cpu36/topology/package_cpus_list | 1 +
.../cpu/cpu36/topology/physical_package_id | 1 +
.../system/cpu/cpu36/topology/ppin | 1 +
.../system/cpu/cpu36/topology/thread_siblings | 1 +
.../cpu/cpu36/topology/thread_siblings_list | 1 +
.../cpu37/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu37/cache/index0/id | 1 +
.../system/cpu/cpu37/cache/index0/level | 1 +
.../cpu/cpu37/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu37/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu37/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu37/cache/index0/size | 1 +
.../system/cpu/cpu37/cache/index0/type | 1 +
.../system/cpu/cpu37/cache/index0/uevent | 0
.../cpu37/cache/index0/ways_of_associativity | 1 +
.../cpu37/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu37/cache/index1/id | 1 +
.../system/cpu/cpu37/cache/index1/level | 1 +
.../cpu/cpu37/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu37/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu37/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu37/cache/index1/size | 1 +
.../system/cpu/cpu37/cache/index1/type | 1 +
.../system/cpu/cpu37/cache/index1/uevent | 0
.../cpu37/cache/index1/ways_of_associativity | 1 +
.../cpu37/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu37/cache/index2/id | 1 +
.../system/cpu/cpu37/cache/index2/level | 1 +
.../cpu/cpu37/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu37/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu37/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu37/cache/index2/size | 1 +
.../system/cpu/cpu37/cache/index2/type | 1 +
.../system/cpu/cpu37/cache/index2/uevent | 0
.../cpu37/cache/index2/ways_of_associativity | 1 +
.../cpu37/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu37/cache/index3/id | 1 +
.../system/cpu/cpu37/cache/index3/level | 1 +
.../cpu/cpu37/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu37/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu37/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu37/cache/index3/size | 1 +
.../system/cpu/cpu37/cache/index3/type | 1 +
.../system/cpu/cpu37/cache/index3/uevent | 0
.../cpu37/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu37/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu37/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu37/online | 1 +
.../system/cpu/cpu37/topology/cluster_cpus | 1 +
.../cpu/cpu37/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu37/topology/cluster_id | 1 +
.../system/cpu/cpu37/topology/core_cpus | 1 +
.../system/cpu/cpu37/topology/core_cpus_list | 1 +
.../system/cpu/cpu37/topology/core_id | 1 +
.../system/cpu/cpu37/topology/core_siblings | 1 +
.../cpu/cpu37/topology/core_siblings_list | 1 +
.../system/cpu/cpu37/topology/die_cpus | 1 +
.../system/cpu/cpu37/topology/die_cpus_list | 1 +
.../system/cpu/cpu37/topology/die_id | 1 +
.../system/cpu/cpu37/topology/package_cpus | 1 +
.../cpu/cpu37/topology/package_cpus_list | 1 +
.../cpu/cpu37/topology/physical_package_id | 1 +
.../system/cpu/cpu37/topology/ppin | 1 +
.../system/cpu/cpu37/topology/thread_siblings | 1 +
.../cpu/cpu37/topology/thread_siblings_list | 1 +
.../cpu38/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu38/cache/index0/id | 1 +
.../system/cpu/cpu38/cache/index0/level | 1 +
.../cpu/cpu38/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu38/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu38/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu38/cache/index0/size | 1 +
.../system/cpu/cpu38/cache/index0/type | 1 +
.../system/cpu/cpu38/cache/index0/uevent | 0
.../cpu38/cache/index0/ways_of_associativity | 1 +
.../cpu38/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu38/cache/index1/id | 1 +
.../system/cpu/cpu38/cache/index1/level | 1 +
.../cpu/cpu38/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu38/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu38/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu38/cache/index1/size | 1 +
.../system/cpu/cpu38/cache/index1/type | 1 +
.../system/cpu/cpu38/cache/index1/uevent | 0
.../cpu38/cache/index1/ways_of_associativity | 1 +
.../cpu38/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu38/cache/index2/id | 1 +
.../system/cpu/cpu38/cache/index2/level | 1 +
.../cpu/cpu38/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu38/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu38/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu38/cache/index2/size | 1 +
.../system/cpu/cpu38/cache/index2/type | 1 +
.../system/cpu/cpu38/cache/index2/uevent | 0
.../cpu38/cache/index2/ways_of_associativity | 1 +
.../cpu38/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu38/cache/index3/id | 1 +
.../system/cpu/cpu38/cache/index3/level | 1 +
.../cpu/cpu38/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu38/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu38/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu38/cache/index3/size | 1 +
.../system/cpu/cpu38/cache/index3/type | 1 +
.../system/cpu/cpu38/cache/index3/uevent | 0
.../cpu38/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu38/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu38/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu38/online | 1 +
.../system/cpu/cpu38/topology/cluster_cpus | 1 +
.../cpu/cpu38/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu38/topology/cluster_id | 1 +
.../system/cpu/cpu38/topology/core_cpus | 1 +
.../system/cpu/cpu38/topology/core_cpus_list | 1 +
.../system/cpu/cpu38/topology/core_id | 1 +
.../system/cpu/cpu38/topology/core_siblings | 1 +
.../cpu/cpu38/topology/core_siblings_list | 1 +
.../system/cpu/cpu38/topology/die_cpus | 1 +
.../system/cpu/cpu38/topology/die_cpus_list | 1 +
.../system/cpu/cpu38/topology/die_id | 1 +
.../system/cpu/cpu38/topology/package_cpus | 1 +
.../cpu/cpu38/topology/package_cpus_list | 1 +
.../cpu/cpu38/topology/physical_package_id | 1 +
.../system/cpu/cpu38/topology/ppin | 1 +
.../system/cpu/cpu38/topology/thread_siblings | 1 +
.../cpu/cpu38/topology/thread_siblings_list | 1 +
.../cpu39/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu39/cache/index0/id | 1 +
.../system/cpu/cpu39/cache/index0/level | 1 +
.../cpu/cpu39/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu39/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu39/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu39/cache/index0/size | 1 +
.../system/cpu/cpu39/cache/index0/type | 1 +
.../system/cpu/cpu39/cache/index0/uevent | 0
.../cpu39/cache/index0/ways_of_associativity | 1 +
.../cpu39/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu39/cache/index1/id | 1 +
.../system/cpu/cpu39/cache/index1/level | 1 +
.../cpu/cpu39/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu39/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu39/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu39/cache/index1/size | 1 +
.../system/cpu/cpu39/cache/index1/type | 1 +
.../system/cpu/cpu39/cache/index1/uevent | 0
.../cpu39/cache/index1/ways_of_associativity | 1 +
.../cpu39/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu39/cache/index2/id | 1 +
.../system/cpu/cpu39/cache/index2/level | 1 +
.../cpu/cpu39/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu39/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu39/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu39/cache/index2/size | 1 +
.../system/cpu/cpu39/cache/index2/type | 1 +
.../system/cpu/cpu39/cache/index2/uevent | 0
.../cpu39/cache/index2/ways_of_associativity | 1 +
.../cpu39/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu39/cache/index3/id | 1 +
.../system/cpu/cpu39/cache/index3/level | 1 +
.../cpu/cpu39/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu39/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu39/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu39/cache/index3/size | 1 +
.../system/cpu/cpu39/cache/index3/type | 1 +
.../system/cpu/cpu39/cache/index3/uevent | 0
.../cpu39/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu39/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu39/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu39/online | 1 +
.../system/cpu/cpu39/topology/cluster_cpus | 1 +
.../cpu/cpu39/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu39/topology/cluster_id | 1 +
.../system/cpu/cpu39/topology/core_cpus | 1 +
.../system/cpu/cpu39/topology/core_cpus_list | 1 +
.../system/cpu/cpu39/topology/core_id | 1 +
.../system/cpu/cpu39/topology/core_siblings | 1 +
.../cpu/cpu39/topology/core_siblings_list | 1 +
.../system/cpu/cpu39/topology/die_cpus | 1 +
.../system/cpu/cpu39/topology/die_cpus_list | 1 +
.../system/cpu/cpu39/topology/die_id | 1 +
.../system/cpu/cpu39/topology/package_cpus | 1 +
.../cpu/cpu39/topology/package_cpus_list | 1 +
.../cpu/cpu39/topology/physical_package_id | 1 +
.../system/cpu/cpu39/topology/ppin | 1 +
.../system/cpu/cpu39/topology/thread_siblings | 1 +
.../cpu/cpu39/topology/thread_siblings_list | 1 +
.../cpu/cpu4/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu4/cache/index0/id | 1 +
.../system/cpu/cpu4/cache/index0/level | 1 +
.../cpu/cpu4/cache/index0/number_of_sets | 1 +
.../cpu4/cache/index0/physical_line_partition | 1 +
.../cpu/cpu4/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu4/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu4/cache/index0/size | 1 +
.../system/cpu/cpu4/cache/index0/type | 1 +
.../system/cpu/cpu4/cache/index0/uevent | 0
.../cpu4/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu4/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu4/cache/index1/id | 1 +
.../system/cpu/cpu4/cache/index1/level | 1 +
.../cpu/cpu4/cache/index1/number_of_sets | 1 +
.../cpu4/cache/index1/physical_line_partition | 1 +
.../cpu/cpu4/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu4/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu4/cache/index1/size | 1 +
.../system/cpu/cpu4/cache/index1/type | 1 +
.../system/cpu/cpu4/cache/index1/uevent | 0
.../cpu4/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu4/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu4/cache/index2/id | 1 +
.../system/cpu/cpu4/cache/index2/level | 1 +
.../cpu/cpu4/cache/index2/number_of_sets | 1 +
.../cpu4/cache/index2/physical_line_partition | 1 +
.../cpu/cpu4/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu4/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu4/cache/index2/size | 1 +
.../system/cpu/cpu4/cache/index2/type | 1 +
.../system/cpu/cpu4/cache/index2/uevent | 0
.../cpu4/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu4/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu4/cache/index3/id | 1 +
.../system/cpu/cpu4/cache/index3/level | 1 +
.../cpu/cpu4/cache/index3/number_of_sets | 1 +
.../cpu4/cache/index3/physical_line_partition | 1 +
.../cpu/cpu4/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu4/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu4/cache/index3/size | 1 +
.../system/cpu/cpu4/cache/index3/type | 1 +
.../system/cpu/cpu4/cache/index3/uevent | 0
.../cpu4/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu4/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu4/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu4/online | 1 +
.../system/cpu/cpu4/topology/cluster_cpus | 1 +
.../cpu/cpu4/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu4/topology/cluster_id | 1 +
.../system/cpu/cpu4/topology/core_cpus | 1 +
.../system/cpu/cpu4/topology/core_cpus_list | 1 +
.../system/cpu/cpu4/topology/core_id | 1 +
.../system/cpu/cpu4/topology/core_siblings | 1 +
.../cpu/cpu4/topology/core_siblings_list | 1 +
.../system/cpu/cpu4/topology/die_cpus | 1 +
.../system/cpu/cpu4/topology/die_cpus_list | 1 +
.../system/cpu/cpu4/topology/die_id | 1 +
.../system/cpu/cpu4/topology/package_cpus | 1 +
.../cpu/cpu4/topology/package_cpus_list | 1 +
.../cpu/cpu4/topology/physical_package_id | 1 +
.../system/cpu/cpu4/topology/ppin | 1 +
.../system/cpu/cpu4/topology/thread_siblings | 1 +
.../cpu/cpu4/topology/thread_siblings_list | 1 +
.../cpu40/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu40/cache/index0/id | 1 +
.../system/cpu/cpu40/cache/index0/level | 1 +
.../cpu/cpu40/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu40/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu40/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu40/cache/index0/size | 1 +
.../system/cpu/cpu40/cache/index0/type | 1 +
.../system/cpu/cpu40/cache/index0/uevent | 0
.../cpu40/cache/index0/ways_of_associativity | 1 +
.../cpu40/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu40/cache/index1/id | 1 +
.../system/cpu/cpu40/cache/index1/level | 1 +
.../cpu/cpu40/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu40/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu40/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu40/cache/index1/size | 1 +
.../system/cpu/cpu40/cache/index1/type | 1 +
.../system/cpu/cpu40/cache/index1/uevent | 0
.../cpu40/cache/index1/ways_of_associativity | 1 +
.../cpu40/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu40/cache/index2/id | 1 +
.../system/cpu/cpu40/cache/index2/level | 1 +
.../cpu/cpu40/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu40/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu40/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu40/cache/index2/size | 1 +
.../system/cpu/cpu40/cache/index2/type | 1 +
.../system/cpu/cpu40/cache/index2/uevent | 0
.../cpu40/cache/index2/ways_of_associativity | 1 +
.../cpu40/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu40/cache/index3/id | 1 +
.../system/cpu/cpu40/cache/index3/level | 1 +
.../cpu/cpu40/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu40/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu40/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu40/cache/index3/size | 1 +
.../system/cpu/cpu40/cache/index3/type | 1 +
.../system/cpu/cpu40/cache/index3/uevent | 0
.../cpu40/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu40/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu40/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu40/online | 1 +
.../system/cpu/cpu40/topology/cluster_cpus | 1 +
.../cpu/cpu40/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu40/topology/cluster_id | 1 +
.../system/cpu/cpu40/topology/core_cpus | 1 +
.../system/cpu/cpu40/topology/core_cpus_list | 1 +
.../system/cpu/cpu40/topology/core_id | 1 +
.../system/cpu/cpu40/topology/core_siblings | 1 +
.../cpu/cpu40/topology/core_siblings_list | 1 +
.../system/cpu/cpu40/topology/die_cpus | 1 +
.../system/cpu/cpu40/topology/die_cpus_list | 1 +
.../system/cpu/cpu40/topology/die_id | 1 +
.../system/cpu/cpu40/topology/package_cpus | 1 +
.../cpu/cpu40/topology/package_cpus_list | 1 +
.../cpu/cpu40/topology/physical_package_id | 1 +
.../system/cpu/cpu40/topology/ppin | 1 +
.../system/cpu/cpu40/topology/thread_siblings | 1 +
.../cpu/cpu40/topology/thread_siblings_list | 1 +
.../cpu41/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu41/cache/index0/id | 1 +
.../system/cpu/cpu41/cache/index0/level | 1 +
.../cpu/cpu41/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu41/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu41/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu41/cache/index0/size | 1 +
.../system/cpu/cpu41/cache/index0/type | 1 +
.../system/cpu/cpu41/cache/index0/uevent | 0
.../cpu41/cache/index0/ways_of_associativity | 1 +
.../cpu41/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu41/cache/index1/id | 1 +
.../system/cpu/cpu41/cache/index1/level | 1 +
.../cpu/cpu41/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu41/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu41/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu41/cache/index1/size | 1 +
.../system/cpu/cpu41/cache/index1/type | 1 +
.../system/cpu/cpu41/cache/index1/uevent | 0
.../cpu41/cache/index1/ways_of_associativity | 1 +
.../cpu41/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu41/cache/index2/id | 1 +
.../system/cpu/cpu41/cache/index2/level | 1 +
.../cpu/cpu41/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu41/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu41/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu41/cache/index2/size | 1 +
.../system/cpu/cpu41/cache/index2/type | 1 +
.../system/cpu/cpu41/cache/index2/uevent | 0
.../cpu41/cache/index2/ways_of_associativity | 1 +
.../cpu41/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu41/cache/index3/id | 1 +
.../system/cpu/cpu41/cache/index3/level | 1 +
.../cpu/cpu41/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu41/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu41/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu41/cache/index3/size | 1 +
.../system/cpu/cpu41/cache/index3/type | 1 +
.../system/cpu/cpu41/cache/index3/uevent | 0
.../cpu41/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu41/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu41/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu41/online | 1 +
.../system/cpu/cpu41/topology/cluster_cpus | 1 +
.../cpu/cpu41/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu41/topology/cluster_id | 1 +
.../system/cpu/cpu41/topology/core_cpus | 1 +
.../system/cpu/cpu41/topology/core_cpus_list | 1 +
.../system/cpu/cpu41/topology/core_id | 1 +
.../system/cpu/cpu41/topology/core_siblings | 1 +
.../cpu/cpu41/topology/core_siblings_list | 1 +
.../system/cpu/cpu41/topology/die_cpus | 1 +
.../system/cpu/cpu41/topology/die_cpus_list | 1 +
.../system/cpu/cpu41/topology/die_id | 1 +
.../system/cpu/cpu41/topology/package_cpus | 1 +
.../cpu/cpu41/topology/package_cpus_list | 1 +
.../cpu/cpu41/topology/physical_package_id | 1 +
.../system/cpu/cpu41/topology/ppin | 1 +
.../system/cpu/cpu41/topology/thread_siblings | 1 +
.../cpu/cpu41/topology/thread_siblings_list | 1 +
.../cpu42/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu42/cache/index0/id | 1 +
.../system/cpu/cpu42/cache/index0/level | 1 +
.../cpu/cpu42/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu42/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu42/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu42/cache/index0/size | 1 +
.../system/cpu/cpu42/cache/index0/type | 1 +
.../system/cpu/cpu42/cache/index0/uevent | 0
.../cpu42/cache/index0/ways_of_associativity | 1 +
.../cpu42/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu42/cache/index1/id | 1 +
.../system/cpu/cpu42/cache/index1/level | 1 +
.../cpu/cpu42/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu42/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu42/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu42/cache/index1/size | 1 +
.../system/cpu/cpu42/cache/index1/type | 1 +
.../system/cpu/cpu42/cache/index1/uevent | 0
.../cpu42/cache/index1/ways_of_associativity | 1 +
.../cpu42/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu42/cache/index2/id | 1 +
.../system/cpu/cpu42/cache/index2/level | 1 +
.../cpu/cpu42/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu42/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu42/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu42/cache/index2/size | 1 +
.../system/cpu/cpu42/cache/index2/type | 1 +
.../system/cpu/cpu42/cache/index2/uevent | 0
.../cpu42/cache/index2/ways_of_associativity | 1 +
.../cpu42/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu42/cache/index3/id | 1 +
.../system/cpu/cpu42/cache/index3/level | 1 +
.../cpu/cpu42/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu42/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu42/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu42/cache/index3/size | 1 +
.../system/cpu/cpu42/cache/index3/type | 1 +
.../system/cpu/cpu42/cache/index3/uevent | 0
.../cpu42/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu42/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu42/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu42/online | 1 +
.../system/cpu/cpu42/topology/cluster_cpus | 1 +
.../cpu/cpu42/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu42/topology/cluster_id | 1 +
.../system/cpu/cpu42/topology/core_cpus | 1 +
.../system/cpu/cpu42/topology/core_cpus_list | 1 +
.../system/cpu/cpu42/topology/core_id | 1 +
.../system/cpu/cpu42/topology/core_siblings | 1 +
.../cpu/cpu42/topology/core_siblings_list | 1 +
.../system/cpu/cpu42/topology/die_cpus | 1 +
.../system/cpu/cpu42/topology/die_cpus_list | 1 +
.../system/cpu/cpu42/topology/die_id | 1 +
.../system/cpu/cpu42/topology/package_cpus | 1 +
.../cpu/cpu42/topology/package_cpus_list | 1 +
.../cpu/cpu42/topology/physical_package_id | 1 +
.../system/cpu/cpu42/topology/ppin | 1 +
.../system/cpu/cpu42/topology/thread_siblings | 1 +
.../cpu/cpu42/topology/thread_siblings_list | 1 +
.../cpu43/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu43/cache/index0/id | 1 +
.../system/cpu/cpu43/cache/index0/level | 1 +
.../cpu/cpu43/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu43/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu43/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu43/cache/index0/size | 1 +
.../system/cpu/cpu43/cache/index0/type | 1 +
.../system/cpu/cpu43/cache/index0/uevent | 0
.../cpu43/cache/index0/ways_of_associativity | 1 +
.../cpu43/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu43/cache/index1/id | 1 +
.../system/cpu/cpu43/cache/index1/level | 1 +
.../cpu/cpu43/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu43/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu43/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu43/cache/index1/size | 1 +
.../system/cpu/cpu43/cache/index1/type | 1 +
.../system/cpu/cpu43/cache/index1/uevent | 0
.../cpu43/cache/index1/ways_of_associativity | 1 +
.../cpu43/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu43/cache/index2/id | 1 +
.../system/cpu/cpu43/cache/index2/level | 1 +
.../cpu/cpu43/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu43/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu43/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu43/cache/index2/size | 1 +
.../system/cpu/cpu43/cache/index2/type | 1 +
.../system/cpu/cpu43/cache/index2/uevent | 0
.../cpu43/cache/index2/ways_of_associativity | 1 +
.../cpu43/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu43/cache/index3/id | 1 +
.../system/cpu/cpu43/cache/index3/level | 1 +
.../cpu/cpu43/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu43/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu43/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu43/cache/index3/size | 1 +
.../system/cpu/cpu43/cache/index3/type | 1 +
.../system/cpu/cpu43/cache/index3/uevent | 0
.../cpu43/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu43/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu43/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu43/online | 1 +
.../system/cpu/cpu43/topology/cluster_cpus | 1 +
.../cpu/cpu43/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu43/topology/cluster_id | 1 +
.../system/cpu/cpu43/topology/core_cpus | 1 +
.../system/cpu/cpu43/topology/core_cpus_list | 1 +
.../system/cpu/cpu43/topology/core_id | 1 +
.../system/cpu/cpu43/topology/core_siblings | 1 +
.../cpu/cpu43/topology/core_siblings_list | 1 +
.../system/cpu/cpu43/topology/die_cpus | 1 +
.../system/cpu/cpu43/topology/die_cpus_list | 1 +
.../system/cpu/cpu43/topology/die_id | 1 +
.../system/cpu/cpu43/topology/package_cpus | 1 +
.../cpu/cpu43/topology/package_cpus_list | 1 +
.../cpu/cpu43/topology/physical_package_id | 1 +
.../system/cpu/cpu43/topology/ppin | 1 +
.../system/cpu/cpu43/topology/thread_siblings | 1 +
.../cpu/cpu43/topology/thread_siblings_list | 1 +
.../cpu44/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu44/cache/index0/id | 1 +
.../system/cpu/cpu44/cache/index0/level | 1 +
.../cpu/cpu44/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu44/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu44/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu44/cache/index0/size | 1 +
.../system/cpu/cpu44/cache/index0/type | 1 +
.../system/cpu/cpu44/cache/index0/uevent | 0
.../cpu44/cache/index0/ways_of_associativity | 1 +
.../cpu44/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu44/cache/index1/id | 1 +
.../system/cpu/cpu44/cache/index1/level | 1 +
.../cpu/cpu44/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu44/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu44/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu44/cache/index1/size | 1 +
.../system/cpu/cpu44/cache/index1/type | 1 +
.../system/cpu/cpu44/cache/index1/uevent | 0
.../cpu44/cache/index1/ways_of_associativity | 1 +
.../cpu44/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu44/cache/index2/id | 1 +
.../system/cpu/cpu44/cache/index2/level | 1 +
.../cpu/cpu44/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu44/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu44/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu44/cache/index2/size | 1 +
.../system/cpu/cpu44/cache/index2/type | 1 +
.../system/cpu/cpu44/cache/index2/uevent | 0
.../cpu44/cache/index2/ways_of_associativity | 1 +
.../cpu44/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu44/cache/index3/id | 1 +
.../system/cpu/cpu44/cache/index3/level | 1 +
.../cpu/cpu44/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu44/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu44/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu44/cache/index3/size | 1 +
.../system/cpu/cpu44/cache/index3/type | 1 +
.../system/cpu/cpu44/cache/index3/uevent | 0
.../cpu44/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu44/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu44/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu44/online | 1 +
.../system/cpu/cpu44/topology/cluster_cpus | 1 +
.../cpu/cpu44/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu44/topology/cluster_id | 1 +
.../system/cpu/cpu44/topology/core_cpus | 1 +
.../system/cpu/cpu44/topology/core_cpus_list | 1 +
.../system/cpu/cpu44/topology/core_id | 1 +
.../system/cpu/cpu44/topology/core_siblings | 1 +
.../cpu/cpu44/topology/core_siblings_list | 1 +
.../system/cpu/cpu44/topology/die_cpus | 1 +
.../system/cpu/cpu44/topology/die_cpus_list | 1 +
.../system/cpu/cpu44/topology/die_id | 1 +
.../system/cpu/cpu44/topology/package_cpus | 1 +
.../cpu/cpu44/topology/package_cpus_list | 1 +
.../cpu/cpu44/topology/physical_package_id | 1 +
.../system/cpu/cpu44/topology/ppin | 1 +
.../system/cpu/cpu44/topology/thread_siblings | 1 +
.../cpu/cpu44/topology/thread_siblings_list | 1 +
.../cpu45/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu45/cache/index0/id | 1 +
.../system/cpu/cpu45/cache/index0/level | 1 +
.../cpu/cpu45/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu45/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu45/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu45/cache/index0/size | 1 +
.../system/cpu/cpu45/cache/index0/type | 1 +
.../system/cpu/cpu45/cache/index0/uevent | 0
.../cpu45/cache/index0/ways_of_associativity | 1 +
.../cpu45/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu45/cache/index1/id | 1 +
.../system/cpu/cpu45/cache/index1/level | 1 +
.../cpu/cpu45/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu45/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu45/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu45/cache/index1/size | 1 +
.../system/cpu/cpu45/cache/index1/type | 1 +
.../system/cpu/cpu45/cache/index1/uevent | 0
.../cpu45/cache/index1/ways_of_associativity | 1 +
.../cpu45/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu45/cache/index2/id | 1 +
.../system/cpu/cpu45/cache/index2/level | 1 +
.../cpu/cpu45/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu45/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu45/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu45/cache/index2/size | 1 +
.../system/cpu/cpu45/cache/index2/type | 1 +
.../system/cpu/cpu45/cache/index2/uevent | 0
.../cpu45/cache/index2/ways_of_associativity | 1 +
.../cpu45/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu45/cache/index3/id | 1 +
.../system/cpu/cpu45/cache/index3/level | 1 +
.../cpu/cpu45/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu45/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu45/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu45/cache/index3/size | 1 +
.../system/cpu/cpu45/cache/index3/type | 1 +
.../system/cpu/cpu45/cache/index3/uevent | 0
.../cpu45/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu45/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu45/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu45/online | 1 +
.../system/cpu/cpu45/topology/cluster_cpus | 1 +
.../cpu/cpu45/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu45/topology/cluster_id | 1 +
.../system/cpu/cpu45/topology/core_cpus | 1 +
.../system/cpu/cpu45/topology/core_cpus_list | 1 +
.../system/cpu/cpu45/topology/core_id | 1 +
.../system/cpu/cpu45/topology/core_siblings | 1 +
.../cpu/cpu45/topology/core_siblings_list | 1 +
.../system/cpu/cpu45/topology/die_cpus | 1 +
.../system/cpu/cpu45/topology/die_cpus_list | 1 +
.../system/cpu/cpu45/topology/die_id | 1 +
.../system/cpu/cpu45/topology/package_cpus | 1 +
.../cpu/cpu45/topology/package_cpus_list | 1 +
.../cpu/cpu45/topology/physical_package_id | 1 +
.../system/cpu/cpu45/topology/ppin | 1 +
.../system/cpu/cpu45/topology/thread_siblings | 1 +
.../cpu/cpu45/topology/thread_siblings_list | 1 +
.../cpu46/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu46/cache/index0/id | 1 +
.../system/cpu/cpu46/cache/index0/level | 1 +
.../cpu/cpu46/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu46/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu46/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu46/cache/index0/size | 1 +
.../system/cpu/cpu46/cache/index0/type | 1 +
.../system/cpu/cpu46/cache/index0/uevent | 0
.../cpu46/cache/index0/ways_of_associativity | 1 +
.../cpu46/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu46/cache/index1/id | 1 +
.../system/cpu/cpu46/cache/index1/level | 1 +
.../cpu/cpu46/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu46/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu46/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu46/cache/index1/size | 1 +
.../system/cpu/cpu46/cache/index1/type | 1 +
.../system/cpu/cpu46/cache/index1/uevent | 0
.../cpu46/cache/index1/ways_of_associativity | 1 +
.../cpu46/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu46/cache/index2/id | 1 +
.../system/cpu/cpu46/cache/index2/level | 1 +
.../cpu/cpu46/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu46/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu46/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu46/cache/index2/size | 1 +
.../system/cpu/cpu46/cache/index2/type | 1 +
.../system/cpu/cpu46/cache/index2/uevent | 0
.../cpu46/cache/index2/ways_of_associativity | 1 +
.../cpu46/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu46/cache/index3/id | 1 +
.../system/cpu/cpu46/cache/index3/level | 1 +
.../cpu/cpu46/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu46/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu46/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu46/cache/index3/size | 1 +
.../system/cpu/cpu46/cache/index3/type | 1 +
.../system/cpu/cpu46/cache/index3/uevent | 0
.../cpu46/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu46/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu46/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu46/online | 1 +
.../system/cpu/cpu46/topology/cluster_cpus | 1 +
.../cpu/cpu46/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu46/topology/cluster_id | 1 +
.../system/cpu/cpu46/topology/core_cpus | 1 +
.../system/cpu/cpu46/topology/core_cpus_list | 1 +
.../system/cpu/cpu46/topology/core_id | 1 +
.../system/cpu/cpu46/topology/core_siblings | 1 +
.../cpu/cpu46/topology/core_siblings_list | 1 +
.../system/cpu/cpu46/topology/die_cpus | 1 +
.../system/cpu/cpu46/topology/die_cpus_list | 1 +
.../system/cpu/cpu46/topology/die_id | 1 +
.../system/cpu/cpu46/topology/package_cpus | 1 +
.../cpu/cpu46/topology/package_cpus_list | 1 +
.../cpu/cpu46/topology/physical_package_id | 1 +
.../system/cpu/cpu46/topology/ppin | 1 +
.../system/cpu/cpu46/topology/thread_siblings | 1 +
.../cpu/cpu46/topology/thread_siblings_list | 1 +
.../cpu47/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu47/cache/index0/id | 1 +
.../system/cpu/cpu47/cache/index0/level | 1 +
.../cpu/cpu47/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu47/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu47/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu47/cache/index0/size | 1 +
.../system/cpu/cpu47/cache/index0/type | 1 +
.../system/cpu/cpu47/cache/index0/uevent | 0
.../cpu47/cache/index0/ways_of_associativity | 1 +
.../cpu47/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu47/cache/index1/id | 1 +
.../system/cpu/cpu47/cache/index1/level | 1 +
.../cpu/cpu47/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu47/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu47/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu47/cache/index1/size | 1 +
.../system/cpu/cpu47/cache/index1/type | 1 +
.../system/cpu/cpu47/cache/index1/uevent | 0
.../cpu47/cache/index1/ways_of_associativity | 1 +
.../cpu47/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu47/cache/index2/id | 1 +
.../system/cpu/cpu47/cache/index2/level | 1 +
.../cpu/cpu47/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu47/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu47/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu47/cache/index2/size | 1 +
.../system/cpu/cpu47/cache/index2/type | 1 +
.../system/cpu/cpu47/cache/index2/uevent | 0
.../cpu47/cache/index2/ways_of_associativity | 1 +
.../cpu47/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu47/cache/index3/id | 1 +
.../system/cpu/cpu47/cache/index3/level | 1 +
.../cpu/cpu47/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu47/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu47/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu47/cache/index3/size | 1 +
.../system/cpu/cpu47/cache/index3/type | 1 +
.../system/cpu/cpu47/cache/index3/uevent | 0
.../cpu47/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu47/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu47/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu47/online | 1 +
.../system/cpu/cpu47/topology/cluster_cpus | 1 +
.../cpu/cpu47/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu47/topology/cluster_id | 1 +
.../system/cpu/cpu47/topology/core_cpus | 1 +
.../system/cpu/cpu47/topology/core_cpus_list | 1 +
.../system/cpu/cpu47/topology/core_id | 1 +
.../system/cpu/cpu47/topology/core_siblings | 1 +
.../cpu/cpu47/topology/core_siblings_list | 1 +
.../system/cpu/cpu47/topology/die_cpus | 1 +
.../system/cpu/cpu47/topology/die_cpus_list | 1 +
.../system/cpu/cpu47/topology/die_id | 1 +
.../system/cpu/cpu47/topology/package_cpus | 1 +
.../cpu/cpu47/topology/package_cpus_list | 1 +
.../cpu/cpu47/topology/physical_package_id | 1 +
.../system/cpu/cpu47/topology/ppin | 1 +
.../system/cpu/cpu47/topology/thread_siblings | 1 +
.../cpu/cpu47/topology/thread_siblings_list | 1 +
.../cpu48/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu48/cache/index0/id | 1 +
.../system/cpu/cpu48/cache/index0/level | 1 +
.../cpu/cpu48/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu48/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu48/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu48/cache/index0/size | 1 +
.../system/cpu/cpu48/cache/index0/type | 1 +
.../system/cpu/cpu48/cache/index0/uevent | 0
.../cpu48/cache/index0/ways_of_associativity | 1 +
.../cpu48/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu48/cache/index1/id | 1 +
.../system/cpu/cpu48/cache/index1/level | 1 +
.../cpu/cpu48/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu48/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu48/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu48/cache/index1/size | 1 +
.../system/cpu/cpu48/cache/index1/type | 1 +
.../system/cpu/cpu48/cache/index1/uevent | 0
.../cpu48/cache/index1/ways_of_associativity | 1 +
.../cpu48/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu48/cache/index2/id | 1 +
.../system/cpu/cpu48/cache/index2/level | 1 +
.../cpu/cpu48/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu48/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu48/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu48/cache/index2/size | 1 +
.../system/cpu/cpu48/cache/index2/type | 1 +
.../system/cpu/cpu48/cache/index2/uevent | 0
.../cpu48/cache/index2/ways_of_associativity | 1 +
.../cpu48/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu48/cache/index3/id | 1 +
.../system/cpu/cpu48/cache/index3/level | 1 +
.../cpu/cpu48/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu48/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu48/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu48/cache/index3/size | 1 +
.../system/cpu/cpu48/cache/index3/type | 1 +
.../system/cpu/cpu48/cache/index3/uevent | 0
.../cpu48/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu48/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu48/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu48/online | 1 +
.../system/cpu/cpu48/topology/cluster_cpus | 1 +
.../cpu/cpu48/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu48/topology/cluster_id | 1 +
.../system/cpu/cpu48/topology/core_cpus | 1 +
.../system/cpu/cpu48/topology/core_cpus_list | 1 +
.../system/cpu/cpu48/topology/core_id | 1 +
.../system/cpu/cpu48/topology/core_siblings | 1 +
.../cpu/cpu48/topology/core_siblings_list | 1 +
.../system/cpu/cpu48/topology/die_cpus | 1 +
.../system/cpu/cpu48/topology/die_cpus_list | 1 +
.../system/cpu/cpu48/topology/die_id | 1 +
.../system/cpu/cpu48/topology/package_cpus | 1 +
.../cpu/cpu48/topology/package_cpus_list | 1 +
.../cpu/cpu48/topology/physical_package_id | 1 +
.../system/cpu/cpu48/topology/ppin | 1 +
.../system/cpu/cpu48/topology/thread_siblings | 1 +
.../cpu/cpu48/topology/thread_siblings_list | 1 +
.../cpu49/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu49/cache/index0/id | 1 +
.../system/cpu/cpu49/cache/index0/level | 1 +
.../cpu/cpu49/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu49/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu49/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu49/cache/index0/size | 1 +
.../system/cpu/cpu49/cache/index0/type | 1 +
.../system/cpu/cpu49/cache/index0/uevent | 0
.../cpu49/cache/index0/ways_of_associativity | 1 +
.../cpu49/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu49/cache/index1/id | 1 +
.../system/cpu/cpu49/cache/index1/level | 1 +
.../cpu/cpu49/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu49/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu49/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu49/cache/index1/size | 1 +
.../system/cpu/cpu49/cache/index1/type | 1 +
.../system/cpu/cpu49/cache/index1/uevent | 0
.../cpu49/cache/index1/ways_of_associativity | 1 +
.../cpu49/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu49/cache/index2/id | 1 +
.../system/cpu/cpu49/cache/index2/level | 1 +
.../cpu/cpu49/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu49/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu49/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu49/cache/index2/size | 1 +
.../system/cpu/cpu49/cache/index2/type | 1 +
.../system/cpu/cpu49/cache/index2/uevent | 0
.../cpu49/cache/index2/ways_of_associativity | 1 +
.../cpu49/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu49/cache/index3/id | 1 +
.../system/cpu/cpu49/cache/index3/level | 1 +
.../cpu/cpu49/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu49/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu49/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu49/cache/index3/size | 1 +
.../system/cpu/cpu49/cache/index3/type | 1 +
.../system/cpu/cpu49/cache/index3/uevent | 0
.../cpu49/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu49/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu49/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu49/online | 1 +
.../system/cpu/cpu49/topology/cluster_cpus | 1 +
.../cpu/cpu49/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu49/topology/cluster_id | 1 +
.../system/cpu/cpu49/topology/core_cpus | 1 +
.../system/cpu/cpu49/topology/core_cpus_list | 1 +
.../system/cpu/cpu49/topology/core_id | 1 +
.../system/cpu/cpu49/topology/core_siblings | 1 +
.../cpu/cpu49/topology/core_siblings_list | 1 +
.../system/cpu/cpu49/topology/die_cpus | 1 +
.../system/cpu/cpu49/topology/die_cpus_list | 1 +
.../system/cpu/cpu49/topology/die_id | 1 +
.../system/cpu/cpu49/topology/package_cpus | 1 +
.../cpu/cpu49/topology/package_cpus_list | 1 +
.../cpu/cpu49/topology/physical_package_id | 1 +
.../system/cpu/cpu49/topology/ppin | 1 +
.../system/cpu/cpu49/topology/thread_siblings | 1 +
.../cpu/cpu49/topology/thread_siblings_list | 1 +
.../cpu/cpu5/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu5/cache/index0/id | 1 +
.../system/cpu/cpu5/cache/index0/level | 1 +
.../cpu/cpu5/cache/index0/number_of_sets | 1 +
.../cpu5/cache/index0/physical_line_partition | 1 +
.../cpu/cpu5/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu5/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu5/cache/index0/size | 1 +
.../system/cpu/cpu5/cache/index0/type | 1 +
.../system/cpu/cpu5/cache/index0/uevent | 0
.../cpu5/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu5/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu5/cache/index1/id | 1 +
.../system/cpu/cpu5/cache/index1/level | 1 +
.../cpu/cpu5/cache/index1/number_of_sets | 1 +
.../cpu5/cache/index1/physical_line_partition | 1 +
.../cpu/cpu5/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu5/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu5/cache/index1/size | 1 +
.../system/cpu/cpu5/cache/index1/type | 1 +
.../system/cpu/cpu5/cache/index1/uevent | 0
.../cpu5/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu5/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu5/cache/index2/id | 1 +
.../system/cpu/cpu5/cache/index2/level | 1 +
.../cpu/cpu5/cache/index2/number_of_sets | 1 +
.../cpu5/cache/index2/physical_line_partition | 1 +
.../cpu/cpu5/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu5/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu5/cache/index2/size | 1 +
.../system/cpu/cpu5/cache/index2/type | 1 +
.../system/cpu/cpu5/cache/index2/uevent | 0
.../cpu5/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu5/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu5/cache/index3/id | 1 +
.../system/cpu/cpu5/cache/index3/level | 1 +
.../cpu/cpu5/cache/index3/number_of_sets | 1 +
.../cpu5/cache/index3/physical_line_partition | 1 +
.../cpu/cpu5/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu5/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu5/cache/index3/size | 1 +
.../system/cpu/cpu5/cache/index3/type | 1 +
.../system/cpu/cpu5/cache/index3/uevent | 0
.../cpu5/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu5/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu5/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu5/online | 1 +
.../system/cpu/cpu5/topology/cluster_cpus | 1 +
.../cpu/cpu5/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu5/topology/cluster_id | 1 +
.../system/cpu/cpu5/topology/core_cpus | 1 +
.../system/cpu/cpu5/topology/core_cpus_list | 1 +
.../system/cpu/cpu5/topology/core_id | 1 +
.../system/cpu/cpu5/topology/core_siblings | 1 +
.../cpu/cpu5/topology/core_siblings_list | 1 +
.../system/cpu/cpu5/topology/die_cpus | 1 +
.../system/cpu/cpu5/topology/die_cpus_list | 1 +
.../system/cpu/cpu5/topology/die_id | 1 +
.../system/cpu/cpu5/topology/package_cpus | 1 +
.../cpu/cpu5/topology/package_cpus_list | 1 +
.../cpu/cpu5/topology/physical_package_id | 1 +
.../system/cpu/cpu5/topology/ppin | 1 +
.../system/cpu/cpu5/topology/thread_siblings | 1 +
.../cpu/cpu5/topology/thread_siblings_list | 1 +
.../cpu50/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu50/cache/index0/id | 1 +
.../system/cpu/cpu50/cache/index0/level | 1 +
.../cpu/cpu50/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu50/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu50/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu50/cache/index0/size | 1 +
.../system/cpu/cpu50/cache/index0/type | 1 +
.../system/cpu/cpu50/cache/index0/uevent | 0
.../cpu50/cache/index0/ways_of_associativity | 1 +
.../cpu50/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu50/cache/index1/id | 1 +
.../system/cpu/cpu50/cache/index1/level | 1 +
.../cpu/cpu50/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu50/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu50/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu50/cache/index1/size | 1 +
.../system/cpu/cpu50/cache/index1/type | 1 +
.../system/cpu/cpu50/cache/index1/uevent | 0
.../cpu50/cache/index1/ways_of_associativity | 1 +
.../cpu50/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu50/cache/index2/id | 1 +
.../system/cpu/cpu50/cache/index2/level | 1 +
.../cpu/cpu50/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu50/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu50/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu50/cache/index2/size | 1 +
.../system/cpu/cpu50/cache/index2/type | 1 +
.../system/cpu/cpu50/cache/index2/uevent | 0
.../cpu50/cache/index2/ways_of_associativity | 1 +
.../cpu50/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu50/cache/index3/id | 1 +
.../system/cpu/cpu50/cache/index3/level | 1 +
.../cpu/cpu50/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu50/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu50/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu50/cache/index3/size | 1 +
.../system/cpu/cpu50/cache/index3/type | 1 +
.../system/cpu/cpu50/cache/index3/uevent | 0
.../cpu50/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu50/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu50/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu50/online | 1 +
.../system/cpu/cpu50/topology/cluster_cpus | 1 +
.../cpu/cpu50/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu50/topology/cluster_id | 1 +
.../system/cpu/cpu50/topology/core_cpus | 1 +
.../system/cpu/cpu50/topology/core_cpus_list | 1 +
.../system/cpu/cpu50/topology/core_id | 1 +
.../system/cpu/cpu50/topology/core_siblings | 1 +
.../cpu/cpu50/topology/core_siblings_list | 1 +
.../system/cpu/cpu50/topology/die_cpus | 1 +
.../system/cpu/cpu50/topology/die_cpus_list | 1 +
.../system/cpu/cpu50/topology/die_id | 1 +
.../system/cpu/cpu50/topology/package_cpus | 1 +
.../cpu/cpu50/topology/package_cpus_list | 1 +
.../cpu/cpu50/topology/physical_package_id | 1 +
.../system/cpu/cpu50/topology/ppin | 1 +
.../system/cpu/cpu50/topology/thread_siblings | 1 +
.../cpu/cpu50/topology/thread_siblings_list | 1 +
.../cpu51/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu51/cache/index0/id | 1 +
.../system/cpu/cpu51/cache/index0/level | 1 +
.../cpu/cpu51/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu51/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu51/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu51/cache/index0/size | 1 +
.../system/cpu/cpu51/cache/index0/type | 1 +
.../system/cpu/cpu51/cache/index0/uevent | 0
.../cpu51/cache/index0/ways_of_associativity | 1 +
.../cpu51/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu51/cache/index1/id | 1 +
.../system/cpu/cpu51/cache/index1/level | 1 +
.../cpu/cpu51/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu51/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu51/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu51/cache/index1/size | 1 +
.../system/cpu/cpu51/cache/index1/type | 1 +
.../system/cpu/cpu51/cache/index1/uevent | 0
.../cpu51/cache/index1/ways_of_associativity | 1 +
.../cpu51/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu51/cache/index2/id | 1 +
.../system/cpu/cpu51/cache/index2/level | 1 +
.../cpu/cpu51/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu51/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu51/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu51/cache/index2/size | 1 +
.../system/cpu/cpu51/cache/index2/type | 1 +
.../system/cpu/cpu51/cache/index2/uevent | 0
.../cpu51/cache/index2/ways_of_associativity | 1 +
.../cpu51/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu51/cache/index3/id | 1 +
.../system/cpu/cpu51/cache/index3/level | 1 +
.../cpu/cpu51/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu51/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu51/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu51/cache/index3/size | 1 +
.../system/cpu/cpu51/cache/index3/type | 1 +
.../system/cpu/cpu51/cache/index3/uevent | 0
.../cpu51/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu51/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu51/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu51/online | 1 +
.../system/cpu/cpu51/topology/cluster_cpus | 1 +
.../cpu/cpu51/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu51/topology/cluster_id | 1 +
.../system/cpu/cpu51/topology/core_cpus | 1 +
.../system/cpu/cpu51/topology/core_cpus_list | 1 +
.../system/cpu/cpu51/topology/core_id | 1 +
.../system/cpu/cpu51/topology/core_siblings | 1 +
.../cpu/cpu51/topology/core_siblings_list | 1 +
.../system/cpu/cpu51/topology/die_cpus | 1 +
.../system/cpu/cpu51/topology/die_cpus_list | 1 +
.../system/cpu/cpu51/topology/die_id | 1 +
.../system/cpu/cpu51/topology/package_cpus | 1 +
.../cpu/cpu51/topology/package_cpus_list | 1 +
.../cpu/cpu51/topology/physical_package_id | 1 +
.../system/cpu/cpu51/topology/ppin | 1 +
.../system/cpu/cpu51/topology/thread_siblings | 1 +
.../cpu/cpu51/topology/thread_siblings_list | 1 +
.../cpu52/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu52/cache/index0/id | 1 +
.../system/cpu/cpu52/cache/index0/level | 1 +
.../cpu/cpu52/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu52/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu52/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu52/cache/index0/size | 1 +
.../system/cpu/cpu52/cache/index0/type | 1 +
.../system/cpu/cpu52/cache/index0/uevent | 0
.../cpu52/cache/index0/ways_of_associativity | 1 +
.../cpu52/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu52/cache/index1/id | 1 +
.../system/cpu/cpu52/cache/index1/level | 1 +
.../cpu/cpu52/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu52/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu52/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu52/cache/index1/size | 1 +
.../system/cpu/cpu52/cache/index1/type | 1 +
.../system/cpu/cpu52/cache/index1/uevent | 0
.../cpu52/cache/index1/ways_of_associativity | 1 +
.../cpu52/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu52/cache/index2/id | 1 +
.../system/cpu/cpu52/cache/index2/level | 1 +
.../cpu/cpu52/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu52/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu52/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu52/cache/index2/size | 1 +
.../system/cpu/cpu52/cache/index2/type | 1 +
.../system/cpu/cpu52/cache/index2/uevent | 0
.../cpu52/cache/index2/ways_of_associativity | 1 +
.../cpu52/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu52/cache/index3/id | 1 +
.../system/cpu/cpu52/cache/index3/level | 1 +
.../cpu/cpu52/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu52/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu52/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu52/cache/index3/size | 1 +
.../system/cpu/cpu52/cache/index3/type | 1 +
.../system/cpu/cpu52/cache/index3/uevent | 0
.../cpu52/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu52/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu52/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu52/online | 1 +
.../system/cpu/cpu52/topology/cluster_cpus | 1 +
.../cpu/cpu52/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu52/topology/cluster_id | 1 +
.../system/cpu/cpu52/topology/core_cpus | 1 +
.../system/cpu/cpu52/topology/core_cpus_list | 1 +
.../system/cpu/cpu52/topology/core_id | 1 +
.../system/cpu/cpu52/topology/core_siblings | 1 +
.../cpu/cpu52/topology/core_siblings_list | 1 +
.../system/cpu/cpu52/topology/die_cpus | 1 +
.../system/cpu/cpu52/topology/die_cpus_list | 1 +
.../system/cpu/cpu52/topology/die_id | 1 +
.../system/cpu/cpu52/topology/package_cpus | 1 +
.../cpu/cpu52/topology/package_cpus_list | 1 +
.../cpu/cpu52/topology/physical_package_id | 1 +
.../system/cpu/cpu52/topology/ppin | 1 +
.../system/cpu/cpu52/topology/thread_siblings | 1 +
.../cpu/cpu52/topology/thread_siblings_list | 1 +
.../cpu53/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu53/cache/index0/id | 1 +
.../system/cpu/cpu53/cache/index0/level | 1 +
.../cpu/cpu53/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu53/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu53/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu53/cache/index0/size | 1 +
.../system/cpu/cpu53/cache/index0/type | 1 +
.../system/cpu/cpu53/cache/index0/uevent | 0
.../cpu53/cache/index0/ways_of_associativity | 1 +
.../cpu53/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu53/cache/index1/id | 1 +
.../system/cpu/cpu53/cache/index1/level | 1 +
.../cpu/cpu53/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu53/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu53/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu53/cache/index1/size | 1 +
.../system/cpu/cpu53/cache/index1/type | 1 +
.../system/cpu/cpu53/cache/index1/uevent | 0
.../cpu53/cache/index1/ways_of_associativity | 1 +
.../cpu53/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu53/cache/index2/id | 1 +
.../system/cpu/cpu53/cache/index2/level | 1 +
.../cpu/cpu53/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu53/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu53/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu53/cache/index2/size | 1 +
.../system/cpu/cpu53/cache/index2/type | 1 +
.../system/cpu/cpu53/cache/index2/uevent | 0
.../cpu53/cache/index2/ways_of_associativity | 1 +
.../cpu53/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu53/cache/index3/id | 1 +
.../system/cpu/cpu53/cache/index3/level | 1 +
.../cpu/cpu53/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu53/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu53/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu53/cache/index3/size | 1 +
.../system/cpu/cpu53/cache/index3/type | 1 +
.../system/cpu/cpu53/cache/index3/uevent | 0
.../cpu53/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu53/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu53/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu53/online | 1 +
.../system/cpu/cpu53/topology/cluster_cpus | 1 +
.../cpu/cpu53/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu53/topology/cluster_id | 1 +
.../system/cpu/cpu53/topology/core_cpus | 1 +
.../system/cpu/cpu53/topology/core_cpus_list | 1 +
.../system/cpu/cpu53/topology/core_id | 1 +
.../system/cpu/cpu53/topology/core_siblings | 1 +
.../cpu/cpu53/topology/core_siblings_list | 1 +
.../system/cpu/cpu53/topology/die_cpus | 1 +
.../system/cpu/cpu53/topology/die_cpus_list | 1 +
.../system/cpu/cpu53/topology/die_id | 1 +
.../system/cpu/cpu53/topology/package_cpus | 1 +
.../cpu/cpu53/topology/package_cpus_list | 1 +
.../cpu/cpu53/topology/physical_package_id | 1 +
.../system/cpu/cpu53/topology/ppin | 1 +
.../system/cpu/cpu53/topology/thread_siblings | 1 +
.../cpu/cpu53/topology/thread_siblings_list | 1 +
.../cpu54/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu54/cache/index0/id | 1 +
.../system/cpu/cpu54/cache/index0/level | 1 +
.../cpu/cpu54/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu54/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu54/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu54/cache/index0/size | 1 +
.../system/cpu/cpu54/cache/index0/type | 1 +
.../system/cpu/cpu54/cache/index0/uevent | 0
.../cpu54/cache/index0/ways_of_associativity | 1 +
.../cpu54/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu54/cache/index1/id | 1 +
.../system/cpu/cpu54/cache/index1/level | 1 +
.../cpu/cpu54/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu54/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu54/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu54/cache/index1/size | 1 +
.../system/cpu/cpu54/cache/index1/type | 1 +
.../system/cpu/cpu54/cache/index1/uevent | 0
.../cpu54/cache/index1/ways_of_associativity | 1 +
.../cpu54/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu54/cache/index2/id | 1 +
.../system/cpu/cpu54/cache/index2/level | 1 +
.../cpu/cpu54/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu54/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu54/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu54/cache/index2/size | 1 +
.../system/cpu/cpu54/cache/index2/type | 1 +
.../system/cpu/cpu54/cache/index2/uevent | 0
.../cpu54/cache/index2/ways_of_associativity | 1 +
.../cpu54/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu54/cache/index3/id | 1 +
.../system/cpu/cpu54/cache/index3/level | 1 +
.../cpu/cpu54/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu54/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu54/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu54/cache/index3/size | 1 +
.../system/cpu/cpu54/cache/index3/type | 1 +
.../system/cpu/cpu54/cache/index3/uevent | 0
.../cpu54/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu54/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu54/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu54/online | 1 +
.../system/cpu/cpu54/topology/cluster_cpus | 1 +
.../cpu/cpu54/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu54/topology/cluster_id | 1 +
.../system/cpu/cpu54/topology/core_cpus | 1 +
.../system/cpu/cpu54/topology/core_cpus_list | 1 +
.../system/cpu/cpu54/topology/core_id | 1 +
.../system/cpu/cpu54/topology/core_siblings | 1 +
.../cpu/cpu54/topology/core_siblings_list | 1 +
.../system/cpu/cpu54/topology/die_cpus | 1 +
.../system/cpu/cpu54/topology/die_cpus_list | 1 +
.../system/cpu/cpu54/topology/die_id | 1 +
.../system/cpu/cpu54/topology/package_cpus | 1 +
.../cpu/cpu54/topology/package_cpus_list | 1 +
.../cpu/cpu54/topology/physical_package_id | 1 +
.../system/cpu/cpu54/topology/ppin | 1 +
.../system/cpu/cpu54/topology/thread_siblings | 1 +
.../cpu/cpu54/topology/thread_siblings_list | 1 +
.../cpu55/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu55/cache/index0/id | 1 +
.../system/cpu/cpu55/cache/index0/level | 1 +
.../cpu/cpu55/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu55/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu55/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu55/cache/index0/size | 1 +
.../system/cpu/cpu55/cache/index0/type | 1 +
.../system/cpu/cpu55/cache/index0/uevent | 0
.../cpu55/cache/index0/ways_of_associativity | 1 +
.../cpu55/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu55/cache/index1/id | 1 +
.../system/cpu/cpu55/cache/index1/level | 1 +
.../cpu/cpu55/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu55/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu55/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu55/cache/index1/size | 1 +
.../system/cpu/cpu55/cache/index1/type | 1 +
.../system/cpu/cpu55/cache/index1/uevent | 0
.../cpu55/cache/index1/ways_of_associativity | 1 +
.../cpu55/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu55/cache/index2/id | 1 +
.../system/cpu/cpu55/cache/index2/level | 1 +
.../cpu/cpu55/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu55/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu55/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu55/cache/index2/size | 1 +
.../system/cpu/cpu55/cache/index2/type | 1 +
.../system/cpu/cpu55/cache/index2/uevent | 0
.../cpu55/cache/index2/ways_of_associativity | 1 +
.../cpu55/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu55/cache/index3/id | 1 +
.../system/cpu/cpu55/cache/index3/level | 1 +
.../cpu/cpu55/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu55/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu55/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu55/cache/index3/size | 1 +
.../system/cpu/cpu55/cache/index3/type | 1 +
.../system/cpu/cpu55/cache/index3/uevent | 0
.../cpu55/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu55/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu55/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu55/online | 1 +
.../system/cpu/cpu55/topology/cluster_cpus | 1 +
.../cpu/cpu55/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu55/topology/cluster_id | 1 +
.../system/cpu/cpu55/topology/core_cpus | 1 +
.../system/cpu/cpu55/topology/core_cpus_list | 1 +
.../system/cpu/cpu55/topology/core_id | 1 +
.../system/cpu/cpu55/topology/core_siblings | 1 +
.../cpu/cpu55/topology/core_siblings_list | 1 +
.../system/cpu/cpu55/topology/die_cpus | 1 +
.../system/cpu/cpu55/topology/die_cpus_list | 1 +
.../system/cpu/cpu55/topology/die_id | 1 +
.../system/cpu/cpu55/topology/package_cpus | 1 +
.../cpu/cpu55/topology/package_cpus_list | 1 +
.../cpu/cpu55/topology/physical_package_id | 1 +
.../system/cpu/cpu55/topology/ppin | 1 +
.../system/cpu/cpu55/topology/thread_siblings | 1 +
.../cpu/cpu55/topology/thread_siblings_list | 1 +
.../cpu56/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu56/cache/index0/id | 1 +
.../system/cpu/cpu56/cache/index0/level | 1 +
.../cpu/cpu56/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu56/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu56/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu56/cache/index0/size | 1 +
.../system/cpu/cpu56/cache/index0/type | 1 +
.../system/cpu/cpu56/cache/index0/uevent | 0
.../cpu56/cache/index0/ways_of_associativity | 1 +
.../cpu56/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu56/cache/index1/id | 1 +
.../system/cpu/cpu56/cache/index1/level | 1 +
.../cpu/cpu56/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu56/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu56/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu56/cache/index1/size | 1 +
.../system/cpu/cpu56/cache/index1/type | 1 +
.../system/cpu/cpu56/cache/index1/uevent | 0
.../cpu56/cache/index1/ways_of_associativity | 1 +
.../cpu56/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu56/cache/index2/id | 1 +
.../system/cpu/cpu56/cache/index2/level | 1 +
.../cpu/cpu56/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu56/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu56/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu56/cache/index2/size | 1 +
.../system/cpu/cpu56/cache/index2/type | 1 +
.../system/cpu/cpu56/cache/index2/uevent | 0
.../cpu56/cache/index2/ways_of_associativity | 1 +
.../cpu56/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu56/cache/index3/id | 1 +
.../system/cpu/cpu56/cache/index3/level | 1 +
.../cpu/cpu56/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu56/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu56/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu56/cache/index3/size | 1 +
.../system/cpu/cpu56/cache/index3/type | 1 +
.../system/cpu/cpu56/cache/index3/uevent | 0
.../cpu56/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu56/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu56/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu56/online | 1 +
.../system/cpu/cpu56/topology/cluster_cpus | 1 +
.../cpu/cpu56/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu56/topology/cluster_id | 1 +
.../system/cpu/cpu56/topology/core_cpus | 1 +
.../system/cpu/cpu56/topology/core_cpus_list | 1 +
.../system/cpu/cpu56/topology/core_id | 1 +
.../system/cpu/cpu56/topology/core_siblings | 1 +
.../cpu/cpu56/topology/core_siblings_list | 1 +
.../system/cpu/cpu56/topology/die_cpus | 1 +
.../system/cpu/cpu56/topology/die_cpus_list | 1 +
.../system/cpu/cpu56/topology/die_id | 1 +
.../system/cpu/cpu56/topology/package_cpus | 1 +
.../cpu/cpu56/topology/package_cpus_list | 1 +
.../cpu/cpu56/topology/physical_package_id | 1 +
.../system/cpu/cpu56/topology/ppin | 1 +
.../system/cpu/cpu56/topology/thread_siblings | 1 +
.../cpu/cpu56/topology/thread_siblings_list | 1 +
.../cpu57/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu57/cache/index0/id | 1 +
.../system/cpu/cpu57/cache/index0/level | 1 +
.../cpu/cpu57/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu57/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu57/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu57/cache/index0/size | 1 +
.../system/cpu/cpu57/cache/index0/type | 1 +
.../system/cpu/cpu57/cache/index0/uevent | 0
.../cpu57/cache/index0/ways_of_associativity | 1 +
.../cpu57/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu57/cache/index1/id | 1 +
.../system/cpu/cpu57/cache/index1/level | 1 +
.../cpu/cpu57/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu57/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu57/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu57/cache/index1/size | 1 +
.../system/cpu/cpu57/cache/index1/type | 1 +
.../system/cpu/cpu57/cache/index1/uevent | 0
.../cpu57/cache/index1/ways_of_associativity | 1 +
.../cpu57/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu57/cache/index2/id | 1 +
.../system/cpu/cpu57/cache/index2/level | 1 +
.../cpu/cpu57/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu57/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu57/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu57/cache/index2/size | 1 +
.../system/cpu/cpu57/cache/index2/type | 1 +
.../system/cpu/cpu57/cache/index2/uevent | 0
.../cpu57/cache/index2/ways_of_associativity | 1 +
.../cpu57/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu57/cache/index3/id | 1 +
.../system/cpu/cpu57/cache/index3/level | 1 +
.../cpu/cpu57/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu57/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu57/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu57/cache/index3/size | 1 +
.../system/cpu/cpu57/cache/index3/type | 1 +
.../system/cpu/cpu57/cache/index3/uevent | 0
.../cpu57/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu57/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu57/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu57/online | 1 +
.../system/cpu/cpu57/topology/cluster_cpus | 1 +
.../cpu/cpu57/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu57/topology/cluster_id | 1 +
.../system/cpu/cpu57/topology/core_cpus | 1 +
.../system/cpu/cpu57/topology/core_cpus_list | 1 +
.../system/cpu/cpu57/topology/core_id | 1 +
.../system/cpu/cpu57/topology/core_siblings | 1 +
.../cpu/cpu57/topology/core_siblings_list | 1 +
.../system/cpu/cpu57/topology/die_cpus | 1 +
.../system/cpu/cpu57/topology/die_cpus_list | 1 +
.../system/cpu/cpu57/topology/die_id | 1 +
.../system/cpu/cpu57/topology/package_cpus | 1 +
.../cpu/cpu57/topology/package_cpus_list | 1 +
.../cpu/cpu57/topology/physical_package_id | 1 +
.../system/cpu/cpu57/topology/ppin | 1 +
.../system/cpu/cpu57/topology/thread_siblings | 1 +
.../cpu/cpu57/topology/thread_siblings_list | 1 +
.../cpu58/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu58/cache/index0/id | 1 +
.../system/cpu/cpu58/cache/index0/level | 1 +
.../cpu/cpu58/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu58/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu58/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu58/cache/index0/size | 1 +
.../system/cpu/cpu58/cache/index0/type | 1 +
.../system/cpu/cpu58/cache/index0/uevent | 0
.../cpu58/cache/index0/ways_of_associativity | 1 +
.../cpu58/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu58/cache/index1/id | 1 +
.../system/cpu/cpu58/cache/index1/level | 1 +
.../cpu/cpu58/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu58/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu58/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu58/cache/index1/size | 1 +
.../system/cpu/cpu58/cache/index1/type | 1 +
.../system/cpu/cpu58/cache/index1/uevent | 0
.../cpu58/cache/index1/ways_of_associativity | 1 +
.../cpu58/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu58/cache/index2/id | 1 +
.../system/cpu/cpu58/cache/index2/level | 1 +
.../cpu/cpu58/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu58/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu58/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu58/cache/index2/size | 1 +
.../system/cpu/cpu58/cache/index2/type | 1 +
.../system/cpu/cpu58/cache/index2/uevent | 0
.../cpu58/cache/index2/ways_of_associativity | 1 +
.../cpu58/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu58/cache/index3/id | 1 +
.../system/cpu/cpu58/cache/index3/level | 1 +
.../cpu/cpu58/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu58/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu58/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu58/cache/index3/size | 1 +
.../system/cpu/cpu58/cache/index3/type | 1 +
.../system/cpu/cpu58/cache/index3/uevent | 0
.../cpu58/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu58/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu58/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu58/online | 1 +
.../system/cpu/cpu58/topology/cluster_cpus | 1 +
.../cpu/cpu58/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu58/topology/cluster_id | 1 +
.../system/cpu/cpu58/topology/core_cpus | 1 +
.../system/cpu/cpu58/topology/core_cpus_list | 1 +
.../system/cpu/cpu58/topology/core_id | 1 +
.../system/cpu/cpu58/topology/core_siblings | 1 +
.../cpu/cpu58/topology/core_siblings_list | 1 +
.../system/cpu/cpu58/topology/die_cpus | 1 +
.../system/cpu/cpu58/topology/die_cpus_list | 1 +
.../system/cpu/cpu58/topology/die_id | 1 +
.../system/cpu/cpu58/topology/package_cpus | 1 +
.../cpu/cpu58/topology/package_cpus_list | 1 +
.../cpu/cpu58/topology/physical_package_id | 1 +
.../system/cpu/cpu58/topology/ppin | 1 +
.../system/cpu/cpu58/topology/thread_siblings | 1 +
.../cpu/cpu58/topology/thread_siblings_list | 1 +
.../cpu59/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu59/cache/index0/id | 1 +
.../system/cpu/cpu59/cache/index0/level | 1 +
.../cpu/cpu59/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu59/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu59/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu59/cache/index0/size | 1 +
.../system/cpu/cpu59/cache/index0/type | 1 +
.../system/cpu/cpu59/cache/index0/uevent | 0
.../cpu59/cache/index0/ways_of_associativity | 1 +
.../cpu59/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu59/cache/index1/id | 1 +
.../system/cpu/cpu59/cache/index1/level | 1 +
.../cpu/cpu59/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu59/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu59/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu59/cache/index1/size | 1 +
.../system/cpu/cpu59/cache/index1/type | 1 +
.../system/cpu/cpu59/cache/index1/uevent | 0
.../cpu59/cache/index1/ways_of_associativity | 1 +
.../cpu59/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu59/cache/index2/id | 1 +
.../system/cpu/cpu59/cache/index2/level | 1 +
.../cpu/cpu59/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu59/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu59/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu59/cache/index2/size | 1 +
.../system/cpu/cpu59/cache/index2/type | 1 +
.../system/cpu/cpu59/cache/index2/uevent | 0
.../cpu59/cache/index2/ways_of_associativity | 1 +
.../cpu59/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu59/cache/index3/id | 1 +
.../system/cpu/cpu59/cache/index3/level | 1 +
.../cpu/cpu59/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu59/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu59/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu59/cache/index3/size | 1 +
.../system/cpu/cpu59/cache/index3/type | 1 +
.../system/cpu/cpu59/cache/index3/uevent | 0
.../cpu59/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu59/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu59/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu59/online | 1 +
.../system/cpu/cpu59/topology/cluster_cpus | 1 +
.../cpu/cpu59/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu59/topology/cluster_id | 1 +
.../system/cpu/cpu59/topology/core_cpus | 1 +
.../system/cpu/cpu59/topology/core_cpus_list | 1 +
.../system/cpu/cpu59/topology/core_id | 1 +
.../system/cpu/cpu59/topology/core_siblings | 1 +
.../cpu/cpu59/topology/core_siblings_list | 1 +
.../system/cpu/cpu59/topology/die_cpus | 1 +
.../system/cpu/cpu59/topology/die_cpus_list | 1 +
.../system/cpu/cpu59/topology/die_id | 1 +
.../system/cpu/cpu59/topology/package_cpus | 1 +
.../cpu/cpu59/topology/package_cpus_list | 1 +
.../cpu/cpu59/topology/physical_package_id | 1 +
.../system/cpu/cpu59/topology/ppin | 1 +
.../system/cpu/cpu59/topology/thread_siblings | 1 +
.../cpu/cpu59/topology/thread_siblings_list | 1 +
.../cpu/cpu6/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu6/cache/index0/id | 1 +
.../system/cpu/cpu6/cache/index0/level | 1 +
.../cpu/cpu6/cache/index0/number_of_sets | 1 +
.../cpu6/cache/index0/physical_line_partition | 1 +
.../cpu/cpu6/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu6/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu6/cache/index0/size | 1 +
.../system/cpu/cpu6/cache/index0/type | 1 +
.../system/cpu/cpu6/cache/index0/uevent | 0
.../cpu6/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu6/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu6/cache/index1/id | 1 +
.../system/cpu/cpu6/cache/index1/level | 1 +
.../cpu/cpu6/cache/index1/number_of_sets | 1 +
.../cpu6/cache/index1/physical_line_partition | 1 +
.../cpu/cpu6/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu6/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu6/cache/index1/size | 1 +
.../system/cpu/cpu6/cache/index1/type | 1 +
.../system/cpu/cpu6/cache/index1/uevent | 0
.../cpu6/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu6/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu6/cache/index2/id | 1 +
.../system/cpu/cpu6/cache/index2/level | 1 +
.../cpu/cpu6/cache/index2/number_of_sets | 1 +
.../cpu6/cache/index2/physical_line_partition | 1 +
.../cpu/cpu6/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu6/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu6/cache/index2/size | 1 +
.../system/cpu/cpu6/cache/index2/type | 1 +
.../system/cpu/cpu6/cache/index2/uevent | 0
.../cpu6/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu6/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu6/cache/index3/id | 1 +
.../system/cpu/cpu6/cache/index3/level | 1 +
.../cpu/cpu6/cache/index3/number_of_sets | 1 +
.../cpu6/cache/index3/physical_line_partition | 1 +
.../cpu/cpu6/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu6/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu6/cache/index3/size | 1 +
.../system/cpu/cpu6/cache/index3/type | 1 +
.../system/cpu/cpu6/cache/index3/uevent | 0
.../cpu6/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu6/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu6/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu6/online | 1 +
.../system/cpu/cpu6/topology/cluster_cpus | 1 +
.../cpu/cpu6/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu6/topology/cluster_id | 1 +
.../system/cpu/cpu6/topology/core_cpus | 1 +
.../system/cpu/cpu6/topology/core_cpus_list | 1 +
.../system/cpu/cpu6/topology/core_id | 1 +
.../system/cpu/cpu6/topology/core_siblings | 1 +
.../cpu/cpu6/topology/core_siblings_list | 1 +
.../system/cpu/cpu6/topology/die_cpus | 1 +
.../system/cpu/cpu6/topology/die_cpus_list | 1 +
.../system/cpu/cpu6/topology/die_id | 1 +
.../system/cpu/cpu6/topology/package_cpus | 1 +
.../cpu/cpu6/topology/package_cpus_list | 1 +
.../cpu/cpu6/topology/physical_package_id | 1 +
.../system/cpu/cpu6/topology/ppin | 1 +
.../system/cpu/cpu6/topology/thread_siblings | 1 +
.../cpu/cpu6/topology/thread_siblings_list | 1 +
.../cpu60/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu60/cache/index0/id | 1 +
.../system/cpu/cpu60/cache/index0/level | 1 +
.../cpu/cpu60/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu60/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu60/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu60/cache/index0/size | 1 +
.../system/cpu/cpu60/cache/index0/type | 1 +
.../system/cpu/cpu60/cache/index0/uevent | 0
.../cpu60/cache/index0/ways_of_associativity | 1 +
.../cpu60/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu60/cache/index1/id | 1 +
.../system/cpu/cpu60/cache/index1/level | 1 +
.../cpu/cpu60/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu60/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu60/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu60/cache/index1/size | 1 +
.../system/cpu/cpu60/cache/index1/type | 1 +
.../system/cpu/cpu60/cache/index1/uevent | 0
.../cpu60/cache/index1/ways_of_associativity | 1 +
.../cpu60/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu60/cache/index2/id | 1 +
.../system/cpu/cpu60/cache/index2/level | 1 +
.../cpu/cpu60/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu60/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu60/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu60/cache/index2/size | 1 +
.../system/cpu/cpu60/cache/index2/type | 1 +
.../system/cpu/cpu60/cache/index2/uevent | 0
.../cpu60/cache/index2/ways_of_associativity | 1 +
.../cpu60/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu60/cache/index3/id | 1 +
.../system/cpu/cpu60/cache/index3/level | 1 +
.../cpu/cpu60/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu60/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu60/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu60/cache/index3/size | 1 +
.../system/cpu/cpu60/cache/index3/type | 1 +
.../system/cpu/cpu60/cache/index3/uevent | 0
.../cpu60/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu60/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu60/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu60/online | 1 +
.../system/cpu/cpu60/topology/cluster_cpus | 1 +
.../cpu/cpu60/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu60/topology/cluster_id | 1 +
.../system/cpu/cpu60/topology/core_cpus | 1 +
.../system/cpu/cpu60/topology/core_cpus_list | 1 +
.../system/cpu/cpu60/topology/core_id | 1 +
.../system/cpu/cpu60/topology/core_siblings | 1 +
.../cpu/cpu60/topology/core_siblings_list | 1 +
.../system/cpu/cpu60/topology/die_cpus | 1 +
.../system/cpu/cpu60/topology/die_cpus_list | 1 +
.../system/cpu/cpu60/topology/die_id | 1 +
.../system/cpu/cpu60/topology/package_cpus | 1 +
.../cpu/cpu60/topology/package_cpus_list | 1 +
.../cpu/cpu60/topology/physical_package_id | 1 +
.../system/cpu/cpu60/topology/ppin | 1 +
.../system/cpu/cpu60/topology/thread_siblings | 1 +
.../cpu/cpu60/topology/thread_siblings_list | 1 +
.../cpu61/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu61/cache/index0/id | 1 +
.../system/cpu/cpu61/cache/index0/level | 1 +
.../cpu/cpu61/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu61/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu61/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu61/cache/index0/size | 1 +
.../system/cpu/cpu61/cache/index0/type | 1 +
.../system/cpu/cpu61/cache/index0/uevent | 0
.../cpu61/cache/index0/ways_of_associativity | 1 +
.../cpu61/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu61/cache/index1/id | 1 +
.../system/cpu/cpu61/cache/index1/level | 1 +
.../cpu/cpu61/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu61/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu61/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu61/cache/index1/size | 1 +
.../system/cpu/cpu61/cache/index1/type | 1 +
.../system/cpu/cpu61/cache/index1/uevent | 0
.../cpu61/cache/index1/ways_of_associativity | 1 +
.../cpu61/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu61/cache/index2/id | 1 +
.../system/cpu/cpu61/cache/index2/level | 1 +
.../cpu/cpu61/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu61/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu61/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu61/cache/index2/size | 1 +
.../system/cpu/cpu61/cache/index2/type | 1 +
.../system/cpu/cpu61/cache/index2/uevent | 0
.../cpu61/cache/index2/ways_of_associativity | 1 +
.../cpu61/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu61/cache/index3/id | 1 +
.../system/cpu/cpu61/cache/index3/level | 1 +
.../cpu/cpu61/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu61/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu61/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu61/cache/index3/size | 1 +
.../system/cpu/cpu61/cache/index3/type | 1 +
.../system/cpu/cpu61/cache/index3/uevent | 0
.../cpu61/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu61/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu61/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu61/online | 1 +
.../system/cpu/cpu61/topology/cluster_cpus | 1 +
.../cpu/cpu61/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu61/topology/cluster_id | 1 +
.../system/cpu/cpu61/topology/core_cpus | 1 +
.../system/cpu/cpu61/topology/core_cpus_list | 1 +
.../system/cpu/cpu61/topology/core_id | 1 +
.../system/cpu/cpu61/topology/core_siblings | 1 +
.../cpu/cpu61/topology/core_siblings_list | 1 +
.../system/cpu/cpu61/topology/die_cpus | 1 +
.../system/cpu/cpu61/topology/die_cpus_list | 1 +
.../system/cpu/cpu61/topology/die_id | 1 +
.../system/cpu/cpu61/topology/package_cpus | 1 +
.../cpu/cpu61/topology/package_cpus_list | 1 +
.../cpu/cpu61/topology/physical_package_id | 1 +
.../system/cpu/cpu61/topology/ppin | 1 +
.../system/cpu/cpu61/topology/thread_siblings | 1 +
.../cpu/cpu61/topology/thread_siblings_list | 1 +
.../cpu62/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu62/cache/index0/id | 1 +
.../system/cpu/cpu62/cache/index0/level | 1 +
.../cpu/cpu62/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu62/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu62/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu62/cache/index0/size | 1 +
.../system/cpu/cpu62/cache/index0/type | 1 +
.../system/cpu/cpu62/cache/index0/uevent | 0
.../cpu62/cache/index0/ways_of_associativity | 1 +
.../cpu62/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu62/cache/index1/id | 1 +
.../system/cpu/cpu62/cache/index1/level | 1 +
.../cpu/cpu62/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu62/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu62/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu62/cache/index1/size | 1 +
.../system/cpu/cpu62/cache/index1/type | 1 +
.../system/cpu/cpu62/cache/index1/uevent | 0
.../cpu62/cache/index1/ways_of_associativity | 1 +
.../cpu62/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu62/cache/index2/id | 1 +
.../system/cpu/cpu62/cache/index2/level | 1 +
.../cpu/cpu62/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu62/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu62/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu62/cache/index2/size | 1 +
.../system/cpu/cpu62/cache/index2/type | 1 +
.../system/cpu/cpu62/cache/index2/uevent | 0
.../cpu62/cache/index2/ways_of_associativity | 1 +
.../cpu62/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu62/cache/index3/id | 1 +
.../system/cpu/cpu62/cache/index3/level | 1 +
.../cpu/cpu62/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu62/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu62/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu62/cache/index3/size | 1 +
.../system/cpu/cpu62/cache/index3/type | 1 +
.../system/cpu/cpu62/cache/index3/uevent | 0
.../cpu62/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu62/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu62/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu62/online | 1 +
.../system/cpu/cpu62/topology/cluster_cpus | 1 +
.../cpu/cpu62/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu62/topology/cluster_id | 1 +
.../system/cpu/cpu62/topology/core_cpus | 1 +
.../system/cpu/cpu62/topology/core_cpus_list | 1 +
.../system/cpu/cpu62/topology/core_id | 1 +
.../system/cpu/cpu62/topology/core_siblings | 1 +
.../cpu/cpu62/topology/core_siblings_list | 1 +
.../system/cpu/cpu62/topology/die_cpus | 1 +
.../system/cpu/cpu62/topology/die_cpus_list | 1 +
.../system/cpu/cpu62/topology/die_id | 1 +
.../system/cpu/cpu62/topology/package_cpus | 1 +
.../cpu/cpu62/topology/package_cpus_list | 1 +
.../cpu/cpu62/topology/physical_package_id | 1 +
.../system/cpu/cpu62/topology/ppin | 1 +
.../system/cpu/cpu62/topology/thread_siblings | 1 +
.../cpu/cpu62/topology/thread_siblings_list | 1 +
.../cpu63/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu63/cache/index0/id | 1 +
.../system/cpu/cpu63/cache/index0/level | 1 +
.../cpu/cpu63/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu63/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu63/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu63/cache/index0/size | 1 +
.../system/cpu/cpu63/cache/index0/type | 1 +
.../system/cpu/cpu63/cache/index0/uevent | 0
.../cpu63/cache/index0/ways_of_associativity | 1 +
.../cpu63/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu63/cache/index1/id | 1 +
.../system/cpu/cpu63/cache/index1/level | 1 +
.../cpu/cpu63/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu63/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu63/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu63/cache/index1/size | 1 +
.../system/cpu/cpu63/cache/index1/type | 1 +
.../system/cpu/cpu63/cache/index1/uevent | 0
.../cpu63/cache/index1/ways_of_associativity | 1 +
.../cpu63/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu63/cache/index2/id | 1 +
.../system/cpu/cpu63/cache/index2/level | 1 +
.../cpu/cpu63/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu63/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu63/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu63/cache/index2/size | 1 +
.../system/cpu/cpu63/cache/index2/type | 1 +
.../system/cpu/cpu63/cache/index2/uevent | 0
.../cpu63/cache/index2/ways_of_associativity | 1 +
.../cpu63/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu63/cache/index3/id | 1 +
.../system/cpu/cpu63/cache/index3/level | 1 +
.../cpu/cpu63/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu63/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu63/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu63/cache/index3/size | 1 +
.../system/cpu/cpu63/cache/index3/type | 1 +
.../system/cpu/cpu63/cache/index3/uevent | 0
.../cpu63/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu63/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu63/node1 | 1 +
.../linux-resctrl-amd/system/cpu/cpu63/online | 1 +
.../system/cpu/cpu63/topology/cluster_cpus | 1 +
.../cpu/cpu63/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu63/topology/cluster_id | 1 +
.../system/cpu/cpu63/topology/core_cpus | 1 +
.../system/cpu/cpu63/topology/core_cpus_list | 1 +
.../system/cpu/cpu63/topology/core_id | 1 +
.../system/cpu/cpu63/topology/core_siblings | 1 +
.../cpu/cpu63/topology/core_siblings_list | 1 +
.../system/cpu/cpu63/topology/die_cpus | 1 +
.../system/cpu/cpu63/topology/die_cpus_list | 1 +
.../system/cpu/cpu63/topology/die_id | 1 +
.../system/cpu/cpu63/topology/package_cpus | 1 +
.../cpu/cpu63/topology/package_cpus_list | 1 +
.../cpu/cpu63/topology/physical_package_id | 1 +
.../system/cpu/cpu63/topology/ppin | 1 +
.../system/cpu/cpu63/topology/thread_siblings | 1 +
.../cpu/cpu63/topology/thread_siblings_list | 1 +
.../cpu/cpu7/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu7/cache/index0/id | 1 +
.../system/cpu/cpu7/cache/index0/level | 1 +
.../cpu/cpu7/cache/index0/number_of_sets | 1 +
.../cpu7/cache/index0/physical_line_partition | 1 +
.../cpu/cpu7/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu7/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu7/cache/index0/size | 1 +
.../system/cpu/cpu7/cache/index0/type | 1 +
.../system/cpu/cpu7/cache/index0/uevent | 0
.../cpu7/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu7/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu7/cache/index1/id | 1 +
.../system/cpu/cpu7/cache/index1/level | 1 +
.../cpu/cpu7/cache/index1/number_of_sets | 1 +
.../cpu7/cache/index1/physical_line_partition | 1 +
.../cpu/cpu7/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu7/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu7/cache/index1/size | 1 +
.../system/cpu/cpu7/cache/index1/type | 1 +
.../system/cpu/cpu7/cache/index1/uevent | 0
.../cpu7/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu7/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu7/cache/index2/id | 1 +
.../system/cpu/cpu7/cache/index2/level | 1 +
.../cpu/cpu7/cache/index2/number_of_sets | 1 +
.../cpu7/cache/index2/physical_line_partition | 1 +
.../cpu/cpu7/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu7/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu7/cache/index2/size | 1 +
.../system/cpu/cpu7/cache/index2/type | 1 +
.../system/cpu/cpu7/cache/index2/uevent | 0
.../cpu7/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu7/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu7/cache/index3/id | 1 +
.../system/cpu/cpu7/cache/index3/level | 1 +
.../cpu/cpu7/cache/index3/number_of_sets | 1 +
.../cpu7/cache/index3/physical_line_partition | 1 +
.../cpu/cpu7/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu7/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu7/cache/index3/size | 1 +
.../system/cpu/cpu7/cache/index3/type | 1 +
.../system/cpu/cpu7/cache/index3/uevent | 0
.../cpu7/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu7/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu7/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu7/online | 1 +
.../system/cpu/cpu7/topology/cluster_cpus | 1 +
.../cpu/cpu7/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu7/topology/cluster_id | 1 +
.../system/cpu/cpu7/topology/core_cpus | 1 +
.../system/cpu/cpu7/topology/core_cpus_list | 1 +
.../system/cpu/cpu7/topology/core_id | 1 +
.../system/cpu/cpu7/topology/core_siblings | 1 +
.../cpu/cpu7/topology/core_siblings_list | 1 +
.../system/cpu/cpu7/topology/die_cpus | 1 +
.../system/cpu/cpu7/topology/die_cpus_list | 1 +
.../system/cpu/cpu7/topology/die_id | 1 +
.../system/cpu/cpu7/topology/package_cpus | 1 +
.../cpu/cpu7/topology/package_cpus_list | 1 +
.../cpu/cpu7/topology/physical_package_id | 1 +
.../system/cpu/cpu7/topology/ppin | 1 +
.../system/cpu/cpu7/topology/thread_siblings | 1 +
.../cpu/cpu7/topology/thread_siblings_list | 1 +
.../cpu/cpu8/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu8/cache/index0/id | 1 +
.../system/cpu/cpu8/cache/index0/level | 1 +
.../cpu/cpu8/cache/index0/number_of_sets | 1 +
.../cpu8/cache/index0/physical_line_partition | 1 +
.../cpu/cpu8/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu8/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu8/cache/index0/size | 1 +
.../system/cpu/cpu8/cache/index0/type | 1 +
.../system/cpu/cpu8/cache/index0/uevent | 0
.../cpu8/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu8/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu8/cache/index1/id | 1 +
.../system/cpu/cpu8/cache/index1/level | 1 +
.../cpu/cpu8/cache/index1/number_of_sets | 1 +
.../cpu8/cache/index1/physical_line_partition | 1 +
.../cpu/cpu8/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu8/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu8/cache/index1/size | 1 +
.../system/cpu/cpu8/cache/index1/type | 1 +
.../system/cpu/cpu8/cache/index1/uevent | 0
.../cpu8/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu8/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu8/cache/index2/id | 1 +
.../system/cpu/cpu8/cache/index2/level | 1 +
.../cpu/cpu8/cache/index2/number_of_sets | 1 +
.../cpu8/cache/index2/physical_line_partition | 1 +
.../cpu/cpu8/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu8/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu8/cache/index2/size | 1 +
.../system/cpu/cpu8/cache/index2/type | 1 +
.../system/cpu/cpu8/cache/index2/uevent | 0
.../cpu8/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu8/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu8/cache/index3/id | 1 +
.../system/cpu/cpu8/cache/index3/level | 1 +
.../cpu/cpu8/cache/index3/number_of_sets | 1 +
.../cpu8/cache/index3/physical_line_partition | 1 +
.../cpu/cpu8/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu8/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu8/cache/index3/size | 1 +
.../system/cpu/cpu8/cache/index3/type | 1 +
.../system/cpu/cpu8/cache/index3/uevent | 0
.../cpu8/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu8/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu8/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu8/online | 1 +
.../system/cpu/cpu8/topology/cluster_cpus | 1 +
.../cpu/cpu8/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu8/topology/cluster_id | 1 +
.../system/cpu/cpu8/topology/core_cpus | 1 +
.../system/cpu/cpu8/topology/core_cpus_list | 1 +
.../system/cpu/cpu8/topology/core_id | 1 +
.../system/cpu/cpu8/topology/core_siblings | 1 +
.../cpu/cpu8/topology/core_siblings_list | 1 +
.../system/cpu/cpu8/topology/die_cpus | 1 +
.../system/cpu/cpu8/topology/die_cpus_list | 1 +
.../system/cpu/cpu8/topology/die_id | 1 +
.../system/cpu/cpu8/topology/package_cpus | 1 +
.../cpu/cpu8/topology/package_cpus_list | 1 +
.../cpu/cpu8/topology/physical_package_id | 1 +
.../system/cpu/cpu8/topology/ppin | 1 +
.../system/cpu/cpu8/topology/thread_siblings | 1 +
.../cpu/cpu8/topology/thread_siblings_list | 1 +
.../cpu/cpu9/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu9/cache/index0/id | 1 +
.../system/cpu/cpu9/cache/index0/level | 1 +
.../cpu/cpu9/cache/index0/number_of_sets | 1 +
.../cpu9/cache/index0/physical_line_partition | 1 +
.../cpu/cpu9/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu9/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu9/cache/index0/size | 1 +
.../system/cpu/cpu9/cache/index0/type | 1 +
.../system/cpu/cpu9/cache/index0/uevent | 0
.../cpu9/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu9/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu9/cache/index1/id | 1 +
.../system/cpu/cpu9/cache/index1/level | 1 +
.../cpu/cpu9/cache/index1/number_of_sets | 1 +
.../cpu9/cache/index1/physical_line_partition | 1 +
.../cpu/cpu9/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu9/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu9/cache/index1/size | 1 +
.../system/cpu/cpu9/cache/index1/type | 1 +
.../system/cpu/cpu9/cache/index1/uevent | 0
.../cpu9/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu9/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu9/cache/index2/id | 1 +
.../system/cpu/cpu9/cache/index2/level | 1 +
.../cpu/cpu9/cache/index2/number_of_sets | 1 +
.../cpu9/cache/index2/physical_line_partition | 1 +
.../cpu/cpu9/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu9/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu9/cache/index2/size | 1 +
.../system/cpu/cpu9/cache/index2/type | 1 +
.../system/cpu/cpu9/cache/index2/uevent | 0
.../cpu9/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu9/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu9/cache/index3/id | 1 +
.../system/cpu/cpu9/cache/index3/level | 1 +
.../cpu/cpu9/cache/index3/number_of_sets | 1 +
.../cpu9/cache/index3/physical_line_partition | 1 +
.../cpu/cpu9/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu9/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu9/cache/index3/size | 1 +
.../system/cpu/cpu9/cache/index3/type | 1 +
.../system/cpu/cpu9/cache/index3/uevent | 0
.../cpu9/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu9/cache/uevent | 0
.../linux-resctrl-amd/system/cpu/cpu9/node0 | 1 +
.../linux-resctrl-amd/system/cpu/cpu9/online | 1 +
.../system/cpu/cpu9/topology/cluster_cpus | 1 +
.../cpu/cpu9/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu9/topology/cluster_id | 1 +
.../system/cpu/cpu9/topology/core_cpus | 1 +
.../system/cpu/cpu9/topology/core_cpus_list | 1 +
.../system/cpu/cpu9/topology/core_id | 1 +
.../system/cpu/cpu9/topology/core_siblings | 1 +
.../cpu/cpu9/topology/core_siblings_list | 1 +
.../system/cpu/cpu9/topology/die_cpus | 1 +
.../system/cpu/cpu9/topology/die_cpus_list | 1 +
.../system/cpu/cpu9/topology/die_id | 1 +
.../system/cpu/cpu9/topology/package_cpus | 1 +
.../cpu/cpu9/topology/package_cpus_list | 1 +
.../cpu/cpu9/topology/physical_package_id | 1 +
.../system/cpu/cpu9/topology/ppin | 1 +
.../system/cpu/cpu9/topology/thread_siblings | 1 +
.../cpu/cpu9/topology/thread_siblings_list | 1 +
.../linux-resctrl-amd/system/cpu/online | 1 +
.../linux-resctrl-amd/system/cpu/present | 1 +
.../linux-resctrl-amd/system/node/node0/cpu0 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu1 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu10 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu11 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu12 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu13 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu14 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu15 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu2 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu3 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu32 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu33 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu34 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu35 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu36 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu37 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu38 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu39 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu4 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu40 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu41 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu42 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu43 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu44 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu45 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu46 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu47 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu5 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu6 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu7 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu8 | 1 +
.../linux-resctrl-amd/system/node/node0/cpu9 | 1 +
.../system/node/node0/cpulist | 1 +
.../system/node/node0/cpumap | 1 +
.../system/node/node0/distance | 1 +
.../hugepages-1048576kB/free_hugepages | 1 +
.../hugepages-1048576kB/nr_hugepages | 1 +
.../hugepages-1048576kB/surplus_hugepages | 1 +
.../hugepages/hugepages-2048kB/free_hugepages | 1 +
.../hugepages/hugepages-2048kB/nr_hugepages | 1 +
.../hugepages-2048kB/surplus_hugepages | 1 +
.../linux-resctrl-amd/system/node/node1/cpu16 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu17 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu18 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu19 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu20 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu21 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu22 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu23 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu24 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu25 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu26 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu27 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu28 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu29 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu30 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu31 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu48 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu49 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu50 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu51 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu52 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu53 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu54 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu55 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu56 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu57 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu58 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu59 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu60 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu61 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu62 | 1 +
.../linux-resctrl-amd/system/node/node1/cpu63 | 1 +
.../system/node/node1/cpulist | 1 +
.../system/node/node1/cpumap | 1 +
.../system/node/node1/distance | 1 +
.../hugepages-1048576kB/free_hugepages | 1 +
.../hugepages-1048576kB/nr_hugepages | 1 +
.../hugepages-1048576kB/surplus_hugepages | 1 +
.../hugepages/hugepages-2048kB/free_hugepages | 1 +
.../hugepages/hugepages-2048kB/nr_hugepages | 1 +
.../hugepages-2048kB/surplus_hugepages | 1 +
.../linux-resctrl-amd/system/node/online | 1 +
.../linux-resctrl-mba_MBps/resctrl/cpus | 1 +
.../linux-resctrl-mba_MBps/resctrl/cpus_list | 1 +
.../resctrl/info/L2/bit_usage | 1 +
.../resctrl/info/L2/cbm_mask | 1 +
.../resctrl/info/L2/min_cbm_bits | 1 +
.../resctrl/info/L2/num_closids | 1 +
.../resctrl/info/L2/shareable_bits | 1 +
.../resctrl/info/L2/sparse_masks | 1 +
.../resctrl/info/L3/bit_usage | 1 +
.../resctrl/info/L3/cbm_mask | 1 +
.../resctrl/info/L3/min_cbm_bits | 1 +
.../resctrl/info/L3/num_closids | 1 +
.../resctrl/info/L3/shareable_bits | 1 +
.../resctrl/info/L3/sparse_masks | 1 +
.../info/L3_MON/max_threshold_occupancy | 1 +
.../resctrl/info/L3_MON/mon_features | 3 +
.../resctrl/info/L3_MON/num_rmids | 1 +
.../resctrl/info/MB/bandwidth_gran | 1 +
.../resctrl/info/MB/delay_linear | 1 +
.../resctrl/info/MB/min_bandwidth | 1 +
.../resctrl/info/MB/num_closids | 1 +
.../resctrl/info/MB/thread_throttle_mode | 1 +
.../resctrl/info/last_cmd_status | 1 +
.../linux-resctrl-mba_MBps/resctrl/mode | 1 +
.../resctrl/mon_data/mon_L3_00/llc_occupancy | 1 +
.../mon_data/mon_L3_00/mbm_local_bytes | 1 +
.../mon_data/mon_L3_00/mbm_total_bytes | 1 +
.../resctrl/mon_data/mon_L3_01/llc_occupancy | 1 +
.../mon_data/mon_L3_01/mbm_local_bytes | 1 +
.../mon_data/mon_L3_01/mbm_total_bytes | 1 +
.../linux-resctrl-mba_MBps/resctrl/schemata | 3 +
.../linux-resctrl-mba_MBps/resctrl/size | 3 +
.../linux-resctrl-mba_MBps/resctrl/tasks | 1 +
.../cpu/cpu0/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu0/cache/index0/id | 1 +
.../system/cpu/cpu0/cache/index0/level | 1 +
.../cpu/cpu0/cache/index0/number_of_sets | 1 +
.../cpu0/cache/index0/physical_line_partition | 1 +
.../cpu/cpu0/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu0/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu0/cache/index0/size | 1 +
.../system/cpu/cpu0/cache/index0/type | 1 +
.../system/cpu/cpu0/cache/index0/uevent | 0
.../cpu0/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu0/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu0/cache/index1/id | 1 +
.../system/cpu/cpu0/cache/index1/level | 1 +
.../cpu/cpu0/cache/index1/number_of_sets | 1 +
.../cpu0/cache/index1/physical_line_partition | 1 +
.../cpu/cpu0/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu0/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu0/cache/index1/size | 1 +
.../system/cpu/cpu0/cache/index1/type | 1 +
.../system/cpu/cpu0/cache/index1/uevent | 0
.../cpu0/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu0/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu0/cache/index2/id | 1 +
.../system/cpu/cpu0/cache/index2/level | 1 +
.../cpu/cpu0/cache/index2/number_of_sets | 1 +
.../cpu0/cache/index2/physical_line_partition | 1 +
.../cpu/cpu0/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu0/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu0/cache/index2/size | 1 +
.../system/cpu/cpu0/cache/index2/type | 1 +
.../system/cpu/cpu0/cache/index2/uevent | 0
.../cpu0/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu0/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu0/cache/index3/id | 1 +
.../system/cpu/cpu0/cache/index3/level | 1 +
.../cpu/cpu0/cache/index3/number_of_sets | 1 +
.../cpu0/cache/index3/physical_line_partition | 1 +
.../cpu/cpu0/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu0/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu0/cache/index3/size | 1 +
.../system/cpu/cpu0/cache/index3/type | 1 +
.../system/cpu/cpu0/cache/index3/uevent | 0
.../cpu0/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu0/cache/uevent | 0
.../system/cpu/cpu0/node0 | 1 +
.../system/cpu/cpu0/topology/cluster_cpus | 1 +
.../cpu/cpu0/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu0/topology/cluster_id | 1 +
.../system/cpu/cpu0/topology/core_cpus | 1 +
.../system/cpu/cpu0/topology/core_cpus_list | 1 +
.../system/cpu/cpu0/topology/core_id | 1 +
.../system/cpu/cpu0/topology/core_siblings | 1 +
.../cpu/cpu0/topology/core_siblings_list | 1 +
.../system/cpu/cpu0/topology/die_cpus | 1 +
.../system/cpu/cpu0/topology/die_cpus_list | 1 +
.../system/cpu/cpu0/topology/die_id | 1 +
.../system/cpu/cpu0/topology/package_cpus | 1 +
.../cpu/cpu0/topology/package_cpus_list | 1 +
.../cpu/cpu0/topology/physical_package_id | 1 +
.../system/cpu/cpu0/topology/thread_siblings | 1 +
.../cpu/cpu0/topology/thread_siblings_list | 1 +
.../cpu/cpu1/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu1/cache/index0/id | 1 +
.../system/cpu/cpu1/cache/index0/level | 1 +
.../cpu/cpu1/cache/index0/number_of_sets | 1 +
.../cpu1/cache/index0/physical_line_partition | 1 +
.../cpu/cpu1/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu1/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu1/cache/index0/size | 1 +
.../system/cpu/cpu1/cache/index0/type | 1 +
.../system/cpu/cpu1/cache/index0/uevent | 0
.../cpu1/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu1/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu1/cache/index1/id | 1 +
.../system/cpu/cpu1/cache/index1/level | 1 +
.../cpu/cpu1/cache/index1/number_of_sets | 1 +
.../cpu1/cache/index1/physical_line_partition | 1 +
.../cpu/cpu1/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu1/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu1/cache/index1/size | 1 +
.../system/cpu/cpu1/cache/index1/type | 1 +
.../system/cpu/cpu1/cache/index1/uevent | 0
.../cpu1/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu1/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu1/cache/index2/id | 1 +
.../system/cpu/cpu1/cache/index2/level | 1 +
.../cpu/cpu1/cache/index2/number_of_sets | 1 +
.../cpu1/cache/index2/physical_line_partition | 1 +
.../cpu/cpu1/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu1/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu1/cache/index2/size | 1 +
.../system/cpu/cpu1/cache/index2/type | 1 +
.../system/cpu/cpu1/cache/index2/uevent | 0
.../cpu1/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu1/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu1/cache/index3/id | 1 +
.../system/cpu/cpu1/cache/index3/level | 1 +
.../cpu/cpu1/cache/index3/number_of_sets | 1 +
.../cpu1/cache/index3/physical_line_partition | 1 +
.../cpu/cpu1/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu1/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu1/cache/index3/size | 1 +
.../system/cpu/cpu1/cache/index3/type | 1 +
.../system/cpu/cpu1/cache/index3/uevent | 0
.../cpu1/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu1/cache/uevent | 0
.../system/cpu/cpu1/node1 | 1 +
.../system/cpu/cpu1/online | 1 +
.../system/cpu/cpu1/topology/cluster_cpus | 1 +
.../cpu/cpu1/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu1/topology/cluster_id | 1 +
.../system/cpu/cpu1/topology/core_cpus | 1 +
.../system/cpu/cpu1/topology/core_cpus_list | 1 +
.../system/cpu/cpu1/topology/core_id | 1 +
.../system/cpu/cpu1/topology/core_siblings | 1 +
.../cpu/cpu1/topology/core_siblings_list | 1 +
.../system/cpu/cpu1/topology/die_cpus | 1 +
.../system/cpu/cpu1/topology/die_cpus_list | 1 +
.../system/cpu/cpu1/topology/die_id | 1 +
.../system/cpu/cpu1/topology/package_cpus | 1 +
.../cpu/cpu1/topology/package_cpus_list | 1 +
.../cpu/cpu1/topology/physical_package_id | 1 +
.../system/cpu/cpu1/topology/thread_siblings | 1 +
.../cpu/cpu1/topology/thread_siblings_list | 1 +
.../cpu10/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu10/cache/index0/id | 1 +
.../system/cpu/cpu10/cache/index0/level | 1 +
.../cpu/cpu10/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu10/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu10/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu10/cache/index0/size | 1 +
.../system/cpu/cpu10/cache/index0/type | 1 +
.../system/cpu/cpu10/cache/index0/uevent | 0
.../cpu10/cache/index0/ways_of_associativity | 1 +
.../cpu10/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu10/cache/index1/id | 1 +
.../system/cpu/cpu10/cache/index1/level | 1 +
.../cpu/cpu10/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu10/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu10/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu10/cache/index1/size | 1 +
.../system/cpu/cpu10/cache/index1/type | 1 +
.../system/cpu/cpu10/cache/index1/uevent | 0
.../cpu10/cache/index1/ways_of_associativity | 1 +
.../cpu10/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu10/cache/index2/id | 1 +
.../system/cpu/cpu10/cache/index2/level | 1 +
.../cpu/cpu10/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu10/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu10/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu10/cache/index2/size | 1 +
.../system/cpu/cpu10/cache/index2/type | 1 +
.../system/cpu/cpu10/cache/index2/uevent | 0
.../cpu10/cache/index2/ways_of_associativity | 1 +
.../cpu10/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu10/cache/index3/id | 1 +
.../system/cpu/cpu10/cache/index3/level | 1 +
.../cpu/cpu10/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu10/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu10/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu10/cache/index3/size | 1 +
.../system/cpu/cpu10/cache/index3/type | 1 +
.../system/cpu/cpu10/cache/index3/uevent | 0
.../cpu10/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu10/cache/uevent | 0
.../system/cpu/cpu10/node0 | 1 +
.../system/cpu/cpu10/online | 1 +
.../system/cpu/cpu10/topology/cluster_cpus | 1 +
.../cpu/cpu10/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu10/topology/cluster_id | 1 +
.../system/cpu/cpu10/topology/core_cpus | 1 +
.../system/cpu/cpu10/topology/core_cpus_list | 1 +
.../system/cpu/cpu10/topology/core_id | 1 +
.../system/cpu/cpu10/topology/core_siblings | 1 +
.../cpu/cpu10/topology/core_siblings_list | 1 +
.../system/cpu/cpu10/topology/die_cpus | 1 +
.../system/cpu/cpu10/topology/die_cpus_list | 1 +
.../system/cpu/cpu10/topology/die_id | 1 +
.../system/cpu/cpu10/topology/package_cpus | 1 +
.../cpu/cpu10/topology/package_cpus_list | 1 +
.../cpu/cpu10/topology/physical_package_id | 1 +
.../system/cpu/cpu10/topology/thread_siblings | 1 +
.../cpu/cpu10/topology/thread_siblings_list | 1 +
.../cpu11/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu11/cache/index0/id | 1 +
.../system/cpu/cpu11/cache/index0/level | 1 +
.../cpu/cpu11/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu11/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu11/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu11/cache/index0/size | 1 +
.../system/cpu/cpu11/cache/index0/type | 1 +
.../system/cpu/cpu11/cache/index0/uevent | 0
.../cpu11/cache/index0/ways_of_associativity | 1 +
.../cpu11/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu11/cache/index1/id | 1 +
.../system/cpu/cpu11/cache/index1/level | 1 +
.../cpu/cpu11/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu11/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu11/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu11/cache/index1/size | 1 +
.../system/cpu/cpu11/cache/index1/type | 1 +
.../system/cpu/cpu11/cache/index1/uevent | 0
.../cpu11/cache/index1/ways_of_associativity | 1 +
.../cpu11/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu11/cache/index2/id | 1 +
.../system/cpu/cpu11/cache/index2/level | 1 +
.../cpu/cpu11/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu11/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu11/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu11/cache/index2/size | 1 +
.../system/cpu/cpu11/cache/index2/type | 1 +
.../system/cpu/cpu11/cache/index2/uevent | 0
.../cpu11/cache/index2/ways_of_associativity | 1 +
.../cpu11/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu11/cache/index3/id | 1 +
.../system/cpu/cpu11/cache/index3/level | 1 +
.../cpu/cpu11/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu11/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu11/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu11/cache/index3/size | 1 +
.../system/cpu/cpu11/cache/index3/type | 1 +
.../system/cpu/cpu11/cache/index3/uevent | 0
.../cpu11/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu11/cache/uevent | 0
.../system/cpu/cpu11/node1 | 1 +
.../system/cpu/cpu11/online | 1 +
.../system/cpu/cpu11/topology/cluster_cpus | 1 +
.../cpu/cpu11/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu11/topology/cluster_id | 1 +
.../system/cpu/cpu11/topology/core_cpus | 1 +
.../system/cpu/cpu11/topology/core_cpus_list | 1 +
.../system/cpu/cpu11/topology/core_id | 1 +
.../system/cpu/cpu11/topology/core_siblings | 1 +
.../cpu/cpu11/topology/core_siblings_list | 1 +
.../system/cpu/cpu11/topology/die_cpus | 1 +
.../system/cpu/cpu11/topology/die_cpus_list | 1 +
.../system/cpu/cpu11/topology/die_id | 1 +
.../system/cpu/cpu11/topology/package_cpus | 1 +
.../cpu/cpu11/topology/package_cpus_list | 1 +
.../cpu/cpu11/topology/physical_package_id | 1 +
.../system/cpu/cpu11/topology/thread_siblings | 1 +
.../cpu/cpu11/topology/thread_siblings_list | 1 +
.../cpu12/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu12/cache/index0/id | 1 +
.../system/cpu/cpu12/cache/index0/level | 1 +
.../cpu/cpu12/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu12/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu12/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu12/cache/index0/size | 1 +
.../system/cpu/cpu12/cache/index0/type | 1 +
.../system/cpu/cpu12/cache/index0/uevent | 0
.../cpu12/cache/index0/ways_of_associativity | 1 +
.../cpu12/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu12/cache/index1/id | 1 +
.../system/cpu/cpu12/cache/index1/level | 1 +
.../cpu/cpu12/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu12/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu12/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu12/cache/index1/size | 1 +
.../system/cpu/cpu12/cache/index1/type | 1 +
.../system/cpu/cpu12/cache/index1/uevent | 0
.../cpu12/cache/index1/ways_of_associativity | 1 +
.../cpu12/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu12/cache/index2/id | 1 +
.../system/cpu/cpu12/cache/index2/level | 1 +
.../cpu/cpu12/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu12/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu12/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu12/cache/index2/size | 1 +
.../system/cpu/cpu12/cache/index2/type | 1 +
.../system/cpu/cpu12/cache/index2/uevent | 0
.../cpu12/cache/index2/ways_of_associativity | 1 +
.../cpu12/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu12/cache/index3/id | 1 +
.../system/cpu/cpu12/cache/index3/level | 1 +
.../cpu/cpu12/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu12/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu12/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu12/cache/index3/size | 1 +
.../system/cpu/cpu12/cache/index3/type | 1 +
.../system/cpu/cpu12/cache/index3/uevent | 0
.../cpu12/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu12/cache/uevent | 0
.../system/cpu/cpu12/node0 | 1 +
.../system/cpu/cpu12/online | 1 +
.../system/cpu/cpu12/topology/cluster_cpus | 1 +
.../cpu/cpu12/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu12/topology/cluster_id | 1 +
.../system/cpu/cpu12/topology/core_cpus | 1 +
.../system/cpu/cpu12/topology/core_cpus_list | 1 +
.../system/cpu/cpu12/topology/core_id | 1 +
.../system/cpu/cpu12/topology/core_siblings | 1 +
.../cpu/cpu12/topology/core_siblings_list | 1 +
.../system/cpu/cpu12/topology/die_cpus | 1 +
.../system/cpu/cpu12/topology/die_cpus_list | 1 +
.../system/cpu/cpu12/topology/die_id | 1 +
.../system/cpu/cpu12/topology/package_cpus | 1 +
.../cpu/cpu12/topology/package_cpus_list | 1 +
.../cpu/cpu12/topology/physical_package_id | 1 +
.../system/cpu/cpu12/topology/thread_siblings | 1 +
.../cpu/cpu12/topology/thread_siblings_list | 1 +
.../cpu13/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu13/cache/index0/id | 1 +
.../system/cpu/cpu13/cache/index0/level | 1 +
.../cpu/cpu13/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu13/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu13/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu13/cache/index0/size | 1 +
.../system/cpu/cpu13/cache/index0/type | 1 +
.../system/cpu/cpu13/cache/index0/uevent | 0
.../cpu13/cache/index0/ways_of_associativity | 1 +
.../cpu13/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu13/cache/index1/id | 1 +
.../system/cpu/cpu13/cache/index1/level | 1 +
.../cpu/cpu13/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu13/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu13/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu13/cache/index1/size | 1 +
.../system/cpu/cpu13/cache/index1/type | 1 +
.../system/cpu/cpu13/cache/index1/uevent | 0
.../cpu13/cache/index1/ways_of_associativity | 1 +
.../cpu13/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu13/cache/index2/id | 1 +
.../system/cpu/cpu13/cache/index2/level | 1 +
.../cpu/cpu13/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu13/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu13/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu13/cache/index2/size | 1 +
.../system/cpu/cpu13/cache/index2/type | 1 +
.../system/cpu/cpu13/cache/index2/uevent | 0
.../cpu13/cache/index2/ways_of_associativity | 1 +
.../cpu13/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu13/cache/index3/id | 1 +
.../system/cpu/cpu13/cache/index3/level | 1 +
.../cpu/cpu13/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu13/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu13/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu13/cache/index3/size | 1 +
.../system/cpu/cpu13/cache/index3/type | 1 +
.../system/cpu/cpu13/cache/index3/uevent | 0
.../cpu13/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu13/cache/uevent | 0
.../system/cpu/cpu13/node1 | 1 +
.../system/cpu/cpu13/online | 1 +
.../system/cpu/cpu13/topology/cluster_cpus | 1 +
.../cpu/cpu13/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu13/topology/cluster_id | 1 +
.../system/cpu/cpu13/topology/core_cpus | 1 +
.../system/cpu/cpu13/topology/core_cpus_list | 1 +
.../system/cpu/cpu13/topology/core_id | 1 +
.../system/cpu/cpu13/topology/core_siblings | 1 +
.../cpu/cpu13/topology/core_siblings_list | 1 +
.../system/cpu/cpu13/topology/die_cpus | 1 +
.../system/cpu/cpu13/topology/die_cpus_list | 1 +
.../system/cpu/cpu13/topology/die_id | 1 +
.../system/cpu/cpu13/topology/package_cpus | 1 +
.../cpu/cpu13/topology/package_cpus_list | 1 +
.../cpu/cpu13/topology/physical_package_id | 1 +
.../system/cpu/cpu13/topology/thread_siblings | 1 +
.../cpu/cpu13/topology/thread_siblings_list | 1 +
.../cpu14/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu14/cache/index0/id | 1 +
.../system/cpu/cpu14/cache/index0/level | 1 +
.../cpu/cpu14/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu14/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu14/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu14/cache/index0/size | 1 +
.../system/cpu/cpu14/cache/index0/type | 1 +
.../system/cpu/cpu14/cache/index0/uevent | 0
.../cpu14/cache/index0/ways_of_associativity | 1 +
.../cpu14/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu14/cache/index1/id | 1 +
.../system/cpu/cpu14/cache/index1/level | 1 +
.../cpu/cpu14/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu14/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu14/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu14/cache/index1/size | 1 +
.../system/cpu/cpu14/cache/index1/type | 1 +
.../system/cpu/cpu14/cache/index1/uevent | 0
.../cpu14/cache/index1/ways_of_associativity | 1 +
.../cpu14/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu14/cache/index2/id | 1 +
.../system/cpu/cpu14/cache/index2/level | 1 +
.../cpu/cpu14/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu14/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu14/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu14/cache/index2/size | 1 +
.../system/cpu/cpu14/cache/index2/type | 1 +
.../system/cpu/cpu14/cache/index2/uevent | 0
.../cpu14/cache/index2/ways_of_associativity | 1 +
.../cpu14/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu14/cache/index3/id | 1 +
.../system/cpu/cpu14/cache/index3/level | 1 +
.../cpu/cpu14/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu14/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu14/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu14/cache/index3/size | 1 +
.../system/cpu/cpu14/cache/index3/type | 1 +
.../system/cpu/cpu14/cache/index3/uevent | 0
.../cpu14/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu14/cache/uevent | 0
.../system/cpu/cpu14/node0 | 1 +
.../system/cpu/cpu14/online | 1 +
.../system/cpu/cpu14/topology/cluster_cpus | 1 +
.../cpu/cpu14/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu14/topology/cluster_id | 1 +
.../system/cpu/cpu14/topology/core_cpus | 1 +
.../system/cpu/cpu14/topology/core_cpus_list | 1 +
.../system/cpu/cpu14/topology/core_id | 1 +
.../system/cpu/cpu14/topology/core_siblings | 1 +
.../cpu/cpu14/topology/core_siblings_list | 1 +
.../system/cpu/cpu14/topology/die_cpus | 1 +
.../system/cpu/cpu14/topology/die_cpus_list | 1 +
.../system/cpu/cpu14/topology/die_id | 1 +
.../system/cpu/cpu14/topology/package_cpus | 1 +
.../cpu/cpu14/topology/package_cpus_list | 1 +
.../cpu/cpu14/topology/physical_package_id | 1 +
.../system/cpu/cpu14/topology/thread_siblings | 1 +
.../cpu/cpu14/topology/thread_siblings_list | 1 +
.../cpu15/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu15/cache/index0/id | 1 +
.../system/cpu/cpu15/cache/index0/level | 1 +
.../cpu/cpu15/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu15/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu15/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu15/cache/index0/size | 1 +
.../system/cpu/cpu15/cache/index0/type | 1 +
.../system/cpu/cpu15/cache/index0/uevent | 0
.../cpu15/cache/index0/ways_of_associativity | 1 +
.../cpu15/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu15/cache/index1/id | 1 +
.../system/cpu/cpu15/cache/index1/level | 1 +
.../cpu/cpu15/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu15/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu15/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu15/cache/index1/size | 1 +
.../system/cpu/cpu15/cache/index1/type | 1 +
.../system/cpu/cpu15/cache/index1/uevent | 0
.../cpu15/cache/index1/ways_of_associativity | 1 +
.../cpu15/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu15/cache/index2/id | 1 +
.../system/cpu/cpu15/cache/index2/level | 1 +
.../cpu/cpu15/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu15/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu15/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu15/cache/index2/size | 1 +
.../system/cpu/cpu15/cache/index2/type | 1 +
.../system/cpu/cpu15/cache/index2/uevent | 0
.../cpu15/cache/index2/ways_of_associativity | 1 +
.../cpu15/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu15/cache/index3/id | 1 +
.../system/cpu/cpu15/cache/index3/level | 1 +
.../cpu/cpu15/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu15/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu15/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu15/cache/index3/size | 1 +
.../system/cpu/cpu15/cache/index3/type | 1 +
.../system/cpu/cpu15/cache/index3/uevent | 0
.../cpu15/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu15/cache/uevent | 0
.../system/cpu/cpu15/node1 | 1 +
.../system/cpu/cpu15/online | 1 +
.../system/cpu/cpu15/topology/cluster_cpus | 1 +
.../cpu/cpu15/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu15/topology/cluster_id | 1 +
.../system/cpu/cpu15/topology/core_cpus | 1 +
.../system/cpu/cpu15/topology/core_cpus_list | 1 +
.../system/cpu/cpu15/topology/core_id | 1 +
.../system/cpu/cpu15/topology/core_siblings | 1 +
.../cpu/cpu15/topology/core_siblings_list | 1 +
.../system/cpu/cpu15/topology/die_cpus | 1 +
.../system/cpu/cpu15/topology/die_cpus_list | 1 +
.../system/cpu/cpu15/topology/die_id | 1 +
.../system/cpu/cpu15/topology/package_cpus | 1 +
.../cpu/cpu15/topology/package_cpus_list | 1 +
.../cpu/cpu15/topology/physical_package_id | 1 +
.../system/cpu/cpu15/topology/thread_siblings | 1 +
.../cpu/cpu15/topology/thread_siblings_list | 1 +
.../cpu16/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu16/cache/index0/id | 1 +
.../system/cpu/cpu16/cache/index0/level | 1 +
.../cpu/cpu16/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu16/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu16/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu16/cache/index0/size | 1 +
.../system/cpu/cpu16/cache/index0/type | 1 +
.../system/cpu/cpu16/cache/index0/uevent | 0
.../cpu16/cache/index0/ways_of_associativity | 1 +
.../cpu16/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu16/cache/index1/id | 1 +
.../system/cpu/cpu16/cache/index1/level | 1 +
.../cpu/cpu16/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu16/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu16/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu16/cache/index1/size | 1 +
.../system/cpu/cpu16/cache/index1/type | 1 +
.../system/cpu/cpu16/cache/index1/uevent | 0
.../cpu16/cache/index1/ways_of_associativity | 1 +
.../cpu16/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu16/cache/index2/id | 1 +
.../system/cpu/cpu16/cache/index2/level | 1 +
.../cpu/cpu16/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu16/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu16/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu16/cache/index2/size | 1 +
.../system/cpu/cpu16/cache/index2/type | 1 +
.../system/cpu/cpu16/cache/index2/uevent | 0
.../cpu16/cache/index2/ways_of_associativity | 1 +
.../cpu16/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu16/cache/index3/id | 1 +
.../system/cpu/cpu16/cache/index3/level | 1 +
.../cpu/cpu16/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu16/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu16/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu16/cache/index3/size | 1 +
.../system/cpu/cpu16/cache/index3/type | 1 +
.../system/cpu/cpu16/cache/index3/uevent | 0
.../cpu16/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu16/cache/uevent | 0
.../system/cpu/cpu16/node0 | 1 +
.../system/cpu/cpu16/online | 1 +
.../system/cpu/cpu16/topology/cluster_cpus | 1 +
.../cpu/cpu16/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu16/topology/cluster_id | 1 +
.../system/cpu/cpu16/topology/core_cpus | 1 +
.../system/cpu/cpu16/topology/core_cpus_list | 1 +
.../system/cpu/cpu16/topology/core_id | 1 +
.../system/cpu/cpu16/topology/core_siblings | 1 +
.../cpu/cpu16/topology/core_siblings_list | 1 +
.../system/cpu/cpu16/topology/die_cpus | 1 +
.../system/cpu/cpu16/topology/die_cpus_list | 1 +
.../system/cpu/cpu16/topology/die_id | 1 +
.../system/cpu/cpu16/topology/package_cpus | 1 +
.../cpu/cpu16/topology/package_cpus_list | 1 +
.../cpu/cpu16/topology/physical_package_id | 1 +
.../system/cpu/cpu16/topology/thread_siblings | 1 +
.../cpu/cpu16/topology/thread_siblings_list | 1 +
.../cpu17/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu17/cache/index0/id | 1 +
.../system/cpu/cpu17/cache/index0/level | 1 +
.../cpu/cpu17/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu17/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu17/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu17/cache/index0/size | 1 +
.../system/cpu/cpu17/cache/index0/type | 1 +
.../system/cpu/cpu17/cache/index0/uevent | 0
.../cpu17/cache/index0/ways_of_associativity | 1 +
.../cpu17/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu17/cache/index1/id | 1 +
.../system/cpu/cpu17/cache/index1/level | 1 +
.../cpu/cpu17/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu17/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu17/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu17/cache/index1/size | 1 +
.../system/cpu/cpu17/cache/index1/type | 1 +
.../system/cpu/cpu17/cache/index1/uevent | 0
.../cpu17/cache/index1/ways_of_associativity | 1 +
.../cpu17/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu17/cache/index2/id | 1 +
.../system/cpu/cpu17/cache/index2/level | 1 +
.../cpu/cpu17/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu17/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu17/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu17/cache/index2/size | 1 +
.../system/cpu/cpu17/cache/index2/type | 1 +
.../system/cpu/cpu17/cache/index2/uevent | 0
.../cpu17/cache/index2/ways_of_associativity | 1 +
.../cpu17/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu17/cache/index3/id | 1 +
.../system/cpu/cpu17/cache/index3/level | 1 +
.../cpu/cpu17/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu17/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu17/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu17/cache/index3/size | 1 +
.../system/cpu/cpu17/cache/index3/type | 1 +
.../system/cpu/cpu17/cache/index3/uevent | 0
.../cpu17/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu17/cache/uevent | 0
.../system/cpu/cpu17/node1 | 1 +
.../system/cpu/cpu17/online | 1 +
.../system/cpu/cpu17/topology/cluster_cpus | 1 +
.../cpu/cpu17/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu17/topology/cluster_id | 1 +
.../system/cpu/cpu17/topology/core_cpus | 1 +
.../system/cpu/cpu17/topology/core_cpus_list | 1 +
.../system/cpu/cpu17/topology/core_id | 1 +
.../system/cpu/cpu17/topology/core_siblings | 1 +
.../cpu/cpu17/topology/core_siblings_list | 1 +
.../system/cpu/cpu17/topology/die_cpus | 1 +
.../system/cpu/cpu17/topology/die_cpus_list | 1 +
.../system/cpu/cpu17/topology/die_id | 1 +
.../system/cpu/cpu17/topology/package_cpus | 1 +
.../cpu/cpu17/topology/package_cpus_list | 1 +
.../cpu/cpu17/topology/physical_package_id | 1 +
.../system/cpu/cpu17/topology/thread_siblings | 1 +
.../cpu/cpu17/topology/thread_siblings_list | 1 +
.../cpu18/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu18/cache/index0/id | 1 +
.../system/cpu/cpu18/cache/index0/level | 1 +
.../cpu/cpu18/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu18/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu18/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu18/cache/index0/size | 1 +
.../system/cpu/cpu18/cache/index0/type | 1 +
.../system/cpu/cpu18/cache/index0/uevent | 0
.../cpu18/cache/index0/ways_of_associativity | 1 +
.../cpu18/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu18/cache/index1/id | 1 +
.../system/cpu/cpu18/cache/index1/level | 1 +
.../cpu/cpu18/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu18/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu18/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu18/cache/index1/size | 1 +
.../system/cpu/cpu18/cache/index1/type | 1 +
.../system/cpu/cpu18/cache/index1/uevent | 0
.../cpu18/cache/index1/ways_of_associativity | 1 +
.../cpu18/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu18/cache/index2/id | 1 +
.../system/cpu/cpu18/cache/index2/level | 1 +
.../cpu/cpu18/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu18/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu18/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu18/cache/index2/size | 1 +
.../system/cpu/cpu18/cache/index2/type | 1 +
.../system/cpu/cpu18/cache/index2/uevent | 0
.../cpu18/cache/index2/ways_of_associativity | 1 +
.../cpu18/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu18/cache/index3/id | 1 +
.../system/cpu/cpu18/cache/index3/level | 1 +
.../cpu/cpu18/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu18/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu18/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu18/cache/index3/size | 1 +
.../system/cpu/cpu18/cache/index3/type | 1 +
.../system/cpu/cpu18/cache/index3/uevent | 0
.../cpu18/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu18/cache/uevent | 0
.../system/cpu/cpu18/node0 | 1 +
.../system/cpu/cpu18/online | 1 +
.../system/cpu/cpu18/topology/cluster_cpus | 1 +
.../cpu/cpu18/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu18/topology/cluster_id | 1 +
.../system/cpu/cpu18/topology/core_cpus | 1 +
.../system/cpu/cpu18/topology/core_cpus_list | 1 +
.../system/cpu/cpu18/topology/core_id | 1 +
.../system/cpu/cpu18/topology/core_siblings | 1 +
.../cpu/cpu18/topology/core_siblings_list | 1 +
.../system/cpu/cpu18/topology/die_cpus | 1 +
.../system/cpu/cpu18/topology/die_cpus_list | 1 +
.../system/cpu/cpu18/topology/die_id | 1 +
.../system/cpu/cpu18/topology/package_cpus | 1 +
.../cpu/cpu18/topology/package_cpus_list | 1 +
.../cpu/cpu18/topology/physical_package_id | 1 +
.../system/cpu/cpu18/topology/thread_siblings | 1 +
.../cpu/cpu18/topology/thread_siblings_list | 1 +
.../cpu19/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu19/cache/index0/id | 1 +
.../system/cpu/cpu19/cache/index0/level | 1 +
.../cpu/cpu19/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu19/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu19/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu19/cache/index0/size | 1 +
.../system/cpu/cpu19/cache/index0/type | 1 +
.../system/cpu/cpu19/cache/index0/uevent | 0
.../cpu19/cache/index0/ways_of_associativity | 1 +
.../cpu19/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu19/cache/index1/id | 1 +
.../system/cpu/cpu19/cache/index1/level | 1 +
.../cpu/cpu19/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu19/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu19/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu19/cache/index1/size | 1 +
.../system/cpu/cpu19/cache/index1/type | 1 +
.../system/cpu/cpu19/cache/index1/uevent | 0
.../cpu19/cache/index1/ways_of_associativity | 1 +
.../cpu19/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu19/cache/index2/id | 1 +
.../system/cpu/cpu19/cache/index2/level | 1 +
.../cpu/cpu19/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu19/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu19/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu19/cache/index2/size | 1 +
.../system/cpu/cpu19/cache/index2/type | 1 +
.../system/cpu/cpu19/cache/index2/uevent | 0
.../cpu19/cache/index2/ways_of_associativity | 1 +
.../cpu19/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu19/cache/index3/id | 1 +
.../system/cpu/cpu19/cache/index3/level | 1 +
.../cpu/cpu19/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu19/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu19/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu19/cache/index3/size | 1 +
.../system/cpu/cpu19/cache/index3/type | 1 +
.../system/cpu/cpu19/cache/index3/uevent | 0
.../cpu19/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu19/cache/uevent | 0
.../system/cpu/cpu19/node1 | 1 +
.../system/cpu/cpu19/online | 1 +
.../system/cpu/cpu19/topology/cluster_cpus | 1 +
.../cpu/cpu19/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu19/topology/cluster_id | 1 +
.../system/cpu/cpu19/topology/core_cpus | 1 +
.../system/cpu/cpu19/topology/core_cpus_list | 1 +
.../system/cpu/cpu19/topology/core_id | 1 +
.../system/cpu/cpu19/topology/core_siblings | 1 +
.../cpu/cpu19/topology/core_siblings_list | 1 +
.../system/cpu/cpu19/topology/die_cpus | 1 +
.../system/cpu/cpu19/topology/die_cpus_list | 1 +
.../system/cpu/cpu19/topology/die_id | 1 +
.../system/cpu/cpu19/topology/package_cpus | 1 +
.../cpu/cpu19/topology/package_cpus_list | 1 +
.../cpu/cpu19/topology/physical_package_id | 1 +
.../system/cpu/cpu19/topology/thread_siblings | 1 +
.../cpu/cpu19/topology/thread_siblings_list | 1 +
.../cpu/cpu2/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu2/cache/index0/id | 1 +
.../system/cpu/cpu2/cache/index0/level | 1 +
.../cpu/cpu2/cache/index0/number_of_sets | 1 +
.../cpu2/cache/index0/physical_line_partition | 1 +
.../cpu/cpu2/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu2/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu2/cache/index0/size | 1 +
.../system/cpu/cpu2/cache/index0/type | 1 +
.../system/cpu/cpu2/cache/index0/uevent | 0
.../cpu2/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu2/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu2/cache/index1/id | 1 +
.../system/cpu/cpu2/cache/index1/level | 1 +
.../cpu/cpu2/cache/index1/number_of_sets | 1 +
.../cpu2/cache/index1/physical_line_partition | 1 +
.../cpu/cpu2/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu2/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu2/cache/index1/size | 1 +
.../system/cpu/cpu2/cache/index1/type | 1 +
.../system/cpu/cpu2/cache/index1/uevent | 0
.../cpu2/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu2/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu2/cache/index2/id | 1 +
.../system/cpu/cpu2/cache/index2/level | 1 +
.../cpu/cpu2/cache/index2/number_of_sets | 1 +
.../cpu2/cache/index2/physical_line_partition | 1 +
.../cpu/cpu2/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu2/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu2/cache/index2/size | 1 +
.../system/cpu/cpu2/cache/index2/type | 1 +
.../system/cpu/cpu2/cache/index2/uevent | 0
.../cpu2/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu2/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu2/cache/index3/id | 1 +
.../system/cpu/cpu2/cache/index3/level | 1 +
.../cpu/cpu2/cache/index3/number_of_sets | 1 +
.../cpu2/cache/index3/physical_line_partition | 1 +
.../cpu/cpu2/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu2/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu2/cache/index3/size | 1 +
.../system/cpu/cpu2/cache/index3/type | 1 +
.../system/cpu/cpu2/cache/index3/uevent | 0
.../cpu2/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu2/cache/uevent | 0
.../system/cpu/cpu2/node0 | 1 +
.../system/cpu/cpu2/online | 1 +
.../system/cpu/cpu2/topology/cluster_cpus | 1 +
.../cpu/cpu2/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu2/topology/cluster_id | 1 +
.../system/cpu/cpu2/topology/core_cpus | 1 +
.../system/cpu/cpu2/topology/core_cpus_list | 1 +
.../system/cpu/cpu2/topology/core_id | 1 +
.../system/cpu/cpu2/topology/core_siblings | 1 +
.../cpu/cpu2/topology/core_siblings_list | 1 +
.../system/cpu/cpu2/topology/die_cpus | 1 +
.../system/cpu/cpu2/topology/die_cpus_list | 1 +
.../system/cpu/cpu2/topology/die_id | 1 +
.../system/cpu/cpu2/topology/package_cpus | 1 +
.../cpu/cpu2/topology/package_cpus_list | 1 +
.../cpu/cpu2/topology/physical_package_id | 1 +
.../system/cpu/cpu2/topology/thread_siblings | 1 +
.../cpu/cpu2/topology/thread_siblings_list | 1 +
.../cpu20/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu20/cache/index0/id | 1 +
.../system/cpu/cpu20/cache/index0/level | 1 +
.../cpu/cpu20/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu20/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu20/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu20/cache/index0/size | 1 +
.../system/cpu/cpu20/cache/index0/type | 1 +
.../system/cpu/cpu20/cache/index0/uevent | 0
.../cpu20/cache/index0/ways_of_associativity | 1 +
.../cpu20/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu20/cache/index1/id | 1 +
.../system/cpu/cpu20/cache/index1/level | 1 +
.../cpu/cpu20/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu20/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu20/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu20/cache/index1/size | 1 +
.../system/cpu/cpu20/cache/index1/type | 1 +
.../system/cpu/cpu20/cache/index1/uevent | 0
.../cpu20/cache/index1/ways_of_associativity | 1 +
.../cpu20/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu20/cache/index2/id | 1 +
.../system/cpu/cpu20/cache/index2/level | 1 +
.../cpu/cpu20/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu20/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu20/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu20/cache/index2/size | 1 +
.../system/cpu/cpu20/cache/index2/type | 1 +
.../system/cpu/cpu20/cache/index2/uevent | 0
.../cpu20/cache/index2/ways_of_associativity | 1 +
.../cpu20/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu20/cache/index3/id | 1 +
.../system/cpu/cpu20/cache/index3/level | 1 +
.../cpu/cpu20/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu20/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu20/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu20/cache/index3/size | 1 +
.../system/cpu/cpu20/cache/index3/type | 1 +
.../system/cpu/cpu20/cache/index3/uevent | 0
.../cpu20/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu20/cache/uevent | 0
.../system/cpu/cpu20/node0 | 1 +
.../system/cpu/cpu20/online | 1 +
.../system/cpu/cpu20/topology/cluster_cpus | 1 +
.../cpu/cpu20/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu20/topology/cluster_id | 1 +
.../system/cpu/cpu20/topology/core_cpus | 1 +
.../system/cpu/cpu20/topology/core_cpus_list | 1 +
.../system/cpu/cpu20/topology/core_id | 1 +
.../system/cpu/cpu20/topology/core_siblings | 1 +
.../cpu/cpu20/topology/core_siblings_list | 1 +
.../system/cpu/cpu20/topology/die_cpus | 1 +
.../system/cpu/cpu20/topology/die_cpus_list | 1 +
.../system/cpu/cpu20/topology/die_id | 1 +
.../system/cpu/cpu20/topology/package_cpus | 1 +
.../cpu/cpu20/topology/package_cpus_list | 1 +
.../cpu/cpu20/topology/physical_package_id | 1 +
.../system/cpu/cpu20/topology/thread_siblings | 1 +
.../cpu/cpu20/topology/thread_siblings_list | 1 +
.../cpu21/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu21/cache/index0/id | 1 +
.../system/cpu/cpu21/cache/index0/level | 1 +
.../cpu/cpu21/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu21/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu21/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu21/cache/index0/size | 1 +
.../system/cpu/cpu21/cache/index0/type | 1 +
.../system/cpu/cpu21/cache/index0/uevent | 0
.../cpu21/cache/index0/ways_of_associativity | 1 +
.../cpu21/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu21/cache/index1/id | 1 +
.../system/cpu/cpu21/cache/index1/level | 1 +
.../cpu/cpu21/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu21/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu21/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu21/cache/index1/size | 1 +
.../system/cpu/cpu21/cache/index1/type | 1 +
.../system/cpu/cpu21/cache/index1/uevent | 0
.../cpu21/cache/index1/ways_of_associativity | 1 +
.../cpu21/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu21/cache/index2/id | 1 +
.../system/cpu/cpu21/cache/index2/level | 1 +
.../cpu/cpu21/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu21/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu21/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu21/cache/index2/size | 1 +
.../system/cpu/cpu21/cache/index2/type | 1 +
.../system/cpu/cpu21/cache/index2/uevent | 0
.../cpu21/cache/index2/ways_of_associativity | 1 +
.../cpu21/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu21/cache/index3/id | 1 +
.../system/cpu/cpu21/cache/index3/level | 1 +
.../cpu/cpu21/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu21/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu21/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu21/cache/index3/size | 1 +
.../system/cpu/cpu21/cache/index3/type | 1 +
.../system/cpu/cpu21/cache/index3/uevent | 0
.../cpu21/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu21/cache/uevent | 0
.../system/cpu/cpu21/node1 | 1 +
.../system/cpu/cpu21/online | 1 +
.../system/cpu/cpu21/topology/cluster_cpus | 1 +
.../cpu/cpu21/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu21/topology/cluster_id | 1 +
.../system/cpu/cpu21/topology/core_cpus | 1 +
.../system/cpu/cpu21/topology/core_cpus_list | 1 +
.../system/cpu/cpu21/topology/core_id | 1 +
.../system/cpu/cpu21/topology/core_siblings | 1 +
.../cpu/cpu21/topology/core_siblings_list | 1 +
.../system/cpu/cpu21/topology/die_cpus | 1 +
.../system/cpu/cpu21/topology/die_cpus_list | 1 +
.../system/cpu/cpu21/topology/die_id | 1 +
.../system/cpu/cpu21/topology/package_cpus | 1 +
.../cpu/cpu21/topology/package_cpus_list | 1 +
.../cpu/cpu21/topology/physical_package_id | 1 +
.../system/cpu/cpu21/topology/thread_siblings | 1 +
.../cpu/cpu21/topology/thread_siblings_list | 1 +
.../cpu22/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu22/cache/index0/id | 1 +
.../system/cpu/cpu22/cache/index0/level | 1 +
.../cpu/cpu22/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu22/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu22/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu22/cache/index0/size | 1 +
.../system/cpu/cpu22/cache/index0/type | 1 +
.../system/cpu/cpu22/cache/index0/uevent | 0
.../cpu22/cache/index0/ways_of_associativity | 1 +
.../cpu22/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu22/cache/index1/id | 1 +
.../system/cpu/cpu22/cache/index1/level | 1 +
.../cpu/cpu22/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu22/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu22/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu22/cache/index1/size | 1 +
.../system/cpu/cpu22/cache/index1/type | 1 +
.../system/cpu/cpu22/cache/index1/uevent | 0
.../cpu22/cache/index1/ways_of_associativity | 1 +
.../cpu22/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu22/cache/index2/id | 1 +
.../system/cpu/cpu22/cache/index2/level | 1 +
.../cpu/cpu22/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu22/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu22/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu22/cache/index2/size | 1 +
.../system/cpu/cpu22/cache/index2/type | 1 +
.../system/cpu/cpu22/cache/index2/uevent | 0
.../cpu22/cache/index2/ways_of_associativity | 1 +
.../cpu22/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu22/cache/index3/id | 1 +
.../system/cpu/cpu22/cache/index3/level | 1 +
.../cpu/cpu22/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu22/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu22/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu22/cache/index3/size | 1 +
.../system/cpu/cpu22/cache/index3/type | 1 +
.../system/cpu/cpu22/cache/index3/uevent | 0
.../cpu22/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu22/cache/uevent | 0
.../system/cpu/cpu22/node0 | 1 +
.../system/cpu/cpu22/online | 1 +
.../system/cpu/cpu22/topology/cluster_cpus | 1 +
.../cpu/cpu22/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu22/topology/cluster_id | 1 +
.../system/cpu/cpu22/topology/core_cpus | 1 +
.../system/cpu/cpu22/topology/core_cpus_list | 1 +
.../system/cpu/cpu22/topology/core_id | 1 +
.../system/cpu/cpu22/topology/core_siblings | 1 +
.../cpu/cpu22/topology/core_siblings_list | 1 +
.../system/cpu/cpu22/topology/die_cpus | 1 +
.../system/cpu/cpu22/topology/die_cpus_list | 1 +
.../system/cpu/cpu22/topology/die_id | 1 +
.../system/cpu/cpu22/topology/package_cpus | 1 +
.../cpu/cpu22/topology/package_cpus_list | 1 +
.../cpu/cpu22/topology/physical_package_id | 1 +
.../system/cpu/cpu22/topology/thread_siblings | 1 +
.../cpu/cpu22/topology/thread_siblings_list | 1 +
.../cpu23/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu23/cache/index0/id | 1 +
.../system/cpu/cpu23/cache/index0/level | 1 +
.../cpu/cpu23/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu23/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu23/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu23/cache/index0/size | 1 +
.../system/cpu/cpu23/cache/index0/type | 1 +
.../system/cpu/cpu23/cache/index0/uevent | 0
.../cpu23/cache/index0/ways_of_associativity | 1 +
.../cpu23/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu23/cache/index1/id | 1 +
.../system/cpu/cpu23/cache/index1/level | 1 +
.../cpu/cpu23/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu23/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu23/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu23/cache/index1/size | 1 +
.../system/cpu/cpu23/cache/index1/type | 1 +
.../system/cpu/cpu23/cache/index1/uevent | 0
.../cpu23/cache/index1/ways_of_associativity | 1 +
.../cpu23/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu23/cache/index2/id | 1 +
.../system/cpu/cpu23/cache/index2/level | 1 +
.../cpu/cpu23/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu23/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu23/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu23/cache/index2/size | 1 +
.../system/cpu/cpu23/cache/index2/type | 1 +
.../system/cpu/cpu23/cache/index2/uevent | 0
.../cpu23/cache/index2/ways_of_associativity | 1 +
.../cpu23/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu23/cache/index3/id | 1 +
.../system/cpu/cpu23/cache/index3/level | 1 +
.../cpu/cpu23/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu23/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu23/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu23/cache/index3/size | 1 +
.../system/cpu/cpu23/cache/index3/type | 1 +
.../system/cpu/cpu23/cache/index3/uevent | 0
.../cpu23/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu23/cache/uevent | 0
.../system/cpu/cpu23/node1 | 1 +
.../system/cpu/cpu23/online | 1 +
.../system/cpu/cpu23/topology/cluster_cpus | 1 +
.../cpu/cpu23/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu23/topology/cluster_id | 1 +
.../system/cpu/cpu23/topology/core_cpus | 1 +
.../system/cpu/cpu23/topology/core_cpus_list | 1 +
.../system/cpu/cpu23/topology/core_id | 1 +
.../system/cpu/cpu23/topology/core_siblings | 1 +
.../cpu/cpu23/topology/core_siblings_list | 1 +
.../system/cpu/cpu23/topology/die_cpus | 1 +
.../system/cpu/cpu23/topology/die_cpus_list | 1 +
.../system/cpu/cpu23/topology/die_id | 1 +
.../system/cpu/cpu23/topology/package_cpus | 1 +
.../cpu/cpu23/topology/package_cpus_list | 1 +
.../cpu/cpu23/topology/physical_package_id | 1 +
.../system/cpu/cpu23/topology/thread_siblings | 1 +
.../cpu/cpu23/topology/thread_siblings_list | 1 +
.../cpu24/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu24/cache/index0/id | 1 +
.../system/cpu/cpu24/cache/index0/level | 1 +
.../cpu/cpu24/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu24/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu24/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu24/cache/index0/size | 1 +
.../system/cpu/cpu24/cache/index0/type | 1 +
.../system/cpu/cpu24/cache/index0/uevent | 0
.../cpu24/cache/index0/ways_of_associativity | 1 +
.../cpu24/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu24/cache/index1/id | 1 +
.../system/cpu/cpu24/cache/index1/level | 1 +
.../cpu/cpu24/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu24/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu24/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu24/cache/index1/size | 1 +
.../system/cpu/cpu24/cache/index1/type | 1 +
.../system/cpu/cpu24/cache/index1/uevent | 0
.../cpu24/cache/index1/ways_of_associativity | 1 +
.../cpu24/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu24/cache/index2/id | 1 +
.../system/cpu/cpu24/cache/index2/level | 1 +
.../cpu/cpu24/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu24/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu24/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu24/cache/index2/size | 1 +
.../system/cpu/cpu24/cache/index2/type | 1 +
.../system/cpu/cpu24/cache/index2/uevent | 0
.../cpu24/cache/index2/ways_of_associativity | 1 +
.../cpu24/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu24/cache/index3/id | 1 +
.../system/cpu/cpu24/cache/index3/level | 1 +
.../cpu/cpu24/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu24/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu24/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu24/cache/index3/size | 1 +
.../system/cpu/cpu24/cache/index3/type | 1 +
.../system/cpu/cpu24/cache/index3/uevent | 0
.../cpu24/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu24/cache/uevent | 0
.../system/cpu/cpu24/node0 | 1 +
.../system/cpu/cpu24/online | 1 +
.../system/cpu/cpu24/topology/cluster_cpus | 1 +
.../cpu/cpu24/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu24/topology/cluster_id | 1 +
.../system/cpu/cpu24/topology/core_cpus | 1 +
.../system/cpu/cpu24/topology/core_cpus_list | 1 +
.../system/cpu/cpu24/topology/core_id | 1 +
.../system/cpu/cpu24/topology/core_siblings | 1 +
.../cpu/cpu24/topology/core_siblings_list | 1 +
.../system/cpu/cpu24/topology/die_cpus | 1 +
.../system/cpu/cpu24/topology/die_cpus_list | 1 +
.../system/cpu/cpu24/topology/die_id | 1 +
.../system/cpu/cpu24/topology/package_cpus | 1 +
.../cpu/cpu24/topology/package_cpus_list | 1 +
.../cpu/cpu24/topology/physical_package_id | 1 +
.../system/cpu/cpu24/topology/thread_siblings | 1 +
.../cpu/cpu24/topology/thread_siblings_list | 1 +
.../cpu25/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu25/cache/index0/id | 1 +
.../system/cpu/cpu25/cache/index0/level | 1 +
.../cpu/cpu25/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu25/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu25/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu25/cache/index0/size | 1 +
.../system/cpu/cpu25/cache/index0/type | 1 +
.../system/cpu/cpu25/cache/index0/uevent | 0
.../cpu25/cache/index0/ways_of_associativity | 1 +
.../cpu25/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu25/cache/index1/id | 1 +
.../system/cpu/cpu25/cache/index1/level | 1 +
.../cpu/cpu25/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu25/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu25/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu25/cache/index1/size | 1 +
.../system/cpu/cpu25/cache/index1/type | 1 +
.../system/cpu/cpu25/cache/index1/uevent | 0
.../cpu25/cache/index1/ways_of_associativity | 1 +
.../cpu25/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu25/cache/index2/id | 1 +
.../system/cpu/cpu25/cache/index2/level | 1 +
.../cpu/cpu25/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu25/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu25/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu25/cache/index2/size | 1 +
.../system/cpu/cpu25/cache/index2/type | 1 +
.../system/cpu/cpu25/cache/index2/uevent | 0
.../cpu25/cache/index2/ways_of_associativity | 1 +
.../cpu25/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu25/cache/index3/id | 1 +
.../system/cpu/cpu25/cache/index3/level | 1 +
.../cpu/cpu25/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu25/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu25/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu25/cache/index3/size | 1 +
.../system/cpu/cpu25/cache/index3/type | 1 +
.../system/cpu/cpu25/cache/index3/uevent | 0
.../cpu25/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu25/cache/uevent | 0
.../system/cpu/cpu25/node1 | 1 +
.../system/cpu/cpu25/online | 1 +
.../system/cpu/cpu25/topology/cluster_cpus | 1 +
.../cpu/cpu25/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu25/topology/cluster_id | 1 +
.../system/cpu/cpu25/topology/core_cpus | 1 +
.../system/cpu/cpu25/topology/core_cpus_list | 1 +
.../system/cpu/cpu25/topology/core_id | 1 +
.../system/cpu/cpu25/topology/core_siblings | 1 +
.../cpu/cpu25/topology/core_siblings_list | 1 +
.../system/cpu/cpu25/topology/die_cpus | 1 +
.../system/cpu/cpu25/topology/die_cpus_list | 1 +
.../system/cpu/cpu25/topology/die_id | 1 +
.../system/cpu/cpu25/topology/package_cpus | 1 +
.../cpu/cpu25/topology/package_cpus_list | 1 +
.../cpu/cpu25/topology/physical_package_id | 1 +
.../system/cpu/cpu25/topology/thread_siblings | 1 +
.../cpu/cpu25/topology/thread_siblings_list | 1 +
.../cpu26/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu26/cache/index0/id | 1 +
.../system/cpu/cpu26/cache/index0/level | 1 +
.../cpu/cpu26/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu26/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu26/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu26/cache/index0/size | 1 +
.../system/cpu/cpu26/cache/index0/type | 1 +
.../system/cpu/cpu26/cache/index0/uevent | 0
.../cpu26/cache/index0/ways_of_associativity | 1 +
.../cpu26/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu26/cache/index1/id | 1 +
.../system/cpu/cpu26/cache/index1/level | 1 +
.../cpu/cpu26/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu26/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu26/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu26/cache/index1/size | 1 +
.../system/cpu/cpu26/cache/index1/type | 1 +
.../system/cpu/cpu26/cache/index1/uevent | 0
.../cpu26/cache/index1/ways_of_associativity | 1 +
.../cpu26/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu26/cache/index2/id | 1 +
.../system/cpu/cpu26/cache/index2/level | 1 +
.../cpu/cpu26/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu26/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu26/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu26/cache/index2/size | 1 +
.../system/cpu/cpu26/cache/index2/type | 1 +
.../system/cpu/cpu26/cache/index2/uevent | 0
.../cpu26/cache/index2/ways_of_associativity | 1 +
.../cpu26/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu26/cache/index3/id | 1 +
.../system/cpu/cpu26/cache/index3/level | 1 +
.../cpu/cpu26/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu26/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu26/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu26/cache/index3/size | 1 +
.../system/cpu/cpu26/cache/index3/type | 1 +
.../system/cpu/cpu26/cache/index3/uevent | 0
.../cpu26/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu26/cache/uevent | 0
.../system/cpu/cpu26/node0 | 1 +
.../system/cpu/cpu26/online | 1 +
.../system/cpu/cpu26/topology/cluster_cpus | 1 +
.../cpu/cpu26/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu26/topology/cluster_id | 1 +
.../system/cpu/cpu26/topology/core_cpus | 1 +
.../system/cpu/cpu26/topology/core_cpus_list | 1 +
.../system/cpu/cpu26/topology/core_id | 1 +
.../system/cpu/cpu26/topology/core_siblings | 1 +
.../cpu/cpu26/topology/core_siblings_list | 1 +
.../system/cpu/cpu26/topology/die_cpus | 1 +
.../system/cpu/cpu26/topology/die_cpus_list | 1 +
.../system/cpu/cpu26/topology/die_id | 1 +
.../system/cpu/cpu26/topology/package_cpus | 1 +
.../cpu/cpu26/topology/package_cpus_list | 1 +
.../cpu/cpu26/topology/physical_package_id | 1 +
.../system/cpu/cpu26/topology/thread_siblings | 1 +
.../cpu/cpu26/topology/thread_siblings_list | 1 +
.../cpu27/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu27/cache/index0/id | 1 +
.../system/cpu/cpu27/cache/index0/level | 1 +
.../cpu/cpu27/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu27/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu27/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu27/cache/index0/size | 1 +
.../system/cpu/cpu27/cache/index0/type | 1 +
.../system/cpu/cpu27/cache/index0/uevent | 0
.../cpu27/cache/index0/ways_of_associativity | 1 +
.../cpu27/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu27/cache/index1/id | 1 +
.../system/cpu/cpu27/cache/index1/level | 1 +
.../cpu/cpu27/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu27/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu27/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu27/cache/index1/size | 1 +
.../system/cpu/cpu27/cache/index1/type | 1 +
.../system/cpu/cpu27/cache/index1/uevent | 0
.../cpu27/cache/index1/ways_of_associativity | 1 +
.../cpu27/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu27/cache/index2/id | 1 +
.../system/cpu/cpu27/cache/index2/level | 1 +
.../cpu/cpu27/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu27/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu27/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu27/cache/index2/size | 1 +
.../system/cpu/cpu27/cache/index2/type | 1 +
.../system/cpu/cpu27/cache/index2/uevent | 0
.../cpu27/cache/index2/ways_of_associativity | 1 +
.../cpu27/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu27/cache/index3/id | 1 +
.../system/cpu/cpu27/cache/index3/level | 1 +
.../cpu/cpu27/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu27/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu27/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu27/cache/index3/size | 1 +
.../system/cpu/cpu27/cache/index3/type | 1 +
.../system/cpu/cpu27/cache/index3/uevent | 0
.../cpu27/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu27/cache/uevent | 0
.../system/cpu/cpu27/node1 | 1 +
.../system/cpu/cpu27/online | 1 +
.../system/cpu/cpu27/topology/cluster_cpus | 1 +
.../cpu/cpu27/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu27/topology/cluster_id | 1 +
.../system/cpu/cpu27/topology/core_cpus | 1 +
.../system/cpu/cpu27/topology/core_cpus_list | 1 +
.../system/cpu/cpu27/topology/core_id | 1 +
.../system/cpu/cpu27/topology/core_siblings | 1 +
.../cpu/cpu27/topology/core_siblings_list | 1 +
.../system/cpu/cpu27/topology/die_cpus | 1 +
.../system/cpu/cpu27/topology/die_cpus_list | 1 +
.../system/cpu/cpu27/topology/die_id | 1 +
.../system/cpu/cpu27/topology/package_cpus | 1 +
.../cpu/cpu27/topology/package_cpus_list | 1 +
.../cpu/cpu27/topology/physical_package_id | 1 +
.../system/cpu/cpu27/topology/thread_siblings | 1 +
.../cpu/cpu27/topology/thread_siblings_list | 1 +
.../cpu28/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu28/cache/index0/id | 1 +
.../system/cpu/cpu28/cache/index0/level | 1 +
.../cpu/cpu28/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu28/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu28/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu28/cache/index0/size | 1 +
.../system/cpu/cpu28/cache/index0/type | 1 +
.../system/cpu/cpu28/cache/index0/uevent | 0
.../cpu28/cache/index0/ways_of_associativity | 1 +
.../cpu28/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu28/cache/index1/id | 1 +
.../system/cpu/cpu28/cache/index1/level | 1 +
.../cpu/cpu28/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu28/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu28/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu28/cache/index1/size | 1 +
.../system/cpu/cpu28/cache/index1/type | 1 +
.../system/cpu/cpu28/cache/index1/uevent | 0
.../cpu28/cache/index1/ways_of_associativity | 1 +
.../cpu28/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu28/cache/index2/id | 1 +
.../system/cpu/cpu28/cache/index2/level | 1 +
.../cpu/cpu28/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu28/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu28/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu28/cache/index2/size | 1 +
.../system/cpu/cpu28/cache/index2/type | 1 +
.../system/cpu/cpu28/cache/index2/uevent | 0
.../cpu28/cache/index2/ways_of_associativity | 1 +
.../cpu28/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu28/cache/index3/id | 1 +
.../system/cpu/cpu28/cache/index3/level | 1 +
.../cpu/cpu28/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu28/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu28/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu28/cache/index3/size | 1 +
.../system/cpu/cpu28/cache/index3/type | 1 +
.../system/cpu/cpu28/cache/index3/uevent | 0
.../cpu28/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu28/cache/uevent | 0
.../system/cpu/cpu28/node0 | 1 +
.../system/cpu/cpu28/online | 1 +
.../system/cpu/cpu28/topology/cluster_cpus | 1 +
.../cpu/cpu28/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu28/topology/cluster_id | 1 +
.../system/cpu/cpu28/topology/core_cpus | 1 +
.../system/cpu/cpu28/topology/core_cpus_list | 1 +
.../system/cpu/cpu28/topology/core_id | 1 +
.../system/cpu/cpu28/topology/core_siblings | 1 +
.../cpu/cpu28/topology/core_siblings_list | 1 +
.../system/cpu/cpu28/topology/die_cpus | 1 +
.../system/cpu/cpu28/topology/die_cpus_list | 1 +
.../system/cpu/cpu28/topology/die_id | 1 +
.../system/cpu/cpu28/topology/package_cpus | 1 +
.../cpu/cpu28/topology/package_cpus_list | 1 +
.../cpu/cpu28/topology/physical_package_id | 1 +
.../system/cpu/cpu28/topology/thread_siblings | 1 +
.../cpu/cpu28/topology/thread_siblings_list | 1 +
.../cpu29/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu29/cache/index0/id | 1 +
.../system/cpu/cpu29/cache/index0/level | 1 +
.../cpu/cpu29/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu29/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu29/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu29/cache/index0/size | 1 +
.../system/cpu/cpu29/cache/index0/type | 1 +
.../system/cpu/cpu29/cache/index0/uevent | 0
.../cpu29/cache/index0/ways_of_associativity | 1 +
.../cpu29/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu29/cache/index1/id | 1 +
.../system/cpu/cpu29/cache/index1/level | 1 +
.../cpu/cpu29/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu29/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu29/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu29/cache/index1/size | 1 +
.../system/cpu/cpu29/cache/index1/type | 1 +
.../system/cpu/cpu29/cache/index1/uevent | 0
.../cpu29/cache/index1/ways_of_associativity | 1 +
.../cpu29/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu29/cache/index2/id | 1 +
.../system/cpu/cpu29/cache/index2/level | 1 +
.../cpu/cpu29/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu29/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu29/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu29/cache/index2/size | 1 +
.../system/cpu/cpu29/cache/index2/type | 1 +
.../system/cpu/cpu29/cache/index2/uevent | 0
.../cpu29/cache/index2/ways_of_associativity | 1 +
.../cpu29/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu29/cache/index3/id | 1 +
.../system/cpu/cpu29/cache/index3/level | 1 +
.../cpu/cpu29/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu29/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu29/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu29/cache/index3/size | 1 +
.../system/cpu/cpu29/cache/index3/type | 1 +
.../system/cpu/cpu29/cache/index3/uevent | 0
.../cpu29/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu29/cache/uevent | 0
.../system/cpu/cpu29/node1 | 1 +
.../system/cpu/cpu29/online | 1 +
.../system/cpu/cpu29/topology/cluster_cpus | 1 +
.../cpu/cpu29/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu29/topology/cluster_id | 1 +
.../system/cpu/cpu29/topology/core_cpus | 1 +
.../system/cpu/cpu29/topology/core_cpus_list | 1 +
.../system/cpu/cpu29/topology/core_id | 1 +
.../system/cpu/cpu29/topology/core_siblings | 1 +
.../cpu/cpu29/topology/core_siblings_list | 1 +
.../system/cpu/cpu29/topology/die_cpus | 1 +
.../system/cpu/cpu29/topology/die_cpus_list | 1 +
.../system/cpu/cpu29/topology/die_id | 1 +
.../system/cpu/cpu29/topology/package_cpus | 1 +
.../cpu/cpu29/topology/package_cpus_list | 1 +
.../cpu/cpu29/topology/physical_package_id | 1 +
.../system/cpu/cpu29/topology/thread_siblings | 1 +
.../cpu/cpu29/topology/thread_siblings_list | 1 +
.../cpu/cpu3/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu3/cache/index0/id | 1 +
.../system/cpu/cpu3/cache/index0/level | 1 +
.../cpu/cpu3/cache/index0/number_of_sets | 1 +
.../cpu3/cache/index0/physical_line_partition | 1 +
.../cpu/cpu3/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu3/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu3/cache/index0/size | 1 +
.../system/cpu/cpu3/cache/index0/type | 1 +
.../system/cpu/cpu3/cache/index0/uevent | 0
.../cpu3/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu3/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu3/cache/index1/id | 1 +
.../system/cpu/cpu3/cache/index1/level | 1 +
.../cpu/cpu3/cache/index1/number_of_sets | 1 +
.../cpu3/cache/index1/physical_line_partition | 1 +
.../cpu/cpu3/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu3/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu3/cache/index1/size | 1 +
.../system/cpu/cpu3/cache/index1/type | 1 +
.../system/cpu/cpu3/cache/index1/uevent | 0
.../cpu3/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu3/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu3/cache/index2/id | 1 +
.../system/cpu/cpu3/cache/index2/level | 1 +
.../cpu/cpu3/cache/index2/number_of_sets | 1 +
.../cpu3/cache/index2/physical_line_partition | 1 +
.../cpu/cpu3/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu3/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu3/cache/index2/size | 1 +
.../system/cpu/cpu3/cache/index2/type | 1 +
.../system/cpu/cpu3/cache/index2/uevent | 0
.../cpu3/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu3/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu3/cache/index3/id | 1 +
.../system/cpu/cpu3/cache/index3/level | 1 +
.../cpu/cpu3/cache/index3/number_of_sets | 1 +
.../cpu3/cache/index3/physical_line_partition | 1 +
.../cpu/cpu3/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu3/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu3/cache/index3/size | 1 +
.../system/cpu/cpu3/cache/index3/type | 1 +
.../system/cpu/cpu3/cache/index3/uevent | 0
.../cpu3/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu3/cache/uevent | 0
.../system/cpu/cpu3/node1 | 1 +
.../system/cpu/cpu3/online | 1 +
.../system/cpu/cpu3/topology/cluster_cpus | 1 +
.../cpu/cpu3/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu3/topology/cluster_id | 1 +
.../system/cpu/cpu3/topology/core_cpus | 1 +
.../system/cpu/cpu3/topology/core_cpus_list | 1 +
.../system/cpu/cpu3/topology/core_id | 1 +
.../system/cpu/cpu3/topology/core_siblings | 1 +
.../cpu/cpu3/topology/core_siblings_list | 1 +
.../system/cpu/cpu3/topology/die_cpus | 1 +
.../system/cpu/cpu3/topology/die_cpus_list | 1 +
.../system/cpu/cpu3/topology/die_id | 1 +
.../system/cpu/cpu3/topology/package_cpus | 1 +
.../cpu/cpu3/topology/package_cpus_list | 1 +
.../cpu/cpu3/topology/physical_package_id | 1 +
.../system/cpu/cpu3/topology/thread_siblings | 1 +
.../cpu/cpu3/topology/thread_siblings_list | 1 +
.../cpu30/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu30/cache/index0/id | 1 +
.../system/cpu/cpu30/cache/index0/level | 1 +
.../cpu/cpu30/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu30/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu30/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu30/cache/index0/size | 1 +
.../system/cpu/cpu30/cache/index0/type | 1 +
.../system/cpu/cpu30/cache/index0/uevent | 0
.../cpu30/cache/index0/ways_of_associativity | 1 +
.../cpu30/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu30/cache/index1/id | 1 +
.../system/cpu/cpu30/cache/index1/level | 1 +
.../cpu/cpu30/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu30/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu30/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu30/cache/index1/size | 1 +
.../system/cpu/cpu30/cache/index1/type | 1 +
.../system/cpu/cpu30/cache/index1/uevent | 0
.../cpu30/cache/index1/ways_of_associativity | 1 +
.../cpu30/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu30/cache/index2/id | 1 +
.../system/cpu/cpu30/cache/index2/level | 1 +
.../cpu/cpu30/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu30/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu30/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu30/cache/index2/size | 1 +
.../system/cpu/cpu30/cache/index2/type | 1 +
.../system/cpu/cpu30/cache/index2/uevent | 0
.../cpu30/cache/index2/ways_of_associativity | 1 +
.../cpu30/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu30/cache/index3/id | 1 +
.../system/cpu/cpu30/cache/index3/level | 1 +
.../cpu/cpu30/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu30/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu30/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu30/cache/index3/size | 1 +
.../system/cpu/cpu30/cache/index3/type | 1 +
.../system/cpu/cpu30/cache/index3/uevent | 0
.../cpu30/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu30/cache/uevent | 0
.../system/cpu/cpu30/node0 | 1 +
.../system/cpu/cpu30/online | 1 +
.../system/cpu/cpu30/topology/cluster_cpus | 1 +
.../cpu/cpu30/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu30/topology/cluster_id | 1 +
.../system/cpu/cpu30/topology/core_cpus | 1 +
.../system/cpu/cpu30/topology/core_cpus_list | 1 +
.../system/cpu/cpu30/topology/core_id | 1 +
.../system/cpu/cpu30/topology/core_siblings | 1 +
.../cpu/cpu30/topology/core_siblings_list | 1 +
.../system/cpu/cpu30/topology/die_cpus | 1 +
.../system/cpu/cpu30/topology/die_cpus_list | 1 +
.../system/cpu/cpu30/topology/die_id | 1 +
.../system/cpu/cpu30/topology/package_cpus | 1 +
.../cpu/cpu30/topology/package_cpus_list | 1 +
.../cpu/cpu30/topology/physical_package_id | 1 +
.../system/cpu/cpu30/topology/thread_siblings | 1 +
.../cpu/cpu30/topology/thread_siblings_list | 1 +
.../cpu31/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu31/cache/index0/id | 1 +
.../system/cpu/cpu31/cache/index0/level | 1 +
.../cpu/cpu31/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu31/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu31/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu31/cache/index0/size | 1 +
.../system/cpu/cpu31/cache/index0/type | 1 +
.../system/cpu/cpu31/cache/index0/uevent | 0
.../cpu31/cache/index0/ways_of_associativity | 1 +
.../cpu31/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu31/cache/index1/id | 1 +
.../system/cpu/cpu31/cache/index1/level | 1 +
.../cpu/cpu31/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu31/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu31/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu31/cache/index1/size | 1 +
.../system/cpu/cpu31/cache/index1/type | 1 +
.../system/cpu/cpu31/cache/index1/uevent | 0
.../cpu31/cache/index1/ways_of_associativity | 1 +
.../cpu31/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu31/cache/index2/id | 1 +
.../system/cpu/cpu31/cache/index2/level | 1 +
.../cpu/cpu31/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu31/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu31/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu31/cache/index2/size | 1 +
.../system/cpu/cpu31/cache/index2/type | 1 +
.../system/cpu/cpu31/cache/index2/uevent | 0
.../cpu31/cache/index2/ways_of_associativity | 1 +
.../cpu31/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu31/cache/index3/id | 1 +
.../system/cpu/cpu31/cache/index3/level | 1 +
.../cpu/cpu31/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu31/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu31/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu31/cache/index3/size | 1 +
.../system/cpu/cpu31/cache/index3/type | 1 +
.../system/cpu/cpu31/cache/index3/uevent | 0
.../cpu31/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu31/cache/uevent | 0
.../system/cpu/cpu31/node1 | 1 +
.../system/cpu/cpu31/online | 1 +
.../system/cpu/cpu31/topology/cluster_cpus | 1 +
.../cpu/cpu31/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu31/topology/cluster_id | 1 +
.../system/cpu/cpu31/topology/core_cpus | 1 +
.../system/cpu/cpu31/topology/core_cpus_list | 1 +
.../system/cpu/cpu31/topology/core_id | 1 +
.../system/cpu/cpu31/topology/core_siblings | 1 +
.../cpu/cpu31/topology/core_siblings_list | 1 +
.../system/cpu/cpu31/topology/die_cpus | 1 +
.../system/cpu/cpu31/topology/die_cpus_list | 1 +
.../system/cpu/cpu31/topology/die_id | 1 +
.../system/cpu/cpu31/topology/package_cpus | 1 +
.../cpu/cpu31/topology/package_cpus_list | 1 +
.../cpu/cpu31/topology/physical_package_id | 1 +
.../system/cpu/cpu31/topology/thread_siblings | 1 +
.../cpu/cpu31/topology/thread_siblings_list | 1 +
.../cpu32/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu32/cache/index0/id | 1 +
.../system/cpu/cpu32/cache/index0/level | 1 +
.../cpu/cpu32/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu32/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu32/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu32/cache/index0/size | 1 +
.../system/cpu/cpu32/cache/index0/type | 1 +
.../system/cpu/cpu32/cache/index0/uevent | 0
.../cpu32/cache/index0/ways_of_associativity | 1 +
.../cpu32/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu32/cache/index1/id | 1 +
.../system/cpu/cpu32/cache/index1/level | 1 +
.../cpu/cpu32/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu32/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu32/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu32/cache/index1/size | 1 +
.../system/cpu/cpu32/cache/index1/type | 1 +
.../system/cpu/cpu32/cache/index1/uevent | 0
.../cpu32/cache/index1/ways_of_associativity | 1 +
.../cpu32/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu32/cache/index2/id | 1 +
.../system/cpu/cpu32/cache/index2/level | 1 +
.../cpu/cpu32/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu32/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu32/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu32/cache/index2/size | 1 +
.../system/cpu/cpu32/cache/index2/type | 1 +
.../system/cpu/cpu32/cache/index2/uevent | 0
.../cpu32/cache/index2/ways_of_associativity | 1 +
.../cpu32/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu32/cache/index3/id | 1 +
.../system/cpu/cpu32/cache/index3/level | 1 +
.../cpu/cpu32/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu32/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu32/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu32/cache/index3/size | 1 +
.../system/cpu/cpu32/cache/index3/type | 1 +
.../system/cpu/cpu32/cache/index3/uevent | 0
.../cpu32/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu32/cache/uevent | 0
.../system/cpu/cpu32/node0 | 1 +
.../system/cpu/cpu32/online | 1 +
.../system/cpu/cpu32/topology/cluster_cpus | 1 +
.../cpu/cpu32/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu32/topology/cluster_id | 1 +
.../system/cpu/cpu32/topology/core_cpus | 1 +
.../system/cpu/cpu32/topology/core_cpus_list | 1 +
.../system/cpu/cpu32/topology/core_id | 1 +
.../system/cpu/cpu32/topology/core_siblings | 1 +
.../cpu/cpu32/topology/core_siblings_list | 1 +
.../system/cpu/cpu32/topology/die_cpus | 1 +
.../system/cpu/cpu32/topology/die_cpus_list | 1 +
.../system/cpu/cpu32/topology/die_id | 1 +
.../system/cpu/cpu32/topology/package_cpus | 1 +
.../cpu/cpu32/topology/package_cpus_list | 1 +
.../cpu/cpu32/topology/physical_package_id | 1 +
.../system/cpu/cpu32/topology/thread_siblings | 1 +
.../cpu/cpu32/topology/thread_siblings_list | 1 +
.../cpu33/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu33/cache/index0/id | 1 +
.../system/cpu/cpu33/cache/index0/level | 1 +
.../cpu/cpu33/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu33/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu33/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu33/cache/index0/size | 1 +
.../system/cpu/cpu33/cache/index0/type | 1 +
.../system/cpu/cpu33/cache/index0/uevent | 0
.../cpu33/cache/index0/ways_of_associativity | 1 +
.../cpu33/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu33/cache/index1/id | 1 +
.../system/cpu/cpu33/cache/index1/level | 1 +
.../cpu/cpu33/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu33/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu33/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu33/cache/index1/size | 1 +
.../system/cpu/cpu33/cache/index1/type | 1 +
.../system/cpu/cpu33/cache/index1/uevent | 0
.../cpu33/cache/index1/ways_of_associativity | 1 +
.../cpu33/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu33/cache/index2/id | 1 +
.../system/cpu/cpu33/cache/index2/level | 1 +
.../cpu/cpu33/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu33/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu33/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu33/cache/index2/size | 1 +
.../system/cpu/cpu33/cache/index2/type | 1 +
.../system/cpu/cpu33/cache/index2/uevent | 0
.../cpu33/cache/index2/ways_of_associativity | 1 +
.../cpu33/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu33/cache/index3/id | 1 +
.../system/cpu/cpu33/cache/index3/level | 1 +
.../cpu/cpu33/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu33/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu33/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu33/cache/index3/size | 1 +
.../system/cpu/cpu33/cache/index3/type | 1 +
.../system/cpu/cpu33/cache/index3/uevent | 0
.../cpu33/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu33/cache/uevent | 0
.../system/cpu/cpu33/node1 | 1 +
.../system/cpu/cpu33/online | 1 +
.../system/cpu/cpu33/topology/cluster_cpus | 1 +
.../cpu/cpu33/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu33/topology/cluster_id | 1 +
.../system/cpu/cpu33/topology/core_cpus | 1 +
.../system/cpu/cpu33/topology/core_cpus_list | 1 +
.../system/cpu/cpu33/topology/core_id | 1 +
.../system/cpu/cpu33/topology/core_siblings | 1 +
.../cpu/cpu33/topology/core_siblings_list | 1 +
.../system/cpu/cpu33/topology/die_cpus | 1 +
.../system/cpu/cpu33/topology/die_cpus_list | 1 +
.../system/cpu/cpu33/topology/die_id | 1 +
.../system/cpu/cpu33/topology/package_cpus | 1 +
.../cpu/cpu33/topology/package_cpus_list | 1 +
.../cpu/cpu33/topology/physical_package_id | 1 +
.../system/cpu/cpu33/topology/thread_siblings | 1 +
.../cpu/cpu33/topology/thread_siblings_list | 1 +
.../cpu34/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu34/cache/index0/id | 1 +
.../system/cpu/cpu34/cache/index0/level | 1 +
.../cpu/cpu34/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu34/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu34/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu34/cache/index0/size | 1 +
.../system/cpu/cpu34/cache/index0/type | 1 +
.../system/cpu/cpu34/cache/index0/uevent | 0
.../cpu34/cache/index0/ways_of_associativity | 1 +
.../cpu34/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu34/cache/index1/id | 1 +
.../system/cpu/cpu34/cache/index1/level | 1 +
.../cpu/cpu34/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu34/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu34/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu34/cache/index1/size | 1 +
.../system/cpu/cpu34/cache/index1/type | 1 +
.../system/cpu/cpu34/cache/index1/uevent | 0
.../cpu34/cache/index1/ways_of_associativity | 1 +
.../cpu34/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu34/cache/index2/id | 1 +
.../system/cpu/cpu34/cache/index2/level | 1 +
.../cpu/cpu34/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu34/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu34/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu34/cache/index2/size | 1 +
.../system/cpu/cpu34/cache/index2/type | 1 +
.../system/cpu/cpu34/cache/index2/uevent | 0
.../cpu34/cache/index2/ways_of_associativity | 1 +
.../cpu34/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu34/cache/index3/id | 1 +
.../system/cpu/cpu34/cache/index3/level | 1 +
.../cpu/cpu34/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu34/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu34/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu34/cache/index3/size | 1 +
.../system/cpu/cpu34/cache/index3/type | 1 +
.../system/cpu/cpu34/cache/index3/uevent | 0
.../cpu34/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu34/cache/uevent | 0
.../system/cpu/cpu34/node0 | 1 +
.../system/cpu/cpu34/online | 1 +
.../system/cpu/cpu34/topology/cluster_cpus | 1 +
.../cpu/cpu34/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu34/topology/cluster_id | 1 +
.../system/cpu/cpu34/topology/core_cpus | 1 +
.../system/cpu/cpu34/topology/core_cpus_list | 1 +
.../system/cpu/cpu34/topology/core_id | 1 +
.../system/cpu/cpu34/topology/core_siblings | 1 +
.../cpu/cpu34/topology/core_siblings_list | 1 +
.../system/cpu/cpu34/topology/die_cpus | 1 +
.../system/cpu/cpu34/topology/die_cpus_list | 1 +
.../system/cpu/cpu34/topology/die_id | 1 +
.../system/cpu/cpu34/topology/package_cpus | 1 +
.../cpu/cpu34/topology/package_cpus_list | 1 +
.../cpu/cpu34/topology/physical_package_id | 1 +
.../system/cpu/cpu34/topology/thread_siblings | 1 +
.../cpu/cpu34/topology/thread_siblings_list | 1 +
.../cpu35/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu35/cache/index0/id | 1 +
.../system/cpu/cpu35/cache/index0/level | 1 +
.../cpu/cpu35/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu35/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu35/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu35/cache/index0/size | 1 +
.../system/cpu/cpu35/cache/index0/type | 1 +
.../system/cpu/cpu35/cache/index0/uevent | 0
.../cpu35/cache/index0/ways_of_associativity | 1 +
.../cpu35/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu35/cache/index1/id | 1 +
.../system/cpu/cpu35/cache/index1/level | 1 +
.../cpu/cpu35/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu35/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu35/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu35/cache/index1/size | 1 +
.../system/cpu/cpu35/cache/index1/type | 1 +
.../system/cpu/cpu35/cache/index1/uevent | 0
.../cpu35/cache/index1/ways_of_associativity | 1 +
.../cpu35/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu35/cache/index2/id | 1 +
.../system/cpu/cpu35/cache/index2/level | 1 +
.../cpu/cpu35/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu35/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu35/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu35/cache/index2/size | 1 +
.../system/cpu/cpu35/cache/index2/type | 1 +
.../system/cpu/cpu35/cache/index2/uevent | 0
.../cpu35/cache/index2/ways_of_associativity | 1 +
.../cpu35/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu35/cache/index3/id | 1 +
.../system/cpu/cpu35/cache/index3/level | 1 +
.../cpu/cpu35/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu35/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu35/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu35/cache/index3/size | 1 +
.../system/cpu/cpu35/cache/index3/type | 1 +
.../system/cpu/cpu35/cache/index3/uevent | 0
.../cpu35/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu35/cache/uevent | 0
.../system/cpu/cpu35/node1 | 1 +
.../system/cpu/cpu35/online | 1 +
.../system/cpu/cpu35/topology/cluster_cpus | 1 +
.../cpu/cpu35/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu35/topology/cluster_id | 1 +
.../system/cpu/cpu35/topology/core_cpus | 1 +
.../system/cpu/cpu35/topology/core_cpus_list | 1 +
.../system/cpu/cpu35/topology/core_id | 1 +
.../system/cpu/cpu35/topology/core_siblings | 1 +
.../cpu/cpu35/topology/core_siblings_list | 1 +
.../system/cpu/cpu35/topology/die_cpus | 1 +
.../system/cpu/cpu35/topology/die_cpus_list | 1 +
.../system/cpu/cpu35/topology/die_id | 1 +
.../system/cpu/cpu35/topology/package_cpus | 1 +
.../cpu/cpu35/topology/package_cpus_list | 1 +
.../cpu/cpu35/topology/physical_package_id | 1 +
.../system/cpu/cpu35/topology/thread_siblings | 1 +
.../cpu/cpu35/topology/thread_siblings_list | 1 +
.../cpu36/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu36/cache/index0/id | 1 +
.../system/cpu/cpu36/cache/index0/level | 1 +
.../cpu/cpu36/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu36/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu36/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu36/cache/index0/size | 1 +
.../system/cpu/cpu36/cache/index0/type | 1 +
.../system/cpu/cpu36/cache/index0/uevent | 0
.../cpu36/cache/index0/ways_of_associativity | 1 +
.../cpu36/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu36/cache/index1/id | 1 +
.../system/cpu/cpu36/cache/index1/level | 1 +
.../cpu/cpu36/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu36/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu36/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu36/cache/index1/size | 1 +
.../system/cpu/cpu36/cache/index1/type | 1 +
.../system/cpu/cpu36/cache/index1/uevent | 0
.../cpu36/cache/index1/ways_of_associativity | 1 +
.../cpu36/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu36/cache/index2/id | 1 +
.../system/cpu/cpu36/cache/index2/level | 1 +
.../cpu/cpu36/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu36/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu36/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu36/cache/index2/size | 1 +
.../system/cpu/cpu36/cache/index2/type | 1 +
.../system/cpu/cpu36/cache/index2/uevent | 0
.../cpu36/cache/index2/ways_of_associativity | 1 +
.../cpu36/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu36/cache/index3/id | 1 +
.../system/cpu/cpu36/cache/index3/level | 1 +
.../cpu/cpu36/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu36/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu36/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu36/cache/index3/size | 1 +
.../system/cpu/cpu36/cache/index3/type | 1 +
.../system/cpu/cpu36/cache/index3/uevent | 0
.../cpu36/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu36/cache/uevent | 0
.../system/cpu/cpu36/node0 | 1 +
.../system/cpu/cpu36/online | 1 +
.../system/cpu/cpu36/topology/cluster_cpus | 1 +
.../cpu/cpu36/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu36/topology/cluster_id | 1 +
.../system/cpu/cpu36/topology/core_cpus | 1 +
.../system/cpu/cpu36/topology/core_cpus_list | 1 +
.../system/cpu/cpu36/topology/core_id | 1 +
.../system/cpu/cpu36/topology/core_siblings | 1 +
.../cpu/cpu36/topology/core_siblings_list | 1 +
.../system/cpu/cpu36/topology/die_cpus | 1 +
.../system/cpu/cpu36/topology/die_cpus_list | 1 +
.../system/cpu/cpu36/topology/die_id | 1 +
.../system/cpu/cpu36/topology/package_cpus | 1 +
.../cpu/cpu36/topology/package_cpus_list | 1 +
.../cpu/cpu36/topology/physical_package_id | 1 +
.../system/cpu/cpu36/topology/thread_siblings | 1 +
.../cpu/cpu36/topology/thread_siblings_list | 1 +
.../cpu37/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu37/cache/index0/id | 1 +
.../system/cpu/cpu37/cache/index0/level | 1 +
.../cpu/cpu37/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu37/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu37/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu37/cache/index0/size | 1 +
.../system/cpu/cpu37/cache/index0/type | 1 +
.../system/cpu/cpu37/cache/index0/uevent | 0
.../cpu37/cache/index0/ways_of_associativity | 1 +
.../cpu37/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu37/cache/index1/id | 1 +
.../system/cpu/cpu37/cache/index1/level | 1 +
.../cpu/cpu37/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu37/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu37/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu37/cache/index1/size | 1 +
.../system/cpu/cpu37/cache/index1/type | 1 +
.../system/cpu/cpu37/cache/index1/uevent | 0
.../cpu37/cache/index1/ways_of_associativity | 1 +
.../cpu37/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu37/cache/index2/id | 1 +
.../system/cpu/cpu37/cache/index2/level | 1 +
.../cpu/cpu37/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu37/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu37/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu37/cache/index2/size | 1 +
.../system/cpu/cpu37/cache/index2/type | 1 +
.../system/cpu/cpu37/cache/index2/uevent | 0
.../cpu37/cache/index2/ways_of_associativity | 1 +
.../cpu37/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu37/cache/index3/id | 1 +
.../system/cpu/cpu37/cache/index3/level | 1 +
.../cpu/cpu37/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu37/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu37/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu37/cache/index3/size | 1 +
.../system/cpu/cpu37/cache/index3/type | 1 +
.../system/cpu/cpu37/cache/index3/uevent | 0
.../cpu37/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu37/cache/uevent | 0
.../system/cpu/cpu37/node1 | 1 +
.../system/cpu/cpu37/online | 1 +
.../system/cpu/cpu37/topology/cluster_cpus | 1 +
.../cpu/cpu37/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu37/topology/cluster_id | 1 +
.../system/cpu/cpu37/topology/core_cpus | 1 +
.../system/cpu/cpu37/topology/core_cpus_list | 1 +
.../system/cpu/cpu37/topology/core_id | 1 +
.../system/cpu/cpu37/topology/core_siblings | 1 +
.../cpu/cpu37/topology/core_siblings_list | 1 +
.../system/cpu/cpu37/topology/die_cpus | 1 +
.../system/cpu/cpu37/topology/die_cpus_list | 1 +
.../system/cpu/cpu37/topology/die_id | 1 +
.../system/cpu/cpu37/topology/package_cpus | 1 +
.../cpu/cpu37/topology/package_cpus_list | 1 +
.../cpu/cpu37/topology/physical_package_id | 1 +
.../system/cpu/cpu37/topology/thread_siblings | 1 +
.../cpu/cpu37/topology/thread_siblings_list | 1 +
.../cpu38/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu38/cache/index0/id | 1 +
.../system/cpu/cpu38/cache/index0/level | 1 +
.../cpu/cpu38/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu38/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu38/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu38/cache/index0/size | 1 +
.../system/cpu/cpu38/cache/index0/type | 1 +
.../system/cpu/cpu38/cache/index0/uevent | 0
.../cpu38/cache/index0/ways_of_associativity | 1 +
.../cpu38/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu38/cache/index1/id | 1 +
.../system/cpu/cpu38/cache/index1/level | 1 +
.../cpu/cpu38/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu38/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu38/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu38/cache/index1/size | 1 +
.../system/cpu/cpu38/cache/index1/type | 1 +
.../system/cpu/cpu38/cache/index1/uevent | 0
.../cpu38/cache/index1/ways_of_associativity | 1 +
.../cpu38/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu38/cache/index2/id | 1 +
.../system/cpu/cpu38/cache/index2/level | 1 +
.../cpu/cpu38/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu38/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu38/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu38/cache/index2/size | 1 +
.../system/cpu/cpu38/cache/index2/type | 1 +
.../system/cpu/cpu38/cache/index2/uevent | 0
.../cpu38/cache/index2/ways_of_associativity | 1 +
.../cpu38/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu38/cache/index3/id | 1 +
.../system/cpu/cpu38/cache/index3/level | 1 +
.../cpu/cpu38/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu38/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu38/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu38/cache/index3/size | 1 +
.../system/cpu/cpu38/cache/index3/type | 1 +
.../system/cpu/cpu38/cache/index3/uevent | 0
.../cpu38/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu38/cache/uevent | 0
.../system/cpu/cpu38/node0 | 1 +
.../system/cpu/cpu38/online | 1 +
.../system/cpu/cpu38/topology/cluster_cpus | 1 +
.../cpu/cpu38/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu38/topology/cluster_id | 1 +
.../system/cpu/cpu38/topology/core_cpus | 1 +
.../system/cpu/cpu38/topology/core_cpus_list | 1 +
.../system/cpu/cpu38/topology/core_id | 1 +
.../system/cpu/cpu38/topology/core_siblings | 1 +
.../cpu/cpu38/topology/core_siblings_list | 1 +
.../system/cpu/cpu38/topology/die_cpus | 1 +
.../system/cpu/cpu38/topology/die_cpus_list | 1 +
.../system/cpu/cpu38/topology/die_id | 1 +
.../system/cpu/cpu38/topology/package_cpus | 1 +
.../cpu/cpu38/topology/package_cpus_list | 1 +
.../cpu/cpu38/topology/physical_package_id | 1 +
.../system/cpu/cpu38/topology/thread_siblings | 1 +
.../cpu/cpu38/topology/thread_siblings_list | 1 +
.../cpu39/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu39/cache/index0/id | 1 +
.../system/cpu/cpu39/cache/index0/level | 1 +
.../cpu/cpu39/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu39/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu39/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu39/cache/index0/size | 1 +
.../system/cpu/cpu39/cache/index0/type | 1 +
.../system/cpu/cpu39/cache/index0/uevent | 0
.../cpu39/cache/index0/ways_of_associativity | 1 +
.../cpu39/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu39/cache/index1/id | 1 +
.../system/cpu/cpu39/cache/index1/level | 1 +
.../cpu/cpu39/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu39/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu39/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu39/cache/index1/size | 1 +
.../system/cpu/cpu39/cache/index1/type | 1 +
.../system/cpu/cpu39/cache/index1/uevent | 0
.../cpu39/cache/index1/ways_of_associativity | 1 +
.../cpu39/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu39/cache/index2/id | 1 +
.../system/cpu/cpu39/cache/index2/level | 1 +
.../cpu/cpu39/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu39/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu39/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu39/cache/index2/size | 1 +
.../system/cpu/cpu39/cache/index2/type | 1 +
.../system/cpu/cpu39/cache/index2/uevent | 0
.../cpu39/cache/index2/ways_of_associativity | 1 +
.../cpu39/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu39/cache/index3/id | 1 +
.../system/cpu/cpu39/cache/index3/level | 1 +
.../cpu/cpu39/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu39/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu39/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu39/cache/index3/size | 1 +
.../system/cpu/cpu39/cache/index3/type | 1 +
.../system/cpu/cpu39/cache/index3/uevent | 0
.../cpu39/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu39/cache/uevent | 0
.../system/cpu/cpu39/node1 | 1 +
.../system/cpu/cpu39/online | 1 +
.../system/cpu/cpu39/topology/cluster_cpus | 1 +
.../cpu/cpu39/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu39/topology/cluster_id | 1 +
.../system/cpu/cpu39/topology/core_cpus | 1 +
.../system/cpu/cpu39/topology/core_cpus_list | 1 +
.../system/cpu/cpu39/topology/core_id | 1 +
.../system/cpu/cpu39/topology/core_siblings | 1 +
.../cpu/cpu39/topology/core_siblings_list | 1 +
.../system/cpu/cpu39/topology/die_cpus | 1 +
.../system/cpu/cpu39/topology/die_cpus_list | 1 +
.../system/cpu/cpu39/topology/die_id | 1 +
.../system/cpu/cpu39/topology/package_cpus | 1 +
.../cpu/cpu39/topology/package_cpus_list | 1 +
.../cpu/cpu39/topology/physical_package_id | 1 +
.../system/cpu/cpu39/topology/thread_siblings | 1 +
.../cpu/cpu39/topology/thread_siblings_list | 1 +
.../cpu/cpu4/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu4/cache/index0/id | 1 +
.../system/cpu/cpu4/cache/index0/level | 1 +
.../cpu/cpu4/cache/index0/number_of_sets | 1 +
.../cpu4/cache/index0/physical_line_partition | 1 +
.../cpu/cpu4/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu4/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu4/cache/index0/size | 1 +
.../system/cpu/cpu4/cache/index0/type | 1 +
.../system/cpu/cpu4/cache/index0/uevent | 0
.../cpu4/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu4/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu4/cache/index1/id | 1 +
.../system/cpu/cpu4/cache/index1/level | 1 +
.../cpu/cpu4/cache/index1/number_of_sets | 1 +
.../cpu4/cache/index1/physical_line_partition | 1 +
.../cpu/cpu4/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu4/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu4/cache/index1/size | 1 +
.../system/cpu/cpu4/cache/index1/type | 1 +
.../system/cpu/cpu4/cache/index1/uevent | 0
.../cpu4/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu4/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu4/cache/index2/id | 1 +
.../system/cpu/cpu4/cache/index2/level | 1 +
.../cpu/cpu4/cache/index2/number_of_sets | 1 +
.../cpu4/cache/index2/physical_line_partition | 1 +
.../cpu/cpu4/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu4/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu4/cache/index2/size | 1 +
.../system/cpu/cpu4/cache/index2/type | 1 +
.../system/cpu/cpu4/cache/index2/uevent | 0
.../cpu4/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu4/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu4/cache/index3/id | 1 +
.../system/cpu/cpu4/cache/index3/level | 1 +
.../cpu/cpu4/cache/index3/number_of_sets | 1 +
.../cpu4/cache/index3/physical_line_partition | 1 +
.../cpu/cpu4/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu4/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu4/cache/index3/size | 1 +
.../system/cpu/cpu4/cache/index3/type | 1 +
.../system/cpu/cpu4/cache/index3/uevent | 0
.../cpu4/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu4/cache/uevent | 0
.../system/cpu/cpu4/node0 | 1 +
.../system/cpu/cpu4/online | 1 +
.../system/cpu/cpu4/topology/cluster_cpus | 1 +
.../cpu/cpu4/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu4/topology/cluster_id | 1 +
.../system/cpu/cpu4/topology/core_cpus | 1 +
.../system/cpu/cpu4/topology/core_cpus_list | 1 +
.../system/cpu/cpu4/topology/core_id | 1 +
.../system/cpu/cpu4/topology/core_siblings | 1 +
.../cpu/cpu4/topology/core_siblings_list | 1 +
.../system/cpu/cpu4/topology/die_cpus | 1 +
.../system/cpu/cpu4/topology/die_cpus_list | 1 +
.../system/cpu/cpu4/topology/die_id | 1 +
.../system/cpu/cpu4/topology/package_cpus | 1 +
.../cpu/cpu4/topology/package_cpus_list | 1 +
.../cpu/cpu4/topology/physical_package_id | 1 +
.../system/cpu/cpu4/topology/thread_siblings | 1 +
.../cpu/cpu4/topology/thread_siblings_list | 1 +
.../cpu40/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu40/cache/index0/id | 1 +
.../system/cpu/cpu40/cache/index0/level | 1 +
.../cpu/cpu40/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu40/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu40/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu40/cache/index0/size | 1 +
.../system/cpu/cpu40/cache/index0/type | 1 +
.../system/cpu/cpu40/cache/index0/uevent | 0
.../cpu40/cache/index0/ways_of_associativity | 1 +
.../cpu40/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu40/cache/index1/id | 1 +
.../system/cpu/cpu40/cache/index1/level | 1 +
.../cpu/cpu40/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu40/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu40/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu40/cache/index1/size | 1 +
.../system/cpu/cpu40/cache/index1/type | 1 +
.../system/cpu/cpu40/cache/index1/uevent | 0
.../cpu40/cache/index1/ways_of_associativity | 1 +
.../cpu40/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu40/cache/index2/id | 1 +
.../system/cpu/cpu40/cache/index2/level | 1 +
.../cpu/cpu40/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu40/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu40/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu40/cache/index2/size | 1 +
.../system/cpu/cpu40/cache/index2/type | 1 +
.../system/cpu/cpu40/cache/index2/uevent | 0
.../cpu40/cache/index2/ways_of_associativity | 1 +
.../cpu40/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu40/cache/index3/id | 1 +
.../system/cpu/cpu40/cache/index3/level | 1 +
.../cpu/cpu40/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu40/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu40/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu40/cache/index3/size | 1 +
.../system/cpu/cpu40/cache/index3/type | 1 +
.../system/cpu/cpu40/cache/index3/uevent | 0
.../cpu40/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu40/cache/uevent | 0
.../system/cpu/cpu40/node0 | 1 +
.../system/cpu/cpu40/online | 1 +
.../system/cpu/cpu40/topology/cluster_cpus | 1 +
.../cpu/cpu40/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu40/topology/cluster_id | 1 +
.../system/cpu/cpu40/topology/core_cpus | 1 +
.../system/cpu/cpu40/topology/core_cpus_list | 1 +
.../system/cpu/cpu40/topology/core_id | 1 +
.../system/cpu/cpu40/topology/core_siblings | 1 +
.../cpu/cpu40/topology/core_siblings_list | 1 +
.../system/cpu/cpu40/topology/die_cpus | 1 +
.../system/cpu/cpu40/topology/die_cpus_list | 1 +
.../system/cpu/cpu40/topology/die_id | 1 +
.../system/cpu/cpu40/topology/package_cpus | 1 +
.../cpu/cpu40/topology/package_cpus_list | 1 +
.../cpu/cpu40/topology/physical_package_id | 1 +
.../system/cpu/cpu40/topology/thread_siblings | 1 +
.../cpu/cpu40/topology/thread_siblings_list | 1 +
.../cpu41/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu41/cache/index0/id | 1 +
.../system/cpu/cpu41/cache/index0/level | 1 +
.../cpu/cpu41/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu41/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu41/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu41/cache/index0/size | 1 +
.../system/cpu/cpu41/cache/index0/type | 1 +
.../system/cpu/cpu41/cache/index0/uevent | 0
.../cpu41/cache/index0/ways_of_associativity | 1 +
.../cpu41/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu41/cache/index1/id | 1 +
.../system/cpu/cpu41/cache/index1/level | 1 +
.../cpu/cpu41/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu41/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu41/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu41/cache/index1/size | 1 +
.../system/cpu/cpu41/cache/index1/type | 1 +
.../system/cpu/cpu41/cache/index1/uevent | 0
.../cpu41/cache/index1/ways_of_associativity | 1 +
.../cpu41/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu41/cache/index2/id | 1 +
.../system/cpu/cpu41/cache/index2/level | 1 +
.../cpu/cpu41/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu41/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu41/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu41/cache/index2/size | 1 +
.../system/cpu/cpu41/cache/index2/type | 1 +
.../system/cpu/cpu41/cache/index2/uevent | 0
.../cpu41/cache/index2/ways_of_associativity | 1 +
.../cpu41/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu41/cache/index3/id | 1 +
.../system/cpu/cpu41/cache/index3/level | 1 +
.../cpu/cpu41/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu41/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu41/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu41/cache/index3/size | 1 +
.../system/cpu/cpu41/cache/index3/type | 1 +
.../system/cpu/cpu41/cache/index3/uevent | 0
.../cpu41/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu41/cache/uevent | 0
.../system/cpu/cpu41/node1 | 1 +
.../system/cpu/cpu41/online | 1 +
.../system/cpu/cpu41/topology/cluster_cpus | 1 +
.../cpu/cpu41/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu41/topology/cluster_id | 1 +
.../system/cpu/cpu41/topology/core_cpus | 1 +
.../system/cpu/cpu41/topology/core_cpus_list | 1 +
.../system/cpu/cpu41/topology/core_id | 1 +
.../system/cpu/cpu41/topology/core_siblings | 1 +
.../cpu/cpu41/topology/core_siblings_list | 1 +
.../system/cpu/cpu41/topology/die_cpus | 1 +
.../system/cpu/cpu41/topology/die_cpus_list | 1 +
.../system/cpu/cpu41/topology/die_id | 1 +
.../system/cpu/cpu41/topology/package_cpus | 1 +
.../cpu/cpu41/topology/package_cpus_list | 1 +
.../cpu/cpu41/topology/physical_package_id | 1 +
.../system/cpu/cpu41/topology/thread_siblings | 1 +
.../cpu/cpu41/topology/thread_siblings_list | 1 +
.../cpu42/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu42/cache/index0/id | 1 +
.../system/cpu/cpu42/cache/index0/level | 1 +
.../cpu/cpu42/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu42/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu42/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu42/cache/index0/size | 1 +
.../system/cpu/cpu42/cache/index0/type | 1 +
.../system/cpu/cpu42/cache/index0/uevent | 0
.../cpu42/cache/index0/ways_of_associativity | 1 +
.../cpu42/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu42/cache/index1/id | 1 +
.../system/cpu/cpu42/cache/index1/level | 1 +
.../cpu/cpu42/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu42/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu42/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu42/cache/index1/size | 1 +
.../system/cpu/cpu42/cache/index1/type | 1 +
.../system/cpu/cpu42/cache/index1/uevent | 0
.../cpu42/cache/index1/ways_of_associativity | 1 +
.../cpu42/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu42/cache/index2/id | 1 +
.../system/cpu/cpu42/cache/index2/level | 1 +
.../cpu/cpu42/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu42/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu42/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu42/cache/index2/size | 1 +
.../system/cpu/cpu42/cache/index2/type | 1 +
.../system/cpu/cpu42/cache/index2/uevent | 0
.../cpu42/cache/index2/ways_of_associativity | 1 +
.../cpu42/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu42/cache/index3/id | 1 +
.../system/cpu/cpu42/cache/index3/level | 1 +
.../cpu/cpu42/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu42/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu42/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu42/cache/index3/size | 1 +
.../system/cpu/cpu42/cache/index3/type | 1 +
.../system/cpu/cpu42/cache/index3/uevent | 0
.../cpu42/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu42/cache/uevent | 0
.../system/cpu/cpu42/node0 | 1 +
.../system/cpu/cpu42/online | 1 +
.../system/cpu/cpu42/topology/cluster_cpus | 1 +
.../cpu/cpu42/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu42/topology/cluster_id | 1 +
.../system/cpu/cpu42/topology/core_cpus | 1 +
.../system/cpu/cpu42/topology/core_cpus_list | 1 +
.../system/cpu/cpu42/topology/core_id | 1 +
.../system/cpu/cpu42/topology/core_siblings | 1 +
.../cpu/cpu42/topology/core_siblings_list | 1 +
.../system/cpu/cpu42/topology/die_cpus | 1 +
.../system/cpu/cpu42/topology/die_cpus_list | 1 +
.../system/cpu/cpu42/topology/die_id | 1 +
.../system/cpu/cpu42/topology/package_cpus | 1 +
.../cpu/cpu42/topology/package_cpus_list | 1 +
.../cpu/cpu42/topology/physical_package_id | 1 +
.../system/cpu/cpu42/topology/thread_siblings | 1 +
.../cpu/cpu42/topology/thread_siblings_list | 1 +
.../cpu43/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu43/cache/index0/id | 1 +
.../system/cpu/cpu43/cache/index0/level | 1 +
.../cpu/cpu43/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu43/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu43/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu43/cache/index0/size | 1 +
.../system/cpu/cpu43/cache/index0/type | 1 +
.../system/cpu/cpu43/cache/index0/uevent | 0
.../cpu43/cache/index0/ways_of_associativity | 1 +
.../cpu43/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu43/cache/index1/id | 1 +
.../system/cpu/cpu43/cache/index1/level | 1 +
.../cpu/cpu43/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu43/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu43/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu43/cache/index1/size | 1 +
.../system/cpu/cpu43/cache/index1/type | 1 +
.../system/cpu/cpu43/cache/index1/uevent | 0
.../cpu43/cache/index1/ways_of_associativity | 1 +
.../cpu43/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu43/cache/index2/id | 1 +
.../system/cpu/cpu43/cache/index2/level | 1 +
.../cpu/cpu43/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu43/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu43/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu43/cache/index2/size | 1 +
.../system/cpu/cpu43/cache/index2/type | 1 +
.../system/cpu/cpu43/cache/index2/uevent | 0
.../cpu43/cache/index2/ways_of_associativity | 1 +
.../cpu43/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu43/cache/index3/id | 1 +
.../system/cpu/cpu43/cache/index3/level | 1 +
.../cpu/cpu43/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu43/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu43/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu43/cache/index3/size | 1 +
.../system/cpu/cpu43/cache/index3/type | 1 +
.../system/cpu/cpu43/cache/index3/uevent | 0
.../cpu43/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu43/cache/uevent | 0
.../system/cpu/cpu43/node1 | 1 +
.../system/cpu/cpu43/online | 1 +
.../system/cpu/cpu43/topology/cluster_cpus | 1 +
.../cpu/cpu43/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu43/topology/cluster_id | 1 +
.../system/cpu/cpu43/topology/core_cpus | 1 +
.../system/cpu/cpu43/topology/core_cpus_list | 1 +
.../system/cpu/cpu43/topology/core_id | 1 +
.../system/cpu/cpu43/topology/core_siblings | 1 +
.../cpu/cpu43/topology/core_siblings_list | 1 +
.../system/cpu/cpu43/topology/die_cpus | 1 +
.../system/cpu/cpu43/topology/die_cpus_list | 1 +
.../system/cpu/cpu43/topology/die_id | 1 +
.../system/cpu/cpu43/topology/package_cpus | 1 +
.../cpu/cpu43/topology/package_cpus_list | 1 +
.../cpu/cpu43/topology/physical_package_id | 1 +
.../system/cpu/cpu43/topology/thread_siblings | 1 +
.../cpu/cpu43/topology/thread_siblings_list | 1 +
.../cpu44/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu44/cache/index0/id | 1 +
.../system/cpu/cpu44/cache/index0/level | 1 +
.../cpu/cpu44/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu44/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu44/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu44/cache/index0/size | 1 +
.../system/cpu/cpu44/cache/index0/type | 1 +
.../system/cpu/cpu44/cache/index0/uevent | 0
.../cpu44/cache/index0/ways_of_associativity | 1 +
.../cpu44/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu44/cache/index1/id | 1 +
.../system/cpu/cpu44/cache/index1/level | 1 +
.../cpu/cpu44/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu44/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu44/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu44/cache/index1/size | 1 +
.../system/cpu/cpu44/cache/index1/type | 1 +
.../system/cpu/cpu44/cache/index1/uevent | 0
.../cpu44/cache/index1/ways_of_associativity | 1 +
.../cpu44/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu44/cache/index2/id | 1 +
.../system/cpu/cpu44/cache/index2/level | 1 +
.../cpu/cpu44/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu44/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu44/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu44/cache/index2/size | 1 +
.../system/cpu/cpu44/cache/index2/type | 1 +
.../system/cpu/cpu44/cache/index2/uevent | 0
.../cpu44/cache/index2/ways_of_associativity | 1 +
.../cpu44/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu44/cache/index3/id | 1 +
.../system/cpu/cpu44/cache/index3/level | 1 +
.../cpu/cpu44/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu44/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu44/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu44/cache/index3/size | 1 +
.../system/cpu/cpu44/cache/index3/type | 1 +
.../system/cpu/cpu44/cache/index3/uevent | 0
.../cpu44/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu44/cache/uevent | 0
.../system/cpu/cpu44/node0 | 1 +
.../system/cpu/cpu44/online | 1 +
.../system/cpu/cpu44/topology/cluster_cpus | 1 +
.../cpu/cpu44/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu44/topology/cluster_id | 1 +
.../system/cpu/cpu44/topology/core_cpus | 1 +
.../system/cpu/cpu44/topology/core_cpus_list | 1 +
.../system/cpu/cpu44/topology/core_id | 1 +
.../system/cpu/cpu44/topology/core_siblings | 1 +
.../cpu/cpu44/topology/core_siblings_list | 1 +
.../system/cpu/cpu44/topology/die_cpus | 1 +
.../system/cpu/cpu44/topology/die_cpus_list | 1 +
.../system/cpu/cpu44/topology/die_id | 1 +
.../system/cpu/cpu44/topology/package_cpus | 1 +
.../cpu/cpu44/topology/package_cpus_list | 1 +
.../cpu/cpu44/topology/physical_package_id | 1 +
.../system/cpu/cpu44/topology/thread_siblings | 1 +
.../cpu/cpu44/topology/thread_siblings_list | 1 +
.../cpu45/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu45/cache/index0/id | 1 +
.../system/cpu/cpu45/cache/index0/level | 1 +
.../cpu/cpu45/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu45/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu45/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu45/cache/index0/size | 1 +
.../system/cpu/cpu45/cache/index0/type | 1 +
.../system/cpu/cpu45/cache/index0/uevent | 0
.../cpu45/cache/index0/ways_of_associativity | 1 +
.../cpu45/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu45/cache/index1/id | 1 +
.../system/cpu/cpu45/cache/index1/level | 1 +
.../cpu/cpu45/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu45/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu45/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu45/cache/index1/size | 1 +
.../system/cpu/cpu45/cache/index1/type | 1 +
.../system/cpu/cpu45/cache/index1/uevent | 0
.../cpu45/cache/index1/ways_of_associativity | 1 +
.../cpu45/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu45/cache/index2/id | 1 +
.../system/cpu/cpu45/cache/index2/level | 1 +
.../cpu/cpu45/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu45/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu45/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu45/cache/index2/size | 1 +
.../system/cpu/cpu45/cache/index2/type | 1 +
.../system/cpu/cpu45/cache/index2/uevent | 0
.../cpu45/cache/index2/ways_of_associativity | 1 +
.../cpu45/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu45/cache/index3/id | 1 +
.../system/cpu/cpu45/cache/index3/level | 1 +
.../cpu/cpu45/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu45/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu45/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu45/cache/index3/size | 1 +
.../system/cpu/cpu45/cache/index3/type | 1 +
.../system/cpu/cpu45/cache/index3/uevent | 0
.../cpu45/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu45/cache/uevent | 0
.../system/cpu/cpu45/node1 | 1 +
.../system/cpu/cpu45/online | 1 +
.../system/cpu/cpu45/topology/cluster_cpus | 1 +
.../cpu/cpu45/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu45/topology/cluster_id | 1 +
.../system/cpu/cpu45/topology/core_cpus | 1 +
.../system/cpu/cpu45/topology/core_cpus_list | 1 +
.../system/cpu/cpu45/topology/core_id | 1 +
.../system/cpu/cpu45/topology/core_siblings | 1 +
.../cpu/cpu45/topology/core_siblings_list | 1 +
.../system/cpu/cpu45/topology/die_cpus | 1 +
.../system/cpu/cpu45/topology/die_cpus_list | 1 +
.../system/cpu/cpu45/topology/die_id | 1 +
.../system/cpu/cpu45/topology/package_cpus | 1 +
.../cpu/cpu45/topology/package_cpus_list | 1 +
.../cpu/cpu45/topology/physical_package_id | 1 +
.../system/cpu/cpu45/topology/thread_siblings | 1 +
.../cpu/cpu45/topology/thread_siblings_list | 1 +
.../cpu46/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu46/cache/index0/id | 1 +
.../system/cpu/cpu46/cache/index0/level | 1 +
.../cpu/cpu46/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu46/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu46/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu46/cache/index0/size | 1 +
.../system/cpu/cpu46/cache/index0/type | 1 +
.../system/cpu/cpu46/cache/index0/uevent | 0
.../cpu46/cache/index0/ways_of_associativity | 1 +
.../cpu46/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu46/cache/index1/id | 1 +
.../system/cpu/cpu46/cache/index1/level | 1 +
.../cpu/cpu46/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu46/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu46/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu46/cache/index1/size | 1 +
.../system/cpu/cpu46/cache/index1/type | 1 +
.../system/cpu/cpu46/cache/index1/uevent | 0
.../cpu46/cache/index1/ways_of_associativity | 1 +
.../cpu46/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu46/cache/index2/id | 1 +
.../system/cpu/cpu46/cache/index2/level | 1 +
.../cpu/cpu46/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu46/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu46/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu46/cache/index2/size | 1 +
.../system/cpu/cpu46/cache/index2/type | 1 +
.../system/cpu/cpu46/cache/index2/uevent | 0
.../cpu46/cache/index2/ways_of_associativity | 1 +
.../cpu46/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu46/cache/index3/id | 1 +
.../system/cpu/cpu46/cache/index3/level | 1 +
.../cpu/cpu46/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu46/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu46/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu46/cache/index3/size | 1 +
.../system/cpu/cpu46/cache/index3/type | 1 +
.../system/cpu/cpu46/cache/index3/uevent | 0
.../cpu46/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu46/cache/uevent | 0
.../system/cpu/cpu46/node0 | 1 +
.../system/cpu/cpu46/online | 1 +
.../system/cpu/cpu46/topology/cluster_cpus | 1 +
.../cpu/cpu46/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu46/topology/cluster_id | 1 +
.../system/cpu/cpu46/topology/core_cpus | 1 +
.../system/cpu/cpu46/topology/core_cpus_list | 1 +
.../system/cpu/cpu46/topology/core_id | 1 +
.../system/cpu/cpu46/topology/core_siblings | 1 +
.../cpu/cpu46/topology/core_siblings_list | 1 +
.../system/cpu/cpu46/topology/die_cpus | 1 +
.../system/cpu/cpu46/topology/die_cpus_list | 1 +
.../system/cpu/cpu46/topology/die_id | 1 +
.../system/cpu/cpu46/topology/package_cpus | 1 +
.../cpu/cpu46/topology/package_cpus_list | 1 +
.../cpu/cpu46/topology/physical_package_id | 1 +
.../system/cpu/cpu46/topology/thread_siblings | 1 +
.../cpu/cpu46/topology/thread_siblings_list | 1 +
.../cpu47/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu47/cache/index0/id | 1 +
.../system/cpu/cpu47/cache/index0/level | 1 +
.../cpu/cpu47/cache/index0/number_of_sets | 1 +
.../cache/index0/physical_line_partition | 1 +
.../cpu/cpu47/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu47/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu47/cache/index0/size | 1 +
.../system/cpu/cpu47/cache/index0/type | 1 +
.../system/cpu/cpu47/cache/index0/uevent | 0
.../cpu47/cache/index0/ways_of_associativity | 1 +
.../cpu47/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu47/cache/index1/id | 1 +
.../system/cpu/cpu47/cache/index1/level | 1 +
.../cpu/cpu47/cache/index1/number_of_sets | 1 +
.../cache/index1/physical_line_partition | 1 +
.../cpu/cpu47/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu47/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu47/cache/index1/size | 1 +
.../system/cpu/cpu47/cache/index1/type | 1 +
.../system/cpu/cpu47/cache/index1/uevent | 0
.../cpu47/cache/index1/ways_of_associativity | 1 +
.../cpu47/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu47/cache/index2/id | 1 +
.../system/cpu/cpu47/cache/index2/level | 1 +
.../cpu/cpu47/cache/index2/number_of_sets | 1 +
.../cache/index2/physical_line_partition | 1 +
.../cpu/cpu47/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu47/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu47/cache/index2/size | 1 +
.../system/cpu/cpu47/cache/index2/type | 1 +
.../system/cpu/cpu47/cache/index2/uevent | 0
.../cpu47/cache/index2/ways_of_associativity | 1 +
.../cpu47/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu47/cache/index3/id | 1 +
.../system/cpu/cpu47/cache/index3/level | 1 +
.../cpu/cpu47/cache/index3/number_of_sets | 1 +
.../cache/index3/physical_line_partition | 1 +
.../cpu/cpu47/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu47/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu47/cache/index3/size | 1 +
.../system/cpu/cpu47/cache/index3/type | 1 +
.../system/cpu/cpu47/cache/index3/uevent | 0
.../cpu47/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu47/cache/uevent | 0
.../system/cpu/cpu47/node1 | 1 +
.../system/cpu/cpu47/online | 1 +
.../system/cpu/cpu47/topology/cluster_cpus | 1 +
.../cpu/cpu47/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu47/topology/cluster_id | 1 +
.../system/cpu/cpu47/topology/core_cpus | 1 +
.../system/cpu/cpu47/topology/core_cpus_list | 1 +
.../system/cpu/cpu47/topology/core_id | 1 +
.../system/cpu/cpu47/topology/core_siblings | 1 +
.../cpu/cpu47/topology/core_siblings_list | 1 +
.../system/cpu/cpu47/topology/die_cpus | 1 +
.../system/cpu/cpu47/topology/die_cpus_list | 1 +
.../system/cpu/cpu47/topology/die_id | 1 +
.../system/cpu/cpu47/topology/package_cpus | 1 +
.../cpu/cpu47/topology/package_cpus_list | 1 +
.../cpu/cpu47/topology/physical_package_id | 1 +
.../system/cpu/cpu47/topology/thread_siblings | 1 +
.../cpu/cpu47/topology/thread_siblings_list | 1 +
.../cpu/cpu5/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu5/cache/index0/id | 1 +
.../system/cpu/cpu5/cache/index0/level | 1 +
.../cpu/cpu5/cache/index0/number_of_sets | 1 +
.../cpu5/cache/index0/physical_line_partition | 1 +
.../cpu/cpu5/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu5/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu5/cache/index0/size | 1 +
.../system/cpu/cpu5/cache/index0/type | 1 +
.../system/cpu/cpu5/cache/index0/uevent | 0
.../cpu5/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu5/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu5/cache/index1/id | 1 +
.../system/cpu/cpu5/cache/index1/level | 1 +
.../cpu/cpu5/cache/index1/number_of_sets | 1 +
.../cpu5/cache/index1/physical_line_partition | 1 +
.../cpu/cpu5/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu5/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu5/cache/index1/size | 1 +
.../system/cpu/cpu5/cache/index1/type | 1 +
.../system/cpu/cpu5/cache/index1/uevent | 0
.../cpu5/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu5/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu5/cache/index2/id | 1 +
.../system/cpu/cpu5/cache/index2/level | 1 +
.../cpu/cpu5/cache/index2/number_of_sets | 1 +
.../cpu5/cache/index2/physical_line_partition | 1 +
.../cpu/cpu5/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu5/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu5/cache/index2/size | 1 +
.../system/cpu/cpu5/cache/index2/type | 1 +
.../system/cpu/cpu5/cache/index2/uevent | 0
.../cpu5/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu5/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu5/cache/index3/id | 1 +
.../system/cpu/cpu5/cache/index3/level | 1 +
.../cpu/cpu5/cache/index3/number_of_sets | 1 +
.../cpu5/cache/index3/physical_line_partition | 1 +
.../cpu/cpu5/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu5/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu5/cache/index3/size | 1 +
.../system/cpu/cpu5/cache/index3/type | 1 +
.../system/cpu/cpu5/cache/index3/uevent | 0
.../cpu5/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu5/cache/uevent | 0
.../system/cpu/cpu5/node1 | 1 +
.../system/cpu/cpu5/online | 1 +
.../system/cpu/cpu5/topology/cluster_cpus | 1 +
.../cpu/cpu5/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu5/topology/cluster_id | 1 +
.../system/cpu/cpu5/topology/core_cpus | 1 +
.../system/cpu/cpu5/topology/core_cpus_list | 1 +
.../system/cpu/cpu5/topology/core_id | 1 +
.../system/cpu/cpu5/topology/core_siblings | 1 +
.../cpu/cpu5/topology/core_siblings_list | 1 +
.../system/cpu/cpu5/topology/die_cpus | 1 +
.../system/cpu/cpu5/topology/die_cpus_list | 1 +
.../system/cpu/cpu5/topology/die_id | 1 +
.../system/cpu/cpu5/topology/package_cpus | 1 +
.../cpu/cpu5/topology/package_cpus_list | 1 +
.../cpu/cpu5/topology/physical_package_id | 1 +
.../system/cpu/cpu5/topology/thread_siblings | 1 +
.../cpu/cpu5/topology/thread_siblings_list | 1 +
.../cpu/cpu6/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu6/cache/index0/id | 1 +
.../system/cpu/cpu6/cache/index0/level | 1 +
.../cpu/cpu6/cache/index0/number_of_sets | 1 +
.../cpu6/cache/index0/physical_line_partition | 1 +
.../cpu/cpu6/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu6/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu6/cache/index0/size | 1 +
.../system/cpu/cpu6/cache/index0/type | 1 +
.../system/cpu/cpu6/cache/index0/uevent | 0
.../cpu6/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu6/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu6/cache/index1/id | 1 +
.../system/cpu/cpu6/cache/index1/level | 1 +
.../cpu/cpu6/cache/index1/number_of_sets | 1 +
.../cpu6/cache/index1/physical_line_partition | 1 +
.../cpu/cpu6/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu6/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu6/cache/index1/size | 1 +
.../system/cpu/cpu6/cache/index1/type | 1 +
.../system/cpu/cpu6/cache/index1/uevent | 0
.../cpu6/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu6/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu6/cache/index2/id | 1 +
.../system/cpu/cpu6/cache/index2/level | 1 +
.../cpu/cpu6/cache/index2/number_of_sets | 1 +
.../cpu6/cache/index2/physical_line_partition | 1 +
.../cpu/cpu6/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu6/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu6/cache/index2/size | 1 +
.../system/cpu/cpu6/cache/index2/type | 1 +
.../system/cpu/cpu6/cache/index2/uevent | 0
.../cpu6/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu6/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu6/cache/index3/id | 1 +
.../system/cpu/cpu6/cache/index3/level | 1 +
.../cpu/cpu6/cache/index3/number_of_sets | 1 +
.../cpu6/cache/index3/physical_line_partition | 1 +
.../cpu/cpu6/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu6/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu6/cache/index3/size | 1 +
.../system/cpu/cpu6/cache/index3/type | 1 +
.../system/cpu/cpu6/cache/index3/uevent | 0
.../cpu6/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu6/cache/uevent | 0
.../system/cpu/cpu6/node0 | 1 +
.../system/cpu/cpu6/online | 1 +
.../system/cpu/cpu6/topology/cluster_cpus | 1 +
.../cpu/cpu6/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu6/topology/cluster_id | 1 +
.../system/cpu/cpu6/topology/core_cpus | 1 +
.../system/cpu/cpu6/topology/core_cpus_list | 1 +
.../system/cpu/cpu6/topology/core_id | 1 +
.../system/cpu/cpu6/topology/core_siblings | 1 +
.../cpu/cpu6/topology/core_siblings_list | 1 +
.../system/cpu/cpu6/topology/die_cpus | 1 +
.../system/cpu/cpu6/topology/die_cpus_list | 1 +
.../system/cpu/cpu6/topology/die_id | 1 +
.../system/cpu/cpu6/topology/package_cpus | 1 +
.../cpu/cpu6/topology/package_cpus_list | 1 +
.../cpu/cpu6/topology/physical_package_id | 1 +
.../system/cpu/cpu6/topology/thread_siblings | 1 +
.../cpu/cpu6/topology/thread_siblings_list | 1 +
.../cpu/cpu7/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu7/cache/index0/id | 1 +
.../system/cpu/cpu7/cache/index0/level | 1 +
.../cpu/cpu7/cache/index0/number_of_sets | 1 +
.../cpu7/cache/index0/physical_line_partition | 1 +
.../cpu/cpu7/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu7/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu7/cache/index0/size | 1 +
.../system/cpu/cpu7/cache/index0/type | 1 +
.../system/cpu/cpu7/cache/index0/uevent | 0
.../cpu7/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu7/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu7/cache/index1/id | 1 +
.../system/cpu/cpu7/cache/index1/level | 1 +
.../cpu/cpu7/cache/index1/number_of_sets | 1 +
.../cpu7/cache/index1/physical_line_partition | 1 +
.../cpu/cpu7/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu7/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu7/cache/index1/size | 1 +
.../system/cpu/cpu7/cache/index1/type | 1 +
.../system/cpu/cpu7/cache/index1/uevent | 0
.../cpu7/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu7/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu7/cache/index2/id | 1 +
.../system/cpu/cpu7/cache/index2/level | 1 +
.../cpu/cpu7/cache/index2/number_of_sets | 1 +
.../cpu7/cache/index2/physical_line_partition | 1 +
.../cpu/cpu7/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu7/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu7/cache/index2/size | 1 +
.../system/cpu/cpu7/cache/index2/type | 1 +
.../system/cpu/cpu7/cache/index2/uevent | 0
.../cpu7/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu7/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu7/cache/index3/id | 1 +
.../system/cpu/cpu7/cache/index3/level | 1 +
.../cpu/cpu7/cache/index3/number_of_sets | 1 +
.../cpu7/cache/index3/physical_line_partition | 1 +
.../cpu/cpu7/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu7/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu7/cache/index3/size | 1 +
.../system/cpu/cpu7/cache/index3/type | 1 +
.../system/cpu/cpu7/cache/index3/uevent | 0
.../cpu7/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu7/cache/uevent | 0
.../system/cpu/cpu7/node1 | 1 +
.../system/cpu/cpu7/online | 1 +
.../system/cpu/cpu7/topology/cluster_cpus | 1 +
.../cpu/cpu7/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu7/topology/cluster_id | 1 +
.../system/cpu/cpu7/topology/core_cpus | 1 +
.../system/cpu/cpu7/topology/core_cpus_list | 1 +
.../system/cpu/cpu7/topology/core_id | 1 +
.../system/cpu/cpu7/topology/core_siblings | 1 +
.../cpu/cpu7/topology/core_siblings_list | 1 +
.../system/cpu/cpu7/topology/die_cpus | 1 +
.../system/cpu/cpu7/topology/die_cpus_list | 1 +
.../system/cpu/cpu7/topology/die_id | 1 +
.../system/cpu/cpu7/topology/package_cpus | 1 +
.../cpu/cpu7/topology/package_cpus_list | 1 +
.../cpu/cpu7/topology/physical_package_id | 1 +
.../system/cpu/cpu7/topology/thread_siblings | 1 +
.../cpu/cpu7/topology/thread_siblings_list | 1 +
.../cpu/cpu8/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu8/cache/index0/id | 1 +
.../system/cpu/cpu8/cache/index0/level | 1 +
.../cpu/cpu8/cache/index0/number_of_sets | 1 +
.../cpu8/cache/index0/physical_line_partition | 1 +
.../cpu/cpu8/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu8/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu8/cache/index0/size | 1 +
.../system/cpu/cpu8/cache/index0/type | 1 +
.../system/cpu/cpu8/cache/index0/uevent | 0
.../cpu8/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu8/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu8/cache/index1/id | 1 +
.../system/cpu/cpu8/cache/index1/level | 1 +
.../cpu/cpu8/cache/index1/number_of_sets | 1 +
.../cpu8/cache/index1/physical_line_partition | 1 +
.../cpu/cpu8/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu8/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu8/cache/index1/size | 1 +
.../system/cpu/cpu8/cache/index1/type | 1 +
.../system/cpu/cpu8/cache/index1/uevent | 0
.../cpu8/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu8/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu8/cache/index2/id | 1 +
.../system/cpu/cpu8/cache/index2/level | 1 +
.../cpu/cpu8/cache/index2/number_of_sets | 1 +
.../cpu8/cache/index2/physical_line_partition | 1 +
.../cpu/cpu8/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu8/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu8/cache/index2/size | 1 +
.../system/cpu/cpu8/cache/index2/type | 1 +
.../system/cpu/cpu8/cache/index2/uevent | 0
.../cpu8/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu8/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu8/cache/index3/id | 1 +
.../system/cpu/cpu8/cache/index3/level | 1 +
.../cpu/cpu8/cache/index3/number_of_sets | 1 +
.../cpu8/cache/index3/physical_line_partition | 1 +
.../cpu/cpu8/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu8/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu8/cache/index3/size | 1 +
.../system/cpu/cpu8/cache/index3/type | 1 +
.../system/cpu/cpu8/cache/index3/uevent | 0
.../cpu8/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu8/cache/uevent | 0
.../system/cpu/cpu8/node0 | 1 +
.../system/cpu/cpu8/online | 1 +
.../system/cpu/cpu8/topology/cluster_cpus | 1 +
.../cpu/cpu8/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu8/topology/cluster_id | 1 +
.../system/cpu/cpu8/topology/core_cpus | 1 +
.../system/cpu/cpu8/topology/core_cpus_list | 1 +
.../system/cpu/cpu8/topology/core_id | 1 +
.../system/cpu/cpu8/topology/core_siblings | 1 +
.../cpu/cpu8/topology/core_siblings_list | 1 +
.../system/cpu/cpu8/topology/die_cpus | 1 +
.../system/cpu/cpu8/topology/die_cpus_list | 1 +
.../system/cpu/cpu8/topology/die_id | 1 +
.../system/cpu/cpu8/topology/package_cpus | 1 +
.../cpu/cpu8/topology/package_cpus_list | 1 +
.../cpu/cpu8/topology/physical_package_id | 1 +
.../system/cpu/cpu8/topology/thread_siblings | 1 +
.../cpu/cpu8/topology/thread_siblings_list | 1 +
.../cpu/cpu9/cache/index0/coherency_line_size | 1 +
.../system/cpu/cpu9/cache/index0/id | 1 +
.../system/cpu/cpu9/cache/index0/level | 1 +
.../cpu/cpu9/cache/index0/number_of_sets | 1 +
.../cpu9/cache/index0/physical_line_partition | 1 +
.../cpu/cpu9/cache/index0/shared_cpu_list | 1 +
.../cpu/cpu9/cache/index0/shared_cpu_map | 1 +
.../system/cpu/cpu9/cache/index0/size | 1 +
.../system/cpu/cpu9/cache/index0/type | 1 +
.../system/cpu/cpu9/cache/index0/uevent | 0
.../cpu9/cache/index0/ways_of_associativity | 1 +
.../cpu/cpu9/cache/index1/coherency_line_size | 1 +
.../system/cpu/cpu9/cache/index1/id | 1 +
.../system/cpu/cpu9/cache/index1/level | 1 +
.../cpu/cpu9/cache/index1/number_of_sets | 1 +
.../cpu9/cache/index1/physical_line_partition | 1 +
.../cpu/cpu9/cache/index1/shared_cpu_list | 1 +
.../cpu/cpu9/cache/index1/shared_cpu_map | 1 +
.../system/cpu/cpu9/cache/index1/size | 1 +
.../system/cpu/cpu9/cache/index1/type | 1 +
.../system/cpu/cpu9/cache/index1/uevent | 0
.../cpu9/cache/index1/ways_of_associativity | 1 +
.../cpu/cpu9/cache/index2/coherency_line_size | 1 +
.../system/cpu/cpu9/cache/index2/id | 1 +
.../system/cpu/cpu9/cache/index2/level | 1 +
.../cpu/cpu9/cache/index2/number_of_sets | 1 +
.../cpu9/cache/index2/physical_line_partition | 1 +
.../cpu/cpu9/cache/index2/shared_cpu_list | 1 +
.../cpu/cpu9/cache/index2/shared_cpu_map | 1 +
.../system/cpu/cpu9/cache/index2/size | 1 +
.../system/cpu/cpu9/cache/index2/type | 1 +
.../system/cpu/cpu9/cache/index2/uevent | 0
.../cpu9/cache/index2/ways_of_associativity | 1 +
.../cpu/cpu9/cache/index3/coherency_line_size | 1 +
.../system/cpu/cpu9/cache/index3/id | 1 +
.../system/cpu/cpu9/cache/index3/level | 1 +
.../cpu/cpu9/cache/index3/number_of_sets | 1 +
.../cpu9/cache/index3/physical_line_partition | 1 +
.../cpu/cpu9/cache/index3/shared_cpu_list | 1 +
.../cpu/cpu9/cache/index3/shared_cpu_map | 1 +
.../system/cpu/cpu9/cache/index3/size | 1 +
.../system/cpu/cpu9/cache/index3/type | 1 +
.../system/cpu/cpu9/cache/index3/uevent | 0
.../cpu9/cache/index3/ways_of_associativity | 1 +
.../system/cpu/cpu9/cache/uevent | 0
.../system/cpu/cpu9/node1 | 1 +
.../system/cpu/cpu9/online | 1 +
.../system/cpu/cpu9/topology/cluster_cpus | 1 +
.../cpu/cpu9/topology/cluster_cpus_list | 1 +
.../system/cpu/cpu9/topology/cluster_id | 1 +
.../system/cpu/cpu9/topology/core_cpus | 1 +
.../system/cpu/cpu9/topology/core_cpus_list | 1 +
.../system/cpu/cpu9/topology/core_id | 1 +
.../system/cpu/cpu9/topology/core_siblings | 1 +
.../cpu/cpu9/topology/core_siblings_list | 1 +
.../system/cpu/cpu9/topology/die_cpus | 1 +
.../system/cpu/cpu9/topology/die_cpus_list | 1 +
.../system/cpu/cpu9/topology/die_id | 1 +
.../system/cpu/cpu9/topology/package_cpus | 1 +
.../cpu/cpu9/topology/package_cpus_list | 1 +
.../cpu/cpu9/topology/physical_package_id | 1 +
.../system/cpu/cpu9/topology/thread_siblings | 1 +
.../cpu/cpu9/topology/thread_siblings_list | 1 +
.../linux-resctrl-mba_MBps/system/cpu/online | 1 +
.../linux-resctrl-mba_MBps/system/cpu/present | 1 +
.../system/node/node0/cpu0 | 1 +
.../system/node/node0/cpu10 | 1 +
.../system/node/node0/cpu12 | 1 +
.../system/node/node0/cpu14 | 1 +
.../system/node/node0/cpu16 | 1 +
.../system/node/node0/cpu18 | 1 +
.../system/node/node0/cpu2 | 1 +
.../system/node/node0/cpu20 | 1 +
.../system/node/node0/cpu22 | 1 +
.../system/node/node0/cpu24 | 1 +
.../system/node/node0/cpu26 | 1 +
.../system/node/node0/cpu28 | 1 +
.../system/node/node0/cpu30 | 1 +
.../system/node/node0/cpu32 | 1 +
.../system/node/node0/cpu34 | 1 +
.../system/node/node0/cpu36 | 1 +
.../system/node/node0/cpu38 | 1 +
.../system/node/node0/cpu4 | 1 +
.../system/node/node0/cpu40 | 1 +
.../system/node/node0/cpu42 | 1 +
.../system/node/node0/cpu44 | 1 +
.../system/node/node0/cpu46 | 1 +
.../system/node/node0/cpu6 | 1 +
.../system/node/node0/cpu8 | 1 +
.../system/node/node0/cpulist | 1 +
.../system/node/node0/cpumap | 1 +
.../system/node/node0/distance | 1 +
.../hugepages-1048576kB/free_hugepages | 1 +
.../hugepages-1048576kB/nr_hugepages | 1 +
.../hugepages-1048576kB/surplus_hugepages | 1 +
.../hugepages/hugepages-2048kB/free_hugepages | 1 +
.../hugepages/hugepages-2048kB/nr_hugepages | 1 +
.../hugepages-2048kB/surplus_hugepages | 1 +
.../system/node/node1/cpu1 | 1 +
.../system/node/node1/cpu11 | 1 +
.../system/node/node1/cpu13 | 1 +
.../system/node/node1/cpu15 | 1 +
.../system/node/node1/cpu17 | 1 +
.../system/node/node1/cpu19 | 1 +
.../system/node/node1/cpu21 | 1 +
.../system/node/node1/cpu23 | 1 +
.../system/node/node1/cpu25 | 1 +
.../system/node/node1/cpu27 | 1 +
.../system/node/node1/cpu29 | 1 +
.../system/node/node1/cpu3 | 1 +
.../system/node/node1/cpu31 | 1 +
.../system/node/node1/cpu33 | 1 +
.../system/node/node1/cpu35 | 1 +
.../system/node/node1/cpu37 | 1 +
.../system/node/node1/cpu39 | 1 +
.../system/node/node1/cpu41 | 1 +
.../system/node/node1/cpu43 | 1 +
.../system/node/node1/cpu45 | 1 +
.../system/node/node1/cpu47 | 1 +
.../system/node/node1/cpu5 | 1 +
.../system/node/node1/cpu7 | 1 +
.../system/node/node1/cpu9 | 1 +
.../system/node/node1/cpulist | 1 +
.../system/node/node1/cpumap | 1 +
.../system/node/node1/distance | 1 +
.../hugepages-1048576kB/free_hugepages | 1 +
.../hugepages-1048576kB/nr_hugepages | 1 +
.../hugepages-1048576kB/surplus_hugepages | 1 +
.../hugepages/hugepages-2048kB/free_hugepages | 1 +
.../hugepages/hugepages-2048kB/nr_hugepages | 1 +
.../hugepages-2048kB/surplus_hugepages | 1 +
.../linux-resctrl-mba_MBps/system/node/online | 1 +
.../vircaps2xmldata/vircaps-x86_64-caches.xml | 4 +
.../vircaps-x86_64-resctrl-amd.xml | 191 ++++++++++++++++++
.../vircaps-x86_64-resctrl-cdp.xml | 12 ++
.../vircaps-x86_64-resctrl-cmt.xml | 12 ++
.../vircaps-x86_64-resctrl-fake-feature.xml | 12 ++
.../vircaps-x86_64-resctrl-mba_MBps.xml | 177 ++++++++++++++++
.../vircaps-x86_64-resctrl.xml | 12 ++
tests/vircaps2xmltest.c | 3 +
tests/virresctrldata/resctrl-amd.schemata | 2 +
.../virresctrldata/resctrl-mba_MBps.schemata | 3 +
tests/virresctrldata/resctrl.schemata | 1 -
tests/virresctrltest.c | 3 +
7371 files changed, 7354 insertions(+), 85 deletions(-)
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/L3/bit_usage
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/L3/cbm_mask
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/L3/min_cbm_bits
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/L3/num_closids
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/L3/shareable_bits
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/L3/sparse_masks
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/L3_MON/max_threshold_occupancy
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/L3_MON/mbm_local_bytes_config
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/L3_MON/mbm_total_bytes_config
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/L3_MON/mon_features
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/L3_MON/num_rmids
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/MB/bandwidth_gran
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/MB/delay_linear
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/MB/min_bandwidth
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/MB/num_closids
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/SMBA/bandwidth_gran
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/SMBA/delay_linear
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/SMBA/min_bandwidth
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/SMBA/num_closids
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/info/last_cmd_status
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mode
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_00/llc_occupancy
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_00/mbm_local_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_00/mbm_total_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_02/llc_occupancy
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_02/mbm_local_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_02/mbm_total_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_04/llc_occupancy
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_04/mbm_local_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_04/mbm_total_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_06/llc_occupancy
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_06/mbm_local_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_06/mbm_total_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_08/llc_occupancy
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_08/mbm_local_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_08/mbm_total_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_10/llc_occupancy
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_10/mbm_local_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_10/mbm_total_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_12/llc_occupancy
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_12/mbm_local_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_12/mbm_total_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_14/llc_occupancy
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_14/mbm_local_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/mon_data/mon_L3_14/mbm_total_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/schemata
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/resctrl/tasks
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu0/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu1/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu10/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu11/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu12/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu13/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu14/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu15/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu16/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu17/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu18/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu19/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu2/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu20/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu21/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu22/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu23/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu24/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu25/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu26/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu27/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu28/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu29/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu3/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu30/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu31/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu32/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu33/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu34/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu35/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu36/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu37/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu38/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu39/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu4/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu40/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu41/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu42/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu43/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu44/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu45/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu46/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu47/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu48/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu49/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu5/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu50/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu51/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu52/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu53/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu54/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu55/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu56/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu57/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu58/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu59/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu6/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu60/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu61/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu62/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu63/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu7/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu8/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/topology/ppin
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/cpu9/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/cpu/present
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu0
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu1
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu10
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu11
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu12
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu13
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu14
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu15
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu2
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu3
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu32
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu33
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu34
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu35
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu36
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu37
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu38
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu39
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu4
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu40
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu41
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu42
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu43
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu44
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu45
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu46
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu47
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu5
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu6
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu7
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu8
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpu9
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpulist
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/cpumap
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/distance
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/hugepages/hugepages-1048576kB/free_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/hugepages/hugepages-1048576kB/nr_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/hugepages/hugepages-1048576kB/surplus_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/hugepages/hugepages-2048kB/free_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/hugepages/hugepages-2048kB/nr_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node0/hugepages/hugepages-2048kB/surplus_hugepages
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu16
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu17
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu18
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu19
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu20
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu21
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu22
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu23
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu24
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu25
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu26
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu27
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu28
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu29
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu30
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu31
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu48
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu49
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu50
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu51
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu52
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu53
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu54
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu55
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu56
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu57
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu58
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu59
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu60
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu61
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu62
create mode 120000 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpu63
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpulist
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/cpumap
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/distance
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/hugepages/hugepages-1048576kB/free_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/hugepages/hugepages-1048576kB/nr_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/hugepages/hugepages-1048576kB/surplus_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/hugepages/hugepages-2048kB/free_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/hugepages/hugepages-2048kB/nr_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/node/node1/hugepages/hugepages-2048kB/surplus_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-amd/system/node/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/L2/bit_usage
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/L2/cbm_mask
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/L2/min_cbm_bits
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/L2/num_closids
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/L2/shareable_bits
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/L2/sparse_masks
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/L3/bit_usage
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/L3/cbm_mask
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/L3/min_cbm_bits
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/L3/num_closids
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/L3/shareable_bits
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/L3/sparse_masks
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/L3_MON/max_threshold_occupancy
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/L3_MON/mon_features
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/L3_MON/num_rmids
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/MB/bandwidth_gran
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/MB/delay_linear
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/MB/min_bandwidth
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/MB/num_closids
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/MB/thread_throttle_mode
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/info/last_cmd_status
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/mode
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/mon_data/mon_L3_00/llc_occupancy
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/mon_data/mon_L3_00/mbm_local_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/mon_data/mon_L3_00/mbm_total_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/mon_data/mon_L3_01/llc_occupancy
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/mon_data/mon_L3_01/mbm_local_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/mon_data/mon_L3_01/mbm_total_bytes
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/schemata
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/resctrl/tasks
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu0/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu1/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu10/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu11/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu12/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu13/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu14/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu15/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu16/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu17/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu18/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu19/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu2/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu20/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu21/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu22/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu23/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu24/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu25/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu26/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu27/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu28/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu29/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu3/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu30/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu31/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu32/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu33/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu34/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu35/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu36/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu37/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu38/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu39/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu4/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu40/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu41/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu42/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu43/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu44/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu45/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu46/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu47/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu5/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu6/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu7/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/node0
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu8/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index0/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index0/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index0/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index0/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index0/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index0/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index0/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index0/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index0/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index0/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index0/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index1/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index1/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index1/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index1/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index1/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index1/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index1/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index1/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index1/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index1/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index1/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index2/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index2/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index2/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index2/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index2/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index2/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index2/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index2/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index2/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index2/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index2/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index3/coherency_line_size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index3/id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index3/level
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index3/number_of_sets
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index3/physical_line_partition
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index3/shared_cpu_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index3/shared_cpu_map
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index3/size
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index3/type
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index3/uevent
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/index3/ways_of_associativity
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/cache/uevent
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/node1
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/topology/cluster_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/topology/cluster_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/topology/cluster_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/topology/core_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/topology/core_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/topology/core_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/topology/core_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/topology/core_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/topology/die_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/topology/die_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/topology/die_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/topology/package_cpus
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/topology/package_cpus_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/topology/physical_package_id
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/topology/thread_siblings
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/cpu9/topology/thread_siblings_list
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/online
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/cpu/present
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu0
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu10
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu12
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu14
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu16
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu18
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu2
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu20
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu22
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu24
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu26
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu28
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu30
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu32
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu34
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu36
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu38
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu4
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu40
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu42
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu44
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu46
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu6
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpu8
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpulist
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/cpumap
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/distance
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/hugepages/hugepages-1048576kB/free_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/hugepages/hugepages-1048576kB/nr_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/hugepages/hugepages-1048576kB/surplus_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/hugepages/hugepages-2048kB/free_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/hugepages/hugepages-2048kB/nr_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node0/hugepages/hugepages-2048kB/surplus_hugepages
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu1
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu11
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu13
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu15
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu17
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu19
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu21
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu23
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu25
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu27
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu29
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu3
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu31
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu33
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu35
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu37
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu39
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu41
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu43
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu45
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu47
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu5
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu7
create mode 120000 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpu9
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpulist
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/cpumap
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/distance
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/hugepages/hugepages-1048576kB/free_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/hugepages/hugepages-1048576kB/nr_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/hugepages/hugepages-1048576kB/surplus_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/hugepages/hugepages-2048kB/free_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/hugepages/hugepages-2048kB/nr_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/node1/hugepages/hugepages-2048kB/surplus_hugepages
create mode 100644 tests/vircaps2xmldata/linux-resctrl-mba_MBps/system/node/online
create mode 100644 tests/vircaps2xmldata/vircaps-x86_64-resctrl-amd.xml
create mode 100644 tests/vircaps2xmldata/vircaps-x86_64-resctrl-mba_MBps.xml
create mode 100644 tests/virresctrldata/resctrl-amd.schemata
create mode 100644 tests/virresctrldata/resctrl-mba_MBps.schemata
--
2.46.0
2
17
13 Sep '24
Found these on an old branch. Might as well post them.
Michal Prívozník (4):
vircommand: Drop unused arguments from virCommandMassCloseGetFDs*()
vircommand: Isolate FD dir parsing into a separate function
vircommand: Make sysconf(_SC_OPEN_MAX) failure non-fatal
vircommand: Parse /dev/fd on *BSD-like systems when looking for opened
FDs
src/util/vircommand.c | 43 ++++++++++++++++++-------------------------
1 file changed, 18 insertions(+), 25 deletions(-)
--
2.44.2
4
14
[PATCH v1] chardev: introduce 'reconnect-ms' and deprecate 'reconnect'
by Daniil Tatianin 13 Sep '24
by Daniil Tatianin 13 Sep '24
13 Sep '24
The 'reconnect' option only allows to specify the time in seconds,
which is way too long for certain workflows.
We have a lightweight disk backend server, which takes about 20ms to
live update, but due to this limitation in QEMU, previously the guest
disk controller would hang for one second because it would take this
long for QEMU to reinitialize the socket connection.
Introduce a new option called 'reconnect-ms', which is the same as
'reconnect', except the value is treated as milliseconds. These are
mutually exclusive and specifying both results in an error.
'reconnect' is also deprecated by this commit to make it possible to
remove it in the future as to not keep two options that control the
same thing.
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov(a)yandex-team.ru>
Acked-by: Peter Krempa <pkrempa(a)redhat.com>
Signed-off-by: Daniil Tatianin <d-tatianin(a)yandex-team.ru>
---
Changes since v0:
- Mention the deprecation in docs (Paolo)
---
chardev/char-socket.c | 33 ++++++++++++++++++++++++---------
chardev/char.c | 3 +++
docs/about/deprecated.rst | 6 ++++++
include/chardev/char-socket.h | 2 +-
qapi/char.json | 17 +++++++++++++++--
5 files changed, 49 insertions(+), 12 deletions(-)
diff --git a/chardev/char-socket.c b/chardev/char-socket.c
index 1ca9441b1b..c24331ac23 100644
--- a/chardev/char-socket.c
+++ b/chardev/char-socket.c
@@ -74,7 +74,7 @@ static void qemu_chr_socket_restart_timer(Chardev *chr)
assert(!s->reconnect_timer);
name = g_strdup_printf("chardev-socket-reconnect-%s", chr->label);
s->reconnect_timer = qemu_chr_timeout_add_ms(chr,
- s->reconnect_time * 1000,
+ s->reconnect_time_ms,
socket_reconnect_timeout,
chr);
g_source_set_name(s->reconnect_timer, name);
@@ -481,7 +481,7 @@ static void tcp_chr_disconnect_locked(Chardev *chr)
if (emit_close) {
qemu_chr_be_event(chr, CHR_EVENT_CLOSED);
}
- if (s->reconnect_time && !s->reconnect_timer) {
+ if (s->reconnect_time_ms && !s->reconnect_timer) {
qemu_chr_socket_restart_timer(chr);
}
}
@@ -1080,9 +1080,9 @@ static int tcp_chr_wait_connected(Chardev *chr, Error **errp)
} else {
Error *err = NULL;
if (tcp_chr_connect_client_sync(chr, &err) < 0) {
- if (s->reconnect_time) {
+ if (s->reconnect_time_ms) {
error_free(err);
- g_usleep(s->reconnect_time * 1000ULL * 1000ULL);
+ g_usleep(s->reconnect_time_ms * 1000ULL);
} else {
error_propagate(errp, err);
return -1;
@@ -1267,13 +1267,13 @@ skip_listen:
static int qmp_chardev_open_socket_client(Chardev *chr,
- int64_t reconnect,
+ int64_t reconnect_ms,
Error **errp)
{
SocketChardev *s = SOCKET_CHARDEV(chr);
- if (reconnect > 0) {
- s->reconnect_time = reconnect;
+ if (reconnect_ms > 0) {
+ s->reconnect_time_ms = reconnect_ms;
tcp_chr_connect_client_async(chr);
return 0;
} else {
@@ -1371,7 +1371,7 @@ static void qmp_chardev_open_socket(Chardev *chr,
bool is_tn3270 = sock->has_tn3270 ? sock->tn3270 : false;
bool is_waitconnect = sock->has_wait ? sock->wait : false;
bool is_websock = sock->has_websocket ? sock->websocket : false;
- int64_t reconnect = sock->has_reconnect ? sock->reconnect : 0;
+ int64_t reconnect_ms = 0;
SocketAddress *addr;
s->is_listen = is_listen;
@@ -1443,7 +1443,13 @@ static void qmp_chardev_open_socket(Chardev *chr,
return;
}
} else {
- if (qmp_chardev_open_socket_client(chr, reconnect, errp) < 0) {
+ if (sock->has_reconnect) {
+ reconnect_ms = sock->reconnect * 1000ULL;
+ } else if (sock->has_reconnect_ms) {
+ reconnect_ms = sock->reconnect_ms;
+ }
+
+ if (qmp_chardev_open_socket_client(chr, reconnect_ms, errp) < 0) {
return;
}
}
@@ -1509,6 +1515,15 @@ static void qemu_chr_parse_socket(QemuOpts *opts, ChardevBackend *backend,
sock->wait = qemu_opt_get_bool(opts, "wait", true);
sock->has_reconnect = qemu_opt_find(opts, "reconnect");
sock->reconnect = qemu_opt_get_number(opts, "reconnect", 0);
+ sock->has_reconnect_ms = qemu_opt_find(opts, "reconnect-ms");
+ sock->reconnect_ms = qemu_opt_get_number(opts, "reconnect-ms", 0);
+
+ if (sock->has_reconnect_ms && sock->has_reconnect) {
+ error_setg(errp,
+ "'reconnect' and 'reconnect-ms' are mutually exclusive");
+ return;
+ }
+
sock->tls_creds = g_strdup(qemu_opt_get(opts, "tls-creds"));
sock->tls_authz = g_strdup(qemu_opt_get(opts, "tls-authz"));
diff --git a/chardev/char.c b/chardev/char.c
index ba847b6e9e..35623c78a3 100644
--- a/chardev/char.c
+++ b/chardev/char.c
@@ -888,6 +888,9 @@ QemuOptsList qemu_chardev_opts = {
},{
.name = "reconnect",
.type = QEMU_OPT_NUMBER,
+ },{
+ .name = "reconnect-ms",
+ .type = QEMU_OPT_NUMBER,
},{
.name = "telnet",
.type = QEMU_OPT_BOOL,
diff --git a/docs/about/deprecated.rst b/docs/about/deprecated.rst
index 88f0f03786..e5db9bc6e9 100644
--- a/docs/about/deprecated.rst
+++ b/docs/about/deprecated.rst
@@ -430,6 +430,12 @@ Backend ``memory`` (since 9.0)
``memory`` is a deprecated synonym for ``ringbuf``.
+``reconnect`` (since 9.2)
+^^^^^^^^^^^^^^^^^^^^^^^^^
+
+The ``reconnect`` option only allows specifiying second granularity timeouts,
+which is not enough for all types of use cases, use ``reconnect-ms`` instead.
+
CPU device properties
'''''''''''''''''''''
diff --git a/include/chardev/char-socket.h b/include/chardev/char-socket.h
index 0708ca6fa9..d6d13ad37f 100644
--- a/include/chardev/char-socket.h
+++ b/include/chardev/char-socket.h
@@ -74,7 +74,7 @@ struct SocketChardev {
bool is_websock;
GSource *reconnect_timer;
- int64_t reconnect_time;
+ int64_t reconnect_time_ms;
bool connect_err_reported;
QIOTask *connect_task;
diff --git a/qapi/char.json b/qapi/char.json
index ef58445cee..7f117438c6 100644
--- a/qapi/char.json
+++ b/qapi/char.json
@@ -273,7 +273,19 @@
#
# @reconnect: For a client socket, if a socket is disconnected, then
# attempt a reconnect after the given number of seconds. Setting
-# this to zero disables this function. (default: 0) (Since: 2.2)
+# this to zero disables this function. The use of this member is
+# deprecated, use @reconnect-ms instead. (default: 0) (Since: 2.2)
+#
+# @reconnect-ms: For a client socket, if a socket is disconnected,
+# then attempt a reconnect after the given number of milliseconds.
+# Setting this to zero disables this function. This member is
+# mutually exclusive with @reconnect.
+# (default: 0) (Since: 9.2)
+#
+# Features:
+#
+# @deprecated: Member @reconnect is deprecated. Use @reconnect-ms
+# instead.
#
# Since: 1.4
##
@@ -287,7 +299,8 @@
'*telnet': 'bool',
'*tn3270': 'bool',
'*websocket': 'bool',
- '*reconnect': 'int' },
+ '*reconnect': { 'type': 'int', 'features': [ 'deprecated' ] },
+ '*reconnect-ms': 'int' },
'base': 'ChardevCommon' }
##
--
2.34.1
2
3
The Xen libxl driver does not support nwfilter. Introduce a
deviceValidateCallback function with a check for nwfilters, returning
VIR_ERR_CONFIG_UNSUPPORTED if any are found. Also fail to start any
existing VMs referencing nwfilters.
Drivers generally ignore unrecognized XML configuration, but ignoring
a user's request to filter VM network traffic can be viewed as a
security issue.
Signed-off-by: Jim Fehlig <jfehlig(a)suse.com>
---
This is a V2 of patch2 from this series
https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/thread/QDRD…
I've pushed patch1. Personally I'm fine leaving it at that, but I
made it this far so might as well give patch2 another attempt :-).
There's still the open question whether the same should be done for
the other hypervisor drivers that do not support nwfilters.
Changes in V2:
Use deviceValidateCallback instead of devicesPostParseCallback
Reject use of nwfilters at VM start
src/libxl/libxl_conf.c | 7 +++++++
src/libxl/libxl_domain.c | 18 ++++++++++++++++++
2 files changed, 25 insertions(+)
diff --git a/src/libxl/libxl_conf.c b/src/libxl/libxl_conf.c
index 62e1be6672..bf5d925a20 100644
--- a/src/libxl/libxl_conf.c
+++ b/src/libxl/libxl_conf.c
@@ -1279,6 +1279,13 @@ libxlMakeNic(virDomainDef *def,
* x_nics[i].mtu = 1492;
*/
+ if (l_nic->filter) {
+ virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
+ _("filterref is not supported in %1$s"),
+ virDomainVirtTypeToString(def->virtType));
+ return -1;
+ }
+
if (l_nic->script && !(actual_type == VIR_DOMAIN_NET_TYPE_BRIDGE ||
actual_type == VIR_DOMAIN_NET_TYPE_ETHERNET)) {
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
diff --git a/src/libxl/libxl_domain.c b/src/libxl/libxl_domain.c
index 0f129ec69c..d400f32627 100644
--- a/src/libxl/libxl_domain.c
+++ b/src/libxl/libxl_domain.c
@@ -356,12 +356,30 @@ libxlDomainDefValidate(const virDomainDef *def,
return 0;
}
+static int
+libxlDomainDeviceDefValidate(const virDomainDeviceDef *dev,
+ const virDomainDef *def,
+ void *opaque G_GNUC_UNUSED,
+ void *parseOpaque G_GNUC_UNUSED)
+{
+ if (dev->type == VIR_DOMAIN_DEVICE_NET && dev->data.net->filter) {
+ virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
+ _("filterref is not supported in %1$s"),
+ virDomainVirtTypeToString(def->virtType));
+ return -1;
+ }
+
+ return 0;
+}
+
+
virDomainDefParserConfig libxlDomainDefParserConfig = {
.macPrefix = { 0x00, 0x16, 0x3e },
.netPrefix = LIBXL_GENERATED_PREFIX_XEN,
.devicesPostParseCallback = libxlDomainDeviceDefPostParse,
.domainPostParseCallback = libxlDomainDefPostParse,
.domainValidateCallback = libxlDomainDefValidate,
+ .deviceValidateCallback = libxlDomainDeviceDefValidate,
.features = VIR_DOMAIN_DEF_FEATURE_USER_ALIAS |
VIR_DOMAIN_DEF_FEATURE_FW_AUTOSELECT |
--
2.35.3
2
1
This is essentially V2 of a small series inspired by a report on the
security list about nwfilters not working with Xen VMs. V1 was posted
to the security list, so no public reference. The libxl driver simply
does not support nwfilters, so the report is really a RFE vs a
security issue.
I'm now moving the discussion to the public devel list. I don't have
time to add nwfilter support to the libxl driver, but agree the
documentation could be improved. Given the perceived security
implications, I also think it's worth considering rejecting Xen VM
<interface> configuration containing <filterref>, even though libvirt
tends to ignore unsupported XML config.
Patch1 improves the documentation. I also considered adding a
"Limitations" section to docs/drvxen.rst, but none of the other
drivers have such section. Also, for the xen one, I wasn't sure where
to start with listing limitations :-P.
Patch2 rejects Xen VM config containg <filterref> in their <interface>
definitions.
Jim Fehlig (2):
docs: Clarify hypervisor support for nwfilter profiles
libxl: Reject VM config referencing nwfilters
docs/formatdomain.rst | 8 ++++----
src/libxl/libxl_domain.c | 7 +++++++
2 files changed, 11 insertions(+), 4 deletions(-)
--
2.35.3
5
18
[PATCH v2] documentation: untrue statement in GetVersion() method description
by Stepan Zobal 12 Sep '24
by Stepan Zobal 12 Sep '24
12 Sep '24
In the end of virConnectGetVersion() description there is written: "not with a Read-Only connection"
which isn't true after I tried virConnectOpenReadOnly() with virConnectGetVersion() and it clearly shows the version correctly.
Signed-off-by: Stepan Zobal <szobal(a)redhat.com>
---
Removed another unnecessary comment about virConnectGetVersion() method.
src/libvirt-host.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/src/libvirt-host.c b/src/libvirt-host.c
index e67b36812e..b3a6421a7f 100644
--- a/src/libvirt-host.c
+++ b/src/libvirt-host.c
@@ -179,9 +179,7 @@ virConnectGetType(virConnectPtr conn)
* @conn: pointer to the hypervisor connection
* @hvVer: return value for the version of the running hypervisor (OUT)
*
- * Get the version level of the Hypervisor running. This may work only with
- * hypervisor call, i.e. with privileged access to the hypervisor, not
- * with a Read-Only connection.
+ * Get the version level of the Hypervisor running.
*
* Returns -1 in case of error, 0 otherwise. if the version can't be
* extracted by lack of capacities returns 0 and @hvVer is 0, otherwise
--
2.46.0
2
1
[PATCH] documentation: untrue statement in GetVersion() method description
by Stepan Zobal 12 Sep '24
by Stepan Zobal 12 Sep '24
12 Sep '24
In the end of virConnectGetVersion() description there is written: "not with a Read-Only connection"
which isn't true after I tried virConnectOpenReadOnly() with virConnectGetVersion() and it clearly shows the version correctly.
Signed-off-by: Stepan Zobal <szobal(a)redhat.com>
---
src/libvirt-host.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/libvirt-host.c b/src/libvirt-host.c
index e67b36812e..5030707bbf 100644
--- a/src/libvirt-host.c
+++ b/src/libvirt-host.c
@@ -180,8 +180,7 @@ virConnectGetType(virConnectPtr conn)
* @hvVer: return value for the version of the running hypervisor (OUT)
*
* Get the version level of the Hypervisor running. This may work only with
- * hypervisor call, i.e. with privileged access to the hypervisor, not
- * with a Read-Only connection.
+ * hypervisor call, i.e. with privileged access to the hypervisor.
*
* Returns -1 in case of error, 0 otherwise. if the version can't be
* extracted by lack of capacities returns 0 and @hvVer is 0, otherwise
--
2.46.0
2
1
I noticed a couple deprecation errors when trying to build libvirt
with the latest libxml2 version from the master branch. These patches
fix the deprecated fields.
Both functions used are available in the oldest libxml2 version
required by libvirt, so there is no need to bump it.
Changes in v2:
- Save return value of xmlCtxtGetLastError for later use
- Check that xmlCtxtGetLastError doesn't return NULL
Jakub Palacky (2):
util/virxml: use xmlCtxtGetLastError when applicable
vmx: use xmlBufferDetach() when applicable
src/util/virxml.c | 19 ++++++++++---------
src/vmx/vmx.c | 2 +-
2 files changed, 11 insertions(+), 10 deletions(-)
--
2.46.0
2
3
12 Sep '24
When libbsd is available, use the preferred readpassphrase() function isntead of getpass()
as the getpass() function has been marked as obsolete and shouldnt be used
Signed-off-by: Jakub Palacky <jpalacky(a)redhat.com>
---
Changes in v2:
- Fix possible memory leak of g_new0
- Use PASS_MAX for max password length
- Set PASS_MAX to 1024 if not defined
meson.build | 6 ++++++
src/meson.build | 1 +
src/util/virutil.c | 17 +++++++++++++++++
3 files changed, 24 insertions(+)
diff --git a/meson.build b/meson.build
index 297fbfae48..699a65c7e8 100644
--- a/meson.build
+++ b/meson.build
@@ -954,6 +954,11 @@ if blkid_dep.found()
conf.set('WITH_BLKID', 1)
endif
+bsd_dep = dependency('libbsd', required: false)
+if bsd_dep.found()
+ conf.set('WITH_LIBBSD', 1)
+endif
+
capng_dep = dependency('libcap-ng', required: get_option('capng'))
if capng_dep.found()
conf.set('WITH_CAPNG', 1)
@@ -2335,6 +2340,7 @@ libs_summary = {
'dlopen': dlopen_dep.found(),
'fuse': fuse_dep.found(),
'glusterfs': glusterfs_dep.found(),
+ 'libbsd': bsd_dep.found(),
'libiscsi': libiscsi_dep.found(),
'libkvm': libkvm_dep.found(),
'libnbd': libnbd_dep.found(),
diff --git a/src/meson.build b/src/meson.build
index 8cce42c7ad..30ae34646e 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -9,6 +9,7 @@ src_dep = declare_dependency(
dependencies: [
glib_dep,
libxml_dep,
+ bsd_dep,
],
include_directories: [
libvirt_inc,
diff --git a/src/util/virutil.c b/src/util/virutil.c
index 6c89a48e51..bf6008fdfb 100644
--- a/src/util/virutil.c
+++ b/src/util/virutil.c
@@ -31,6 +31,10 @@
# include <conio.h>
#endif /* WIN32 */
+#ifdef WITH_LIBBSD
+# include <bsd/readpassphrase.h>
+#endif
+
#ifdef __linux__
# include <sys/sysmacros.h>
#endif
@@ -1773,6 +1777,19 @@ char *virGetPassword(void)
}
return g_string_free(pw, FALSE);
+#elif WITH_LIBBSD /* !WIN32 */
+# ifndef PASS_MAX
+# define PASS_MAX 1024
+# endif
+ char *pass = NULL;
+ g_autofree char *buffer = g_new0(char, PASS_MAX);
+
+ pass = readpassphrase("", buffer, PASS_MAX, 0);
+ if (pass == NULL) {
+ return NULL;
+ }
+
+ return g_steal_pointer(&buffer);
#else /* !WIN32 */
return g_strdup(getpass(""));
#endif /* ! WIN32 */
--
2.46.0
2
1
I noticed a couple deprecation errors when trying to build libvirt
with the latest libxml2 version from the master branch. These patches
fix the deprecated fields.
Both functions used are available in the oldest libxml2 version
required by libvirt, so there is no need to bump it.
Jakub Palacky (2):
util/virxml: use xmlCtxtGetLastError when applicable
vmx: use xmlBufferDetach() when applicable
src/util/virxml.c | 16 ++++++++--------
src/vmx/vmx.c | 2 +-
2 files changed, 9 insertions(+), 9 deletions(-)
--
2.46.0
2
3
When connecting to a VMware server (eg using vpx://) we download and
try to parse the VMware metadata '*.vmx' file of a guest. In this
case a VMX file was found which contained this key:
pciPassthru*.present = "False"
The '*' character was not previously allowed in keys so this failed to
parse with the error:
VIR_ERR_CONF_SYNTAX: VIR_FROM_CONF: configuration file syntax error:
memory conf:74: expecting an assignment
Resolves: https://issues.redhat.com/browse/RHEL-58446
Thanks: Daniel Berrange
Signed-off-by: Richard W.M. Jones <rjones(a)redhat.com>
---
src/util/virconf.c | 2 +-
tests/vmx2xmldata/esx-in-the-wild-14.vmx | 109 +++++++++++++++++++++++
tests/vmx2xmldata/esx-in-the-wild-14.xml | 35 ++++++++
tests/vmx2xmltest.c | 1 +
4 files changed, 146 insertions(+), 1 deletion(-)
diff --git a/src/util/virconf.c b/src/util/virconf.c
index 66b3e0482e..c820c94037 100644
--- a/src/util/virconf.c
+++ b/src/util/virconf.c
@@ -553,7 +553,7 @@ virConfParseName(virConfParserCtxt *ctxt)
while ((ctxt->cur < ctxt->end) &&
(g_ascii_isalnum(CUR) || (CUR == '_') ||
((ctxt->conf->flags & VIR_CONF_FLAG_VMX_FORMAT) &&
- ((CUR == ':') || (CUR == '.') || (CUR == '-'))) ||
+ ((CUR == ':') || (CUR == '.') || (CUR == '-') || (CUR == '*'))) ||
((ctxt->conf->flags & VIR_CONF_FLAG_LXC_FORMAT) &&
(CUR == '.'))))
NEXT;
diff --git a/tests/vmx2xmldata/esx-in-the-wild-14.vmx b/tests/vmx2xmldata/esx-in-the-wild-14.vmx
new file mode 100644
index 0000000000..1b06352348
--- /dev/null
+++ b/tests/vmx2xmldata/esx-in-the-wild-14.vmx
@@ -0,0 +1,109 @@
+.encoding = "UTF-8"
+displayName = "wild14"
+config.version = "8"
+virtualHW.version = "19"
+nvram = "wild14.nvram"
+pciBridge0.present = "TRUE"
+svga.present = "TRUE"
+pciBridge4.present = "TRUE"
+pciBridge4.virtualDev = "pcieRootPort"
+pciBridge4.functions = "8"
+pciBridge5.present = "TRUE"
+pciBridge5.virtualDev = "pcieRootPort"
+pciBridge5.functions = "8"
+pciBridge6.present = "TRUE"
+pciBridge6.virtualDev = "pcieRootPort"
+pciBridge6.functions = "8"
+pciBridge7.present = "TRUE"
+pciBridge7.virtualDev = "pcieRootPort"
+pciBridge7.functions = "8"
+vmci0.present = "TRUE"
+hpet0.present = "TRUE"
+numvcpus = "12"
+memSize = "32768"
+vm.createDate = "1661219530463754"
+scsi0.virtualDev = "pvscsi"
+scsi0.present = "TRUE"
+annotation = "execution env sandbox automation platform"
+guestOS = "rhel7-64"
+uuid.bios = "42 1b 22 3a f2 c1 c7 c9-a3 99 34 d2 d9 fd e2 6d"
+vc.uuid = "50 1b 83 1e 75 d8 15 f8-36 fa b9 e2 25 f3 95 aa"
+migrate.hostLog = "wild14.hlog"
+disk.EnableUUID = "true"
+guestinfo.Vrm.Server.Host = "wild14.local"
+numa.autosize.cookie = "120012"
+numa.autosize.vcpu.maxPerVirtualNode = "12"
+sched.swap.derivedName = "/vmfs/volumes/64e4b8e0/wild/wild14.vswp"
+pciBridge0.pciSlotNumber = "17"
+pciBridge4.pciSlotNumber = "21"
+pciBridge5.pciSlotNumber = "22"
+pciBridge6.pciSlotNumber = "23"
+pciBridge7.pciSlotNumber = "24"
+scsi0.pciSlotNumber = "160"
+vmci0.pciSlotNumber = "32"
+scsi0.sasWWID = "50 05 05 6a f2 c1 c7 c0"
+vmci0.id = "-637672851"
+svga.vramSize = "8388608"
+monitor.phys_bits_used = "45"
+vmotion.checkpointFBSize = "8388608"
+vmotion.checkpointSVGAPrimarySize = "8388608"
+softPowerOff = "FALSE"
+svga.guestBackedPrimaryAware = "TRUE"
+tools.syncTime = "FALSE"
+guestOS.detailed.data = "architecture='X86' bitness='64' distroName='Red Hat Enterprise Linux' distroVersion='8.8' familyName='Linux' kernelVersion='4.18.0-477.21.1.el8_8.x86_64' prettyName='Red Hat Enterprise Linux 8.8 (Ootpa)'"
+tools.remindInstall = "TRUE"
+config.readOnly = "FALSE"
+guestInfo.detailed.data = "architecture='X86' bitness='64' cpeString='cpe:/o:redhat:enterprise_linux:8::baseos' distroAddlVersion='8.10 (Ootpa)' distroName='Red Hat Enterprise Linux' distroVersion='8.10' familyName='Linux' kernelVersion='4.18.0-553.8.1.el8_10.x86_64' prettyName='Red Hat Enterprise Linux 8.10 (Ootpa)'"
+log.keepOld = "10"
+tools.setInfo.sizeLimit = "1048576"
+RemoteDisplay.maxConnections = "1"
+isolation.tools.diskWiper.disable = "True"
+isolation.tools.vmxDnDVersionGet.disable = "True"
+isolation.tools.copy.disable = "true"
+isolation.device.connectable.disable = "True"
+tools.guestlib.enableHostInfo = "False"
+isolation.device.edit.disable = "True"
+isolation.tools.setGUIOptions.enable = "False"
+pciPassthru*.present = "False"
+isolation.tools.dnd.disable = "true"
+log.rotateSize = "1024000"
+isolation.tools.paste.disable = "True"
+isolation.tools.diskShrink.disable = "True"
+time.synchronize.restore = "False"
+time.synchronize.resume.disk = "False"
+time.synchronize.tools.startup = "False"
+time.synchronize.continue = "False"
+time.synchronize.shrink = "False"
+time.synchronize.tools.enable = "False"
+mks.enable3d = "False"
+time.synchronize.resume.host = "False"
+ethernet0.addressType = "static"
+ethernet0.pciSlotNumber = "192"
+ethernet0.present = "TRUE"
+ethernet0.uptCompatibility = "TRUE"
+ethernet0.virtualDev = "vmxnet3"
+floppy0.present = "FALSE"
+ide0:0.deviceType = "atapi-cdrom"
+ide0:0.present = "TRUE"
+ide0:0.startConnected = "FALSE"
+ethernet0.opaqueNetwork.id = "a2636d32-fc15-469f-b3b4-f8193fefd097"
+ethernet0.opaqueNetwork.type = "nsx.LogicalSwitch"
+ethernet0.address = "00:00:00:00:00:00"
+vmotion.svga.mobMaxSize = "8388608"
+vmotion.svga.graphicsMemoryKB = "8192"
+scsi0:0.deviceType = "scsi-hardDisk"
+scsi0:0.fileName = "wild1.vmdk"
+sched.scsi0:0.shares = "normal"
+sched.scsi0:0.throughputCap = "off"
+scsi0:0.present = "TRUE"
+scsi0:1.deviceType = "scsi-hardDisk"
+scsi0:1.fileName = "wild2.vmdk"
+sched.scsi0:1.shares = "normal"
+sched.scsi0:1.throughputCap = "off"
+scsi0:1.present = "TRUE"
+bios.bootDelay = "10000"
+scsi0:1.redo = ""
+scsi0:0.redo = ""
+ide0:0.fileName = "emptyBackingString"
+ide0:0.clientDevice = "TRUE"
+cleanShutdown = "FALSE"
diff --git a/tests/vmx2xmldata/esx-in-the-wild-14.xml b/tests/vmx2xmldata/esx-in-the-wild-14.xml
new file mode 100644
index 0000000000..dd5c2434ee
--- /dev/null
+++ b/tests/vmx2xmldata/esx-in-the-wild-14.xml
@@ -0,0 +1,35 @@
+<domain type='vmware'>
+ <name>wild14</name>
+ <uuid>421b223a-f2c1-c7c9-a399-34d2d9fde26d</uuid>
+ <description>execution env sandbox automation platform</description>
+ <memory unit='KiB'>33554432</memory>
+ <currentMemory unit='KiB'>33554432</currentMemory>
+ <vcpu placement='static'>12</vcpu>
+ <os>
+ <type arch='x86_64'>hvm</type>
+ </os>
+ <clock offset='utc'/>
+ <on_poweroff>destroy</on_poweroff>
+ <on_reboot>restart</on_reboot>
+ <on_crash>destroy</on_crash>
+ <devices>
+ <disk type='file' device='disk'>
+ <source file='[datastore] directory/wild1.vmdk'/>
+ <target dev='sda' bus='scsi'/>
+ <address type='drive' controller='0' bus='0' target='0' unit='0'/>
+ </disk>
+ <disk type='file' device='disk'>
+ <source file='[datastore] directory/wild2.vmdk'/>
+ <target dev='sdb' bus='scsi'/>
+ <address type='drive' controller='0' bus='0' target='0' unit='1'/>
+ </disk>
+ <controller type='scsi' index='0' model='vmpvscsi'/>
+ <interface type='null'>
+ <mac address='00:00:00:00:00:00' type='static'/>
+ <model type='vmxnet3'/>
+ </interface>
+ <video>
+ <model type='vmvga' vram='8192' primary='yes'/>
+ </video>
+ </devices>
+</domain>
diff --git a/tests/vmx2xmltest.c b/tests/vmx2xmltest.c
index 0fb5f13f72..3ca9541000 100644
--- a/tests/vmx2xmltest.c
+++ b/tests/vmx2xmltest.c
@@ -264,6 +264,7 @@ mymain(void)
DO_TEST("esx-in-the-wild-11");
DO_TEST("esx-in-the-wild-12");
DO_TEST("esx-in-the-wild-13");
+ DO_TEST("esx-in-the-wild-14");
DO_TEST("gsx-in-the-wild-1");
DO_TEST("gsx-in-the-wild-2");
--
2.46.0
2
1
From: Tom <libvirt-patch(a)douile.com>
This commit modifies the AppArmor profile for virt-aa-helper to
accommodate an observed behavior in certain Linux distributions,
such as ArchLinux.
In these distributions, /usr/sbin symlinks to /usr/bin. To ensure
that virt-aa-helper can execute apparmor_parser when it resides
in /usr/bin, the profile has been updated accordingly.
Signed-off-by: Tom <libvirt-patch(a)douile.com>
Reviewed-by: Andrea Bolognani <abologna(a)redhat.com>
---
https://gitlab.com/libvirt/libvirt/-/merge_requests/373
Pushed.
src/security/apparmor/usr.lib.libvirt.virt-aa-helper.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/security/apparmor/usr.lib.libvirt.virt-aa-helper.in b/src/security/apparmor/usr.lib.libvirt.virt-aa-helper.in
index 26ee20a17d..44645c6989 100644
--- a/src/security/apparmor/usr.lib.libvirt.virt-aa-helper.in
+++ b/src/security/apparmor/usr.lib.libvirt.virt-aa-helper.in
@@ -41,7 +41,7 @@ profile virt-aa-helper @libexecdir@/virt-aa-helper {
deny /dev/mapper/* r,
@libexecdir@/virt-aa-helper mr,
- /{usr/,}sbin/apparmor_parser Ux,
+ /{usr/,}{s,}bin/apparmor_parser Ux,
@sysconfdir@/apparmor.d/libvirt/* r,
@sysconfdir@/apparmor.d/libvirt/libvirt-[0-9a-f]*-[0-9a-f]*-[0-9a-f]*-[0-9a-f]*-[0-9a-f]* rw,
--
2.46.0
1
0
11 Sep '24
When libbsd is available, use the preferred readpassphrase() function isntead of getpass()
as the getpass() function has been marked as obsolete and shouldnt be used
Signed-off-by: Jakub Palacky <jpalacky(a)redhat.com>
---
meson.build | 6 ++++++
src/meson.build | 1 +
src/util/virutil.c | 6 ++++++
3 files changed, 13 insertions(+)
diff --git a/meson.build b/meson.build
index 297fbfae48..699a65c7e8 100644
--- a/meson.build
+++ b/meson.build
@@ -954,6 +954,11 @@ if blkid_dep.found()
conf.set('WITH_BLKID', 1)
endif
+bsd_dep = dependency('libbsd', required: false)
+if bsd_dep.found()
+ conf.set('WITH_LIBBSD', 1)
+endif
+
capng_dep = dependency('libcap-ng', required: get_option('capng'))
if capng_dep.found()
conf.set('WITH_CAPNG', 1)
@@ -2335,6 +2340,7 @@ libs_summary = {
'dlopen': dlopen_dep.found(),
'fuse': fuse_dep.found(),
'glusterfs': glusterfs_dep.found(),
+ 'libbsd': bsd_dep.found(),
'libiscsi': libiscsi_dep.found(),
'libkvm': libkvm_dep.found(),
'libnbd': libnbd_dep.found(),
diff --git a/src/meson.build b/src/meson.build
index 8cce42c7ad..30ae34646e 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -9,6 +9,7 @@ src_dep = declare_dependency(
dependencies: [
glib_dep,
libxml_dep,
+ bsd_dep,
],
include_directories: [
libvirt_inc,
diff --git a/src/util/virutil.c b/src/util/virutil.c
index 6c89a48e51..2e07372198 100644
--- a/src/util/virutil.c
+++ b/src/util/virutil.c
@@ -31,6 +31,10 @@
# include <conio.h>
#endif /* WIN32 */
+#ifdef WITH_LIBBSD
+# include <bsd/readpassphrase.h>
+#endif
+
#ifdef __linux__
# include <sys/sysmacros.h>
#endif
@@ -1773,6 +1777,8 @@ char *virGetPassword(void)
}
return g_string_free(pw, FALSE);
+#elif WITH_LIBBSD /* !WIN32 */
+ return readpassphrase("", g_new0(char, 1024), 1024, 0);
#else /* !WIN32 */
return g_strdup(getpass(""));
#endif /* ! WIN32 */
--
2.46.0
2
1
Hi,
Testing
I've updated a number of the docker containers to deal with breakages
in the crossdev environments as bullseye moves to LTS. I've dropped
the armel environment which doesn't really add much to the armhf cross
build we have that works. i686 and mipsel cross containers are bumped
up to bookworm. Currently mips64el is still broken.
gdbstub
This brings in Gustavo's patches to support MTE for system mode
expanding on the previously implemented user mode support.
plugins
I've dropped the TCG plugins from the series so as not to make the
pull request too large. I'll roll a new series once I've sent the PR
for this.
Changes
- moved mips64le TCG tests to use the debian-all-test-cross
- fixed some --disable-tcg failures for the MTE patches
The following still need review:
tests/docker: use debian-all-test-cross for mips64el tests
Alex Bennée (5):
tests/docker: remove debian-armel-cross
tests/docker: update debian i686 and mipsel images to bookworm
tests/docker: use debian-all-test-cross for mips64el tests
docs/devel: fix duplicate line
scripts/ci: update the gitlab-runner playbook
Gustavo Romero (5):
gdbstub: Use specific MMU index when probing MTE addresses
gdbstub: Add support for MTE in system mode
tests/guest-debug: Support passing arguments to the GDB test script
tests/tcg/aarch64: Improve linker script organization
tests/tcg/aarch64: Extend MTE gdbstub tests to system mode
docs/devel/testing/main.rst | 6 -
configure | 7 +-
target/arm/gdbstub64.c | 23 ++-
.gitlab-ci.d/container-cross.yml | 6 -
.gitlab-ci.d/crossbuilds.yml | 7 -
scripts/ci/setup/gitlab-runner.yml | 39 +++-
.../dockerfiles/debian-armel-cross.docker | 179 ------------------
.../dockerfiles/debian-i686-cross.docker | 10 +-
.../dockerfiles/debian-mipsel-cross.docker | 10 +-
tests/guest-debug/run-test.py | 6 +
tests/guest-debug/test_gdbstub.py | 5 +
tests/lcitool/refresh | 10 +-
tests/tcg/aarch64/Makefile.softmmu-target | 49 ++++-
tests/tcg/aarch64/Makefile.target | 3 +-
tests/tcg/aarch64/gdbstub/test-mte.py | 71 ++++---
tests/tcg/aarch64/system/boot.S | 11 ++
tests/tcg/aarch64/system/kernel.ld | 33 ++--
tests/tcg/aarch64/system/mte.S | 109 +++++++++++
18 files changed, 310 insertions(+), 274 deletions(-)
delete mode 100644 tests/docker/dockerfiles/debian-armel-cross.docker
create mode 100644 tests/tcg/aarch64/system/mte.S
--
2.39.2
2
11
From: Praveen K Paladugu <prapal(a)linux.microsoft.com>
Enable callbacks for define, undefine, started, booted, stopped,
destroyed events of ch guests.
Signed-off-by: Praveen K Paladugu <praveenkpaladugu(a)gmail.com>
---
src/ch/ch_conf.h | 4 +++
src/ch/ch_driver.c | 81 ++++++++++++++++++++++++++++++++++++++++++++--
2 files changed, 83 insertions(+), 2 deletions(-)
diff --git a/src/ch/ch_conf.h b/src/ch/ch_conf.h
index a77cad7a2a..97c6c24aa5 100644
--- a/src/ch/ch_conf.h
+++ b/src/ch/ch_conf.h
@@ -24,6 +24,7 @@
#include "virthread.h"
#include "ch_capabilities.h"
#include "virebtables.h"
+#include "object_event.h"
#define CH_DRIVER_NAME "CH"
#define CH_CMD "cloud-hypervisor"
@@ -75,6 +76,9 @@ struct _virCHDriver
* then lockless thereafter */
virCHDriverConfig *config;
+ /* Immutable pointer, self-locking APIs */
+ virObjectEventState *domainEventState;
+
/* pid file FD, ensures two copies of the driver can't use the same root */
int lockFD;
diff --git a/src/ch/ch_driver.c b/src/ch/ch_driver.c
index dab025edc1..407479b8ab 100644
--- a/src/ch/ch_driver.c
+++ b/src/ch/ch_driver.c
@@ -28,6 +28,7 @@
#include "ch_monitor.h"
#include "ch_process.h"
#include "domain_cgroup.h"
+#include "domain_event.h"
#include "datatypes.h"
#include "driver.h"
#include "viraccessapicheck.h"
@@ -263,6 +264,7 @@ chDomainCreateWithFlags(virDomainPtr dom, unsigned int flags)
virCHDriver *driver = dom->conn->privateData;
virDomainObj *vm;
virCHDomainObjPrivate *priv;
+ virObjectEvent *event;
g_autofree char *managed_save_path = NULL;
int ret = -1;
@@ -304,6 +306,14 @@ chDomainCreateWithFlags(virDomainPtr dom, unsigned int flags)
ret = virCHProcessStart(driver, vm, VIR_DOMAIN_RUNNING_BOOTED);
}
+ if (ret == 0) {
+ event = virDomainEventLifecycleNewFromObj(vm,
+ VIR_DOMAIN_EVENT_STARTED,
+ VIR_DOMAIN_EVENT_STARTED_BOOTED);
+ if (event)
+ virObjectEventStateQueue(driver->domainEventState, event);
+ }
+
endjob:
virDomainObjEndJob(vm);
@@ -323,8 +333,10 @@ chDomainDefineXMLFlags(virConnectPtr conn, const char *xml, unsigned int flags)
{
virCHDriver *driver = conn->privateData;
g_autoptr(virDomainDef) vmdef = NULL;
+ g_autoptr(virDomainDef) oldDef = NULL;
virDomainObj *vm = NULL;
virDomainPtr dom = NULL;
+ virObjectEvent *event = NULL;
g_autofree char *managed_save_path = NULL;
unsigned int parse_flags = VIR_DOMAIN_DEF_PARSE_INACTIVE;
@@ -345,7 +357,7 @@ chDomainDefineXMLFlags(virConnectPtr conn, const char *xml, unsigned int flags)
if (!(vm = virDomainObjListAdd(driver->domains, &vmdef,
driver->xmlopt,
- 0, NULL)))
+ 0, &oldDef)))
goto cleanup;
/* cleanup if there's any stale managedsave dir */
@@ -358,11 +370,17 @@ chDomainDefineXMLFlags(virConnectPtr conn, const char *xml, unsigned int flags)
}
vm->persistent = 1;
-
+ event = virDomainEventLifecycleNewFromObj(vm,
+ VIR_DOMAIN_EVENT_DEFINED,
+ !oldDef ?
+ VIR_DOMAIN_EVENT_DEFINED_ADDED :
+ VIR_DOMAIN_EVENT_DEFINED_UPDATED);
dom = virGetDomain(conn, vm->def->name, vm->def->uuid, vm->def->id);
cleanup:
virDomainObjEndAPI(&vm);
+ virObjectEventStateQueue(driver->domainEventState, event);
+
return dom;
}
@@ -378,6 +396,7 @@ chDomainUndefineFlags(virDomainPtr dom,
{
virCHDriver *driver = dom->conn->privateData;
virDomainObj *vm;
+ virObjectEvent *event = NULL;
int ret = -1;
virCheckFlags(0, -1);
@@ -393,6 +412,9 @@ chDomainUndefineFlags(virDomainPtr dom,
"%s", _("Cannot undefine transient domain"));
goto cleanup;
}
+ event = virDomainEventLifecycleNewFromObj(vm,
+ VIR_DOMAIN_EVENT_UNDEFINED,
+ VIR_DOMAIN_EVENT_UNDEFINED_REMOVED);
vm->persistent = 0;
if (!virDomainObjIsActive(vm)) {
@@ -403,6 +425,8 @@ chDomainUndefineFlags(virDomainPtr dom,
cleanup:
virDomainObjEndAPI(&vm);
+ virObjectEventStateQueue(driver->domainEventState, event);
+
return ret;
}
@@ -643,6 +667,7 @@ chDomainDestroyFlags(virDomainPtr dom, unsigned int flags)
{
virCHDriver *driver = dom->conn->privateData;
virDomainObj *vm;
+ virObjectEvent *event = NULL;
int ret = -1;
virCheckFlags(0, -1);
@@ -662,6 +687,9 @@ chDomainDestroyFlags(virDomainPtr dom, unsigned int flags)
if (virCHProcessStop(driver, vm, VIR_DOMAIN_SHUTOFF_DESTROYED) < 0)
goto endjob;
+ event = virDomainEventLifecycleNewFromObj(vm,
+ VIR_DOMAIN_EVENT_STOPPED,
+ VIR_DOMAIN_EVENT_STOPPED_DESTROYED);
virCHDomainRemoveInactive(driver, vm);
ret = 0;
@@ -670,6 +698,8 @@ chDomainDestroyFlags(virDomainPtr dom, unsigned int flags)
cleanup:
virDomainObjEndAPI(&vm);
+ virObjectEventStateQueue(driver->domainEventState, event);
+
return ret;
}
@@ -1365,6 +1395,7 @@ static int chStateCleanup(void)
virObjectUnref(ch_driver->xmlopt);
virObjectUnref(ch_driver->caps);
virObjectUnref(ch_driver->domains);
+ virObjectUnref(ch_driver->domainEventState);
virMutexDestroy(&ch_driver->lock);
g_clear_pointer(&ch_driver, g_free);
@@ -1414,6 +1445,9 @@ chStateInitialize(bool privileged,
if (!(ch_driver->config = virCHDriverConfigNew(privileged)))
goto cleanup;
+ if (!(ch_driver->domainEventState = virObjectEventStateNew()))
+ goto cleanup;
+
if ((rv = chExtractVersion(ch_driver)) < 0) {
if (rv == -2)
ret = VIR_DRV_STATE_INIT_SKIPPED;
@@ -2205,6 +2239,47 @@ chDomainSetNumaParameters(virDomainPtr dom,
return ret;
}
+static int
+chConnectDomainEventRegisterAny(virConnectPtr conn,
+ virDomainPtr dom,
+ int eventID,
+ virConnectDomainEventGenericCallback callback,
+ void *opaque,
+ virFreeCallback freecb)
+{
+ virCHDriver *driver = conn->privateData;
+
+ if (virConnectDomainEventRegisterAnyEnsureACL(conn) < 0)
+ return -1;
+
+ if (virDomainEventStateRegisterID(conn,
+ driver->domainEventState,
+ dom, eventID,
+ callback, opaque, freecb, &ret) < 0)
+ return -1;
+
+ return 0;
+}
+
+
+static int
+chConnectDomainEventDeregisterAny(virConnectPtr conn,
+ int callbackID)
+{
+ virCHDriver *driver = conn->privateData;
+
+ if (virConnectDomainEventDeregisterAnyEnsureACL(conn) < 0)
+ return -1;
+
+ if (virObjectEventStateDeregisterID(conn,
+ driver->domainEventState,
+ callbackID, true) < 0)
+ return -1;
+
+ return 0;
+}
+
+
/* Function Tables */
static virHypervisorDriver chHypervisorDriver = {
.name = "CH",
@@ -2262,6 +2337,8 @@ static virHypervisorDriver chHypervisorDriver = {
.domainHasManagedSaveImage = chDomainHasManagedSaveImage, /* 10.2.0 */
.domainRestore = chDomainRestore, /* 10.2.0 */
.domainRestoreFlags = chDomainRestoreFlags, /* 10.2.0 */
+ .connectDomainEventRegisterAny = chConnectDomainEventRegisterAny, /* 10.8.0 */
+ .connectDomainEventDeregisterAny = chConnectDomainEventDeregisterAny, /* 10.8.0 */
};
static virConnectDriver chConnectDriver = {
--
2.44.0
1
0
Hi,
Here is the current state of my maintainer trees.
Testing
I've updated a number of the docker containers to deal with breakages
in the crossdev environments as bullseye moves to LTS. I've dropped
the armel environment which doesn't really add much to the armhf cross
build we have that works. i686 and mipsel cross containers are bumped
up to bookworm. Currently mips64el is still broken.
gdbstub
This brings in Gustavo's patches to support MTE for system mode
expanding on the previously implemented user mode support.
plugins
I start by deprecating some options that don't make much sense for
instrumentation including 32 bit and TCI support. They will still work
but there are caveats and it doesn't seem worth wasting CI time
keeping track of them.
There are a couple of new plugins including some useful analysis ones.
The bbv plugin can generate files that can be fed into simpoint. The
cflow plugin I've posted before separately but takes advantage of the
new conditional and store helpers to try and be more efficient tracing
control flow.
Finally there is not one but two memory APIs. Pierrick's updates to
the main memory instrumentation now makes values available to the
plugins and should be used if you absolutely want to track what value
was read or stored. I've added a softmmu test case building on
memory.c and I'll merge the updated linux-user test case once its been
re-spun.
Rowan's API provides a more direct access through the existing debug
API but comes with the caveats that it should only used on memory you
don't expect to be changing. The example provided allows for the
contents of syscalls to be probed at the syscall point.
Finally there is a RFC for a gdbstub hook which I mostly wrote while I
was debugging weirdness in the memory stuff. I'll probably drop it
before the PR and let it cook a bit more on plugins/next.
The following still need review:
plugins: add ability to register a GDB triggered callback
util/timer: avoid deadlock when shutting down
tests/tcg: add a system test to check memory instrumentation
tests/tcg: only read/write 64 bit words on 64 bit systems
tests/tcg: clean up output of memory system test
contrib/plugins: control flow plugin
deprecation: don't enable TCG plugins by default with TCI
deprecation: don't enable TCG plugins by default on 32 bit hosts
scripts/ci: update the gitlab-runner playbook
docs/devel: fix duplicate line
tests/docker: update debian i686 and mipsel images to bookworm
tests/docker: remove debian-armel-cross
Akihiko Odaki (1):
contrib/plugins: Add a plugin to generate basic block vectors
Alex Bennée (12):
tests/docker: remove debian-armel-cross
tests/docker: update debian i686 and mipsel images to bookworm
docs/devel: fix duplicate line
scripts/ci: update the gitlab-runner playbook
deprecation: don't enable TCG plugins by default on 32 bit hosts
deprecation: don't enable TCG plugins by default with TCI
contrib/plugins: control flow plugin
tests/tcg: clean up output of memory system test
tests/tcg: only read/write 64 bit words on 64 bit systems
tests/tcg: add a system test to check memory instrumentation
util/timer: avoid deadlock when shutting down
plugins: add ability to register a GDB triggered callback
Gustavo Romero (5):
gdbstub: Use specific MMU index when probing MTE addresses
gdbstub: Add support for MTE in system mode
tests/guest-debug: Support passing arguments to the GDB test script
tests/tcg/aarch64: Improve linker script organization
tests/tcg/aarch64: Extend MTE gdbstub tests to system mode
Pierrick Bouvier (5):
plugins: save value during memory accesses
plugins: extend API to get latest memory value accessed
tests/tcg: add mechanism to run specific tests with plugins
tests/tcg: allow to check output of plugins
tests/plugin/mem: add option to print memory accesses
Rowan Hart (2):
plugins: add plugin API to read guest memory
plugins: add option to dump write argument to syscall plugin
Thomas Huth (1):
contrib/plugins/Makefile: Add a 'distclean' target
docs/about/deprecated.rst | 19 +
docs/about/emulation.rst | 44 +-
docs/devel/testing/main.rst | 6 -
configure | 37 +-
accel/tcg/atomic_template.h | 66 ++-
include/hw/core/cpu.h | 4 +
include/qemu/plugin-event.h | 1 +
include/qemu/plugin.h | 4 +
include/qemu/qemu-plugin.h | 80 +++-
plugins/plugin.h | 9 +
contrib/plugins/bbv.c | 158 +++++++
contrib/plugins/cflow.c | 413 ++++++++++++++++++
plugins/api.c | 71 +++
plugins/core.c | 43 ++
target/arm/gdbstub64.c | 21 +-
tcg/tcg-op-ldst.c | 66 ++-
tests/tcg/multiarch/system/memory.c | 123 ++++--
tests/tcg/plugins/mem.c | 254 ++++++++++-
tests/tcg/plugins/syscall.c | 117 +++++
util/qemu-timer.c | 14 +-
accel/tcg/atomic_common.c.inc | 13 +-
accel/tcg/ldst_common.c.inc | 38 +-
.gitlab-ci.d/buildtest.yml | 2 +
.gitlab-ci.d/container-cross.yml | 6 -
.gitlab-ci.d/crossbuilds.yml | 7 -
contrib/plugins/Makefile | 4 +-
plugins/qemu-plugins.symbols | 3 +
scripts/ci/setup/gitlab-runner.yml | 39 +-
.../dockerfiles/debian-armel-cross.docker | 179 --------
.../dockerfiles/debian-i686-cross.docker | 10 +-
.../dockerfiles/debian-mipsel-cross.docker | 10 +-
tests/guest-debug/run-test.py | 6 +
tests/guest-debug/test_gdbstub.py | 5 +
tests/lcitool/refresh | 10 +-
tests/tcg/Makefile.target | 12 +-
tests/tcg/aarch64/Makefile.softmmu-target | 49 ++-
tests/tcg/aarch64/Makefile.target | 3 +-
tests/tcg/aarch64/gdbstub/test-mte.py | 71 ++-
tests/tcg/aarch64/system/boot.S | 11 +
tests/tcg/aarch64/system/kernel.ld | 33 +-
tests/tcg/aarch64/system/mte.S | 109 +++++
tests/tcg/alpha/Makefile.softmmu-target | 2 +-
.../multiarch/system/Makefile.softmmu-target | 6 +
.../system/validate-memory-counts.py | 115 +++++
44 files changed, 1935 insertions(+), 358 deletions(-)
create mode 100644 contrib/plugins/bbv.c
create mode 100644 contrib/plugins/cflow.c
delete mode 100644 tests/docker/dockerfiles/debian-armel-cross.docker
create mode 100644 tests/tcg/aarch64/system/mte.S
create mode 100755 tests/tcg/multiarch/system/validate-memory-counts.py
--
2.39.2
2
35
Set of patches fixing the recently reported issues.
Peter Krempa (9):
virDomainDefParseBootInitOptions: Don't leak 'name' on failure
virBitmapShrink: Do not attempt to clear bits beyond end of buffer
virDomainFeaturesHyperVDefParse: Don't overwrite hypervisor vendor_id
virDomainFeaturesTCGDefParse: Don't leak 'tcg_features' when '<tcg>'
feature is repeated
virDomainFeaturesDefParse: Add comment warning about features being
specified repeatedly
internal: Add helper macro for checking multiply and add overflows
virconf: Properly fix numeric overflow when parsing numbers in conf
files
virDiskNameParse: Fix integer overflow in disk name parsing
qemuxmlconfttest: Add test case for invalid disk target
src/conf/domain_conf.c | 23 +++++++----
src/internal.h | 11 ++++++
src/util/virbitmap.c | 6 +++
src/util/virconf.c | 6 ++-
src/util/virutil.c | 10 ++++-
.../disk-target-overflow.x86_64-latest.err | 1 +
.../qemuxmlconfdata/disk-target-overflow.xml | 29 ++++++++++++++
tests/qemuxmlconftest.c | 1 +
tests/virbitmaptest.c | 39 ++++++++++++++++---
9 files changed, 109 insertions(+), 17 deletions(-)
create mode 100644 tests/qemuxmlconfdata/disk-target-overflow.x86_64-latest.err
create mode 100644 tests/qemuxmlconfdata/disk-target-overflow.xml
--
2.46.0
1
9
[PATCH v2 00/15] target/cris: Remove the deprecated CRIS target
by Philippe Mathieu-Daudé 09 Sep '24
by Philippe Mathieu-Daudé 09 Sep '24
09 Sep '24
Since v1:
- Split in smaller patches (pm215)o
The CRIS target is deprecated since v9.0 (commit
c7bbef40234 "docs: mark CRIS support as deprecated").
Remove:
- Buildsys / CI infra
- User emulation
- System emulation (axis-dev88 machine and ETRAX devices)
- Tests
Philippe Mathieu-Daudé (15):
tests/tcg: Remove CRIS libc test files
tests/tcg: Remove CRIS bare test files
buildsys: Remove CRIS cross container
linux-user: Remove support for CRIS target
hw/cris: Remove the axis-dev88 machine
hw/cris: Remove image loader helper
hw/intc: Remove TYPE_ETRAX_FS_PIC device
hw/char: Remove TYPE_ETRAX_FS_SERIAL device
hw/net: Remove TYPE_ETRAX_FS_ETH device
hw/dma: Remove ETRAX_FS DMA device
hw/timer: Remove TYPE_ETRAX_FS_TIMER device
system: Remove support for CRIS target
target/cris: Remove the deprecated CRIS target
disas: Remove CRIS disassembler
seccomp: Remove check for CRIS host
MAINTAINERS | 17 -
docs/about/deprecated.rst | 8 -
docs/about/emulation.rst | 4 -
docs/about/removed-features.rst | 7 +
docs/user/main.rst | 4 -
configure | 4 -
configs/devices/cris-softmmu/default.mak | 4 -
configs/targets/cris-linux-user.mak | 1 -
configs/targets/cris-softmmu.mak | 1 -
meson.build | 1 -
qapi/machine.json | 2 +-
hw/cris/boot.h | 16 -
include/disas/dis-asm.h | 6 -
include/exec/poison.h | 2 -
include/hw/cris/etraxfs.h | 54 -
include/hw/cris/etraxfs_dma.h | 36 -
include/sysemu/arch_init.h | 1 -
include/user/abitypes.h | 7 -
linux-user/cris/sockbits.h | 1 -
linux-user/cris/syscall_nr.h | 367 --
linux-user/cris/target_cpu.h | 45 -
linux-user/cris/target_elf.h | 14 -
linux-user/cris/target_errno_defs.h | 7 -
linux-user/cris/target_fcntl.h | 11 -
linux-user/cris/target_mman.h | 13 -
linux-user/cris/target_prctl.h | 1 -
linux-user/cris/target_proc.h | 1 -
linux-user/cris/target_resource.h | 1 -
linux-user/cris/target_signal.h | 9 -
linux-user/cris/target_structs.h | 1 -
linux-user/cris/target_syscall.h | 46 -
linux-user/cris/termbits.h | 225 --
linux-user/syscall_defs.h | 7 +-
target/cris/cpu-param.h | 16 -
target/cris/cpu-qom.h | 32 -
target/cris/cpu.h | 286 --
target/cris/crisv10-decode.h | 112 -
target/cris/crisv32-decode.h | 133 -
target/cris/helper.h | 23 -
target/cris/mmu.h | 22 -
target/cris/opcode-cris.h | 355 --
tests/tcg/cris/libc/crisutils.h | 76 -
tests/tcg/cris/libc/sys.h | 18 -
disas/cris.c | 2863 ---------------
hw/char/etraxfs_ser.c | 267 --
hw/cris/axis_dev88.c | 351 --
hw/cris/boot.c | 102 -
hw/dma/etraxfs_dma.c | 781 ----
hw/intc/etraxfs_pic.c | 172 -
hw/net/etraxfs_eth.c | 688 ----
hw/timer/etraxfs_timer.c | 407 ---
linux-user/cris/cpu_loop.c | 95 -
linux-user/cris/signal.c | 194 -
linux-user/elfload.c | 15 -
linux-user/syscall.c | 10 +-
system/qemu-seccomp.c | 2 +-
target/cris/cpu.c | 323 --
target/cris/gdbstub.c | 127 -
target/cris/helper.c | 287 --
target/cris/machine.c | 93 -
target/cris/mmu.c | 356 --
target/cris/op_helper.c | 580 ---
target/cris/translate.c | 3252 -----------------
tests/qtest/machine-none-test.c | 1 -
tests/tcg/cris/bare/sys.c | 63 -
tests/tcg/cris/libc/check_abs.c | 40 -
tests/tcg/cris/libc/check_addc.c | 58 -
tests/tcg/cris/libc/check_addcm.c | 85 -
tests/tcg/cris/libc/check_addo.c | 125 -
tests/tcg/cris/libc/check_addoq.c | 44 -
tests/tcg/cris/libc/check_bound.c | 142 -
tests/tcg/cris/libc/check_ftag.c | 37 -
.../cris/libc/check_gcctorture_pr28634-1.c | 15 -
.../tcg/cris/libc/check_gcctorture_pr28634.c | 15 -
.../tcg/cris/libc/check_glibc_kernelversion.c | 116 -
tests/tcg/cris/libc/check_hello.c | 7 -
tests/tcg/cris/libc/check_int64.c | 47 -
tests/tcg/cris/libc/check_lz.c | 49 -
tests/tcg/cris/libc/check_mapbrk.c | 39 -
tests/tcg/cris/libc/check_mmap1.c | 48 -
tests/tcg/cris/libc/check_mmap2.c | 48 -
tests/tcg/cris/libc/check_mmap3.c | 33 -
tests/tcg/cris/libc/check_moveq.c | 51 -
tests/tcg/cris/libc/check_openpf1.c | 38 -
tests/tcg/cris/libc/check_openpf2.c | 16 -
tests/tcg/cris/libc/check_openpf3.c | 49 -
tests/tcg/cris/libc/check_openpf5.c | 56 -
tests/tcg/cris/libc/check_settls1.c | 45 -
tests/tcg/cris/libc/check_sigalrm.c | 26 -
tests/tcg/cris/libc/check_stat1.c | 16 -
tests/tcg/cris/libc/check_stat2.c | 20 -
tests/tcg/cris/libc/check_stat3.c | 25 -
tests/tcg/cris/libc/check_stat4.c | 27 -
tests/tcg/cris/libc/check_swap.c | 76 -
tests/tcg/cris/libc/check_time2.c | 18 -
fpu/softfloat-specialize.c.inc | 4 +-
target/cris/translate_v10.c.inc | 1262 -------
.gitlab-ci.d/buildtest.yml | 2 +-
.gitlab-ci.d/container-cross.yml | 5 -
.gitlab-ci.d/crossbuild-template.yml | 4 +-
disas/meson.build | 1 -
hw/Kconfig | 1 -
hw/char/meson.build | 1 -
hw/cris/Kconfig | 11 -
hw/cris/meson.build | 5 -
hw/dma/meson.build | 1 -
hw/intc/meson.build | 1 -
hw/meson.build | 1 -
hw/net/meson.build | 1 -
hw/net/trace-events | 5 -
hw/timer/meson.build | 1 -
scripts/coverity-scan/COMPONENTS.md | 3 -
scripts/probe-gdb-support.py | 1 -
target/Kconfig | 1 -
target/cris/Kconfig | 2 -
target/cris/meson.build | 17 -
target/meson.build | 1 -
tests/data/qobject/qdict.txt | 6 -
tests/docker/Makefile.include | 1 -
.../dockerfiles/fedora-cris-cross.docker | 14 -
tests/tcg/cris/.gdbinit | 11 -
tests/tcg/cris/Makefile.target | 62 -
tests/tcg/cris/README | 1 -
tests/tcg/cris/bare/check_addcv17.s | 65 -
tests/tcg/cris/bare/check_addi.s | 57 -
tests/tcg/cris/bare/check_addiv32.s | 62 -
tests/tcg/cris/bare/check_addm.s | 96 -
tests/tcg/cris/bare/check_addq.s | 47 -
tests/tcg/cris/bare/check_addr.s | 96 -
tests/tcg/cris/bare/check_addxc.s | 91 -
tests/tcg/cris/bare/check_addxm.s | 106 -
tests/tcg/cris/bare/check_addxr.s | 96 -
tests/tcg/cris/bare/check_andc.s | 80 -
tests/tcg/cris/bare/check_andm.s | 90 -
tests/tcg/cris/bare/check_andq.s | 46 -
tests/tcg/cris/bare/check_andr.s | 95 -
tests/tcg/cris/bare/check_asr.s | 230 --
tests/tcg/cris/bare/check_ba.s | 93 -
tests/tcg/cris/bare/check_bas.s | 102 -
tests/tcg/cris/bare/check_bcc.s | 197 -
tests/tcg/cris/bare/check_boundc.s | 101 -
tests/tcg/cris/bare/check_boundr.s | 125 -
tests/tcg/cris/bare/check_btst.s | 96 -
tests/tcg/cris/bare/check_clearfv32.s | 19 -
tests/tcg/cris/bare/check_clrjmp1.s | 36 -
tests/tcg/cris/bare/check_cmp-2.s | 15 -
tests/tcg/cris/bare/check_cmpc.s | 86 -
tests/tcg/cris/bare/check_cmpm.s | 96 -
tests/tcg/cris/bare/check_cmpq.s | 75 -
tests/tcg/cris/bare/check_cmpr.s | 102 -
tests/tcg/cris/bare/check_cmpxc.s | 92 -
tests/tcg/cris/bare/check_cmpxm.s | 106 -
tests/tcg/cris/bare/check_dstep.s | 42 -
tests/tcg/cris/bare/check_jsr.s | 85 -
tests/tcg/cris/bare/check_lapc.s | 78 -
tests/tcg/cris/bare/check_lsl.s | 217 --
tests/tcg/cris/bare/check_lsr.s | 218 --
tests/tcg/cris/bare/check_mcp.s | 49 -
tests/tcg/cris/bare/check_movdelsr1.s | 33 -
tests/tcg/cris/bare/check_movecr.s | 37 -
tests/tcg/cris/bare/check_movei.s | 50 -
tests/tcg/cris/bare/check_movemr.s | 78 -
tests/tcg/cris/bare/check_movemrv32.s | 96 -
tests/tcg/cris/bare/check_mover.s | 28 -
tests/tcg/cris/bare/check_moverm.s | 45 -
tests/tcg/cris/bare/check_movmp.s | 131 -
tests/tcg/cris/bare/check_movpmv32.s | 35 -
tests/tcg/cris/bare/check_movpr.s | 28 -
tests/tcg/cris/bare/check_movprv32.s | 21 -
tests/tcg/cris/bare/check_movscr.s | 29 -
tests/tcg/cris/bare/check_movsm.s | 44 -
tests/tcg/cris/bare/check_movsr.s | 46 -
tests/tcg/cris/bare/check_movucr.s | 33 -
tests/tcg/cris/bare/check_movum.s | 40 -
tests/tcg/cris/bare/check_movur.s | 45 -
tests/tcg/cris/bare/check_mulv32.s | 51 -
tests/tcg/cris/bare/check_mulx.s | 257 --
tests/tcg/cris/bare/check_neg.s | 104 -
tests/tcg/cris/bare/check_not.s | 31 -
tests/tcg/cris/bare/check_orc.s | 71 -
tests/tcg/cris/bare/check_orm.s | 75 -
tests/tcg/cris/bare/check_orq.s | 41 -
tests/tcg/cris/bare/check_orr.s | 84 -
tests/tcg/cris/bare/check_ret.s | 25 -
tests/tcg/cris/bare/check_scc.s | 95 -
tests/tcg/cris/bare/check_subc.s | 87 -
tests/tcg/cris/bare/check_subm.s | 96 -
tests/tcg/cris/bare/check_subq.s | 52 -
tests/tcg/cris/bare/check_subr.s | 102 -
tests/tcg/cris/bare/check_xarith.s | 72 -
tests/tcg/cris/bare/crt.s | 13 -
tests/tcg/cris/bare/testutils.inc | 117 -
192 files changed, 18 insertions(+), 21324 deletions(-)
delete mode 100644 configs/devices/cris-softmmu/default.mak
delete mode 100644 configs/targets/cris-linux-user.mak
delete mode 100644 configs/targets/cris-softmmu.mak
delete mode 100644 hw/cris/boot.h
delete mode 100644 include/hw/cris/etraxfs.h
delete mode 100644 include/hw/cris/etraxfs_dma.h
delete mode 100644 linux-user/cris/sockbits.h
delete mode 100644 linux-user/cris/syscall_nr.h
delete mode 100644 linux-user/cris/target_cpu.h
delete mode 100644 linux-user/cris/target_elf.h
delete mode 100644 linux-user/cris/target_errno_defs.h
delete mode 100644 linux-user/cris/target_fcntl.h
delete mode 100644 linux-user/cris/target_mman.h
delete mode 100644 linux-user/cris/target_prctl.h
delete mode 100644 linux-user/cris/target_proc.h
delete mode 100644 linux-user/cris/target_resource.h
delete mode 100644 linux-user/cris/target_signal.h
delete mode 100644 linux-user/cris/target_structs.h
delete mode 100644 linux-user/cris/target_syscall.h
delete mode 100644 linux-user/cris/termbits.h
delete mode 100644 target/cris/cpu-param.h
delete mode 100644 target/cris/cpu-qom.h
delete mode 100644 target/cris/cpu.h
delete mode 100644 target/cris/crisv10-decode.h
delete mode 100644 target/cris/crisv32-decode.h
delete mode 100644 target/cris/helper.h
delete mode 100644 target/cris/mmu.h
delete mode 100644 target/cris/opcode-cris.h
delete mode 100644 tests/tcg/cris/libc/crisutils.h
delete mode 100644 tests/tcg/cris/libc/sys.h
delete mode 100644 disas/cris.c
delete mode 100644 hw/char/etraxfs_ser.c
delete mode 100644 hw/cris/axis_dev88.c
delete mode 100644 hw/cris/boot.c
delete mode 100644 hw/dma/etraxfs_dma.c
delete mode 100644 hw/intc/etraxfs_pic.c
delete mode 100644 hw/net/etraxfs_eth.c
delete mode 100644 hw/timer/etraxfs_timer.c
delete mode 100644 linux-user/cris/cpu_loop.c
delete mode 100644 linux-user/cris/signal.c
delete mode 100644 target/cris/cpu.c
delete mode 100644 target/cris/gdbstub.c
delete mode 100644 target/cris/helper.c
delete mode 100644 target/cris/machine.c
delete mode 100644 target/cris/mmu.c
delete mode 100644 target/cris/op_helper.c
delete mode 100644 target/cris/translate.c
delete mode 100644 tests/tcg/cris/bare/sys.c
delete mode 100644 tests/tcg/cris/libc/check_abs.c
delete mode 100644 tests/tcg/cris/libc/check_addc.c
delete mode 100644 tests/tcg/cris/libc/check_addcm.c
delete mode 100644 tests/tcg/cris/libc/check_addo.c
delete mode 100644 tests/tcg/cris/libc/check_addoq.c
delete mode 100644 tests/tcg/cris/libc/check_bound.c
delete mode 100644 tests/tcg/cris/libc/check_ftag.c
delete mode 100644 tests/tcg/cris/libc/check_gcctorture_pr28634-1.c
delete mode 100644 tests/tcg/cris/libc/check_gcctorture_pr28634.c
delete mode 100644 tests/tcg/cris/libc/check_glibc_kernelversion.c
delete mode 100644 tests/tcg/cris/libc/check_hello.c
delete mode 100644 tests/tcg/cris/libc/check_int64.c
delete mode 100644 tests/tcg/cris/libc/check_lz.c
delete mode 100644 tests/tcg/cris/libc/check_mapbrk.c
delete mode 100644 tests/tcg/cris/libc/check_mmap1.c
delete mode 100644 tests/tcg/cris/libc/check_mmap2.c
delete mode 100644 tests/tcg/cris/libc/check_mmap3.c
delete mode 100644 tests/tcg/cris/libc/check_moveq.c
delete mode 100644 tests/tcg/cris/libc/check_openpf1.c
delete mode 100644 tests/tcg/cris/libc/check_openpf2.c
delete mode 100644 tests/tcg/cris/libc/check_openpf3.c
delete mode 100644 tests/tcg/cris/libc/check_openpf5.c
delete mode 100644 tests/tcg/cris/libc/check_settls1.c
delete mode 100644 tests/tcg/cris/libc/check_sigalrm.c
delete mode 100644 tests/tcg/cris/libc/check_stat1.c
delete mode 100644 tests/tcg/cris/libc/check_stat2.c
delete mode 100644 tests/tcg/cris/libc/check_stat3.c
delete mode 100644 tests/tcg/cris/libc/check_stat4.c
delete mode 100644 tests/tcg/cris/libc/check_swap.c
delete mode 100644 tests/tcg/cris/libc/check_time2.c
delete mode 100644 target/cris/translate_v10.c.inc
delete mode 100644 hw/cris/Kconfig
delete mode 100644 hw/cris/meson.build
delete mode 100644 target/cris/Kconfig
delete mode 100644 target/cris/meson.build
delete mode 100644 tests/docker/dockerfiles/fedora-cris-cross.docker
delete mode 100644 tests/tcg/cris/.gdbinit
delete mode 100644 tests/tcg/cris/Makefile.target
delete mode 100644 tests/tcg/cris/README
delete mode 100644 tests/tcg/cris/bare/check_addcv17.s
delete mode 100644 tests/tcg/cris/bare/check_addi.s
delete mode 100644 tests/tcg/cris/bare/check_addiv32.s
delete mode 100644 tests/tcg/cris/bare/check_addm.s
delete mode 100644 tests/tcg/cris/bare/check_addq.s
delete mode 100644 tests/tcg/cris/bare/check_addr.s
delete mode 100644 tests/tcg/cris/bare/check_addxc.s
delete mode 100644 tests/tcg/cris/bare/check_addxm.s
delete mode 100644 tests/tcg/cris/bare/check_addxr.s
delete mode 100644 tests/tcg/cris/bare/check_andc.s
delete mode 100644 tests/tcg/cris/bare/check_andm.s
delete mode 100644 tests/tcg/cris/bare/check_andq.s
delete mode 100644 tests/tcg/cris/bare/check_andr.s
delete mode 100644 tests/tcg/cris/bare/check_asr.s
delete mode 100644 tests/tcg/cris/bare/check_ba.s
delete mode 100644 tests/tcg/cris/bare/check_bas.s
delete mode 100644 tests/tcg/cris/bare/check_bcc.s
delete mode 100644 tests/tcg/cris/bare/check_boundc.s
delete mode 100644 tests/tcg/cris/bare/check_boundr.s
delete mode 100644 tests/tcg/cris/bare/check_btst.s
delete mode 100644 tests/tcg/cris/bare/check_clearfv32.s
delete mode 100644 tests/tcg/cris/bare/check_clrjmp1.s
delete mode 100644 tests/tcg/cris/bare/check_cmp-2.s
delete mode 100644 tests/tcg/cris/bare/check_cmpc.s
delete mode 100644 tests/tcg/cris/bare/check_cmpm.s
delete mode 100644 tests/tcg/cris/bare/check_cmpq.s
delete mode 100644 tests/tcg/cris/bare/check_cmpr.s
delete mode 100644 tests/tcg/cris/bare/check_cmpxc.s
delete mode 100644 tests/tcg/cris/bare/check_cmpxm.s
delete mode 100644 tests/tcg/cris/bare/check_dstep.s
delete mode 100644 tests/tcg/cris/bare/check_jsr.s
delete mode 100644 tests/tcg/cris/bare/check_lapc.s
delete mode 100644 tests/tcg/cris/bare/check_lsl.s
delete mode 100644 tests/tcg/cris/bare/check_lsr.s
delete mode 100644 tests/tcg/cris/bare/check_mcp.s
delete mode 100644 tests/tcg/cris/bare/check_movdelsr1.s
delete mode 100644 tests/tcg/cris/bare/check_movecr.s
delete mode 100644 tests/tcg/cris/bare/check_movei.s
delete mode 100644 tests/tcg/cris/bare/check_movemr.s
delete mode 100644 tests/tcg/cris/bare/check_movemrv32.s
delete mode 100644 tests/tcg/cris/bare/check_mover.s
delete mode 100644 tests/tcg/cris/bare/check_moverm.s
delete mode 100644 tests/tcg/cris/bare/check_movmp.s
delete mode 100644 tests/tcg/cris/bare/check_movpmv32.s
delete mode 100644 tests/tcg/cris/bare/check_movpr.s
delete mode 100644 tests/tcg/cris/bare/check_movprv32.s
delete mode 100644 tests/tcg/cris/bare/check_movscr.s
delete mode 100644 tests/tcg/cris/bare/check_movsm.s
delete mode 100644 tests/tcg/cris/bare/check_movsr.s
delete mode 100644 tests/tcg/cris/bare/check_movucr.s
delete mode 100644 tests/tcg/cris/bare/check_movum.s
delete mode 100644 tests/tcg/cris/bare/check_movur.s
delete mode 100644 tests/tcg/cris/bare/check_mulv32.s
delete mode 100644 tests/tcg/cris/bare/check_mulx.s
delete mode 100644 tests/tcg/cris/bare/check_neg.s
delete mode 100644 tests/tcg/cris/bare/check_not.s
delete mode 100644 tests/tcg/cris/bare/check_orc.s
delete mode 100644 tests/tcg/cris/bare/check_orm.s
delete mode 100644 tests/tcg/cris/bare/check_orq.s
delete mode 100644 tests/tcg/cris/bare/check_orr.s
delete mode 100644 tests/tcg/cris/bare/check_ret.s
delete mode 100644 tests/tcg/cris/bare/check_scc.s
delete mode 100644 tests/tcg/cris/bare/check_subc.s
delete mode 100644 tests/tcg/cris/bare/check_subm.s
delete mode 100644 tests/tcg/cris/bare/check_subq.s
delete mode 100644 tests/tcg/cris/bare/check_subr.s
delete mode 100644 tests/tcg/cris/bare/check_xarith.s
delete mode 100644 tests/tcg/cris/bare/crt.s
delete mode 100644 tests/tcg/cris/bare/testutils.inc
--
2.45.2
5
36
In one of recent commits new CPU model was introduced. But
corresponding change in meson.build is missing which results in
the XML file not being installed.
Fixes: 3afbb1644c4f9d5237459bd544d0f511ff99eb80
Signed-off-by: Michal Privoznik <mprivozn(a)redhat.com>
---
Pushed under trivial rule.
src/cpu_map/meson.build | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/cpu_map/meson.build b/src/cpu_map/meson.build
index 89b1317558..20f5dbc47e 100644
--- a/src/cpu_map/meson.build
+++ b/src/cpu_map/meson.build
@@ -75,6 +75,7 @@ cpumap_data = [
'x86_SandyBridge-IBRS.xml',
'x86_SandyBridge.xml',
'x86_SapphireRapids.xml',
+ 'x86_SierraForest.xml',
'x86_Skylake-Client-IBRS.xml',
'x86_Skylake-Client-noTSX-IBRS.xml',
'x86_Skylake-Client.xml',
--
2.44.2
1
0
Dear business owner of libvirt.org
<https://webtechmine-dot-yamm-track.appspot.com/2vNTx67VR9V0mSfNcQKdslf4GP9-…>
,
Hope you are doing well.
I was looking for Keywords and found your website on page 3-4 of Google. If
you were on page #1, you'd get so many prospects/new clients every day.
Most of your targeted keywords on page #3-5. You're so close! Do you mind
if I sent a *SEO Packages* and *Price list* of your site to see why you're
not on page #1?
I can send the *past work details* in a couple hours. If you have any
questions, feel free to ask me. I have more than 10 years of experience in
digital marketing.
Can I send it over?
Look forward to your reply.
*Kind Regards*
*Delaney Mckay*
*Business Development Manager*
-------------------------------------------------------------------------
*Note:* - Our next conversation will be on my corporate Email ID. If you
are interested, then reply to us *"Send your Proposal and Price list"*
Click *here*
<https://webtechmine-dot-yamm-track.appspot.com/2xfPA0xuTIdeZNZE4Mzjp62WCmhq…>
to
unsubscribe.
[image: beacon]
1
0
Peter Krempa (2):
conf: Don't overwrite KVM feature config struct if the feature is
present twicea
virconf: Fix numeric overflow when parsing numbers in conf files
src/conf/domain_conf.c | 15 ++++++++-------
src/util/virconf.c | 6 ++++++
2 files changed, 14 insertions(+), 7 deletions(-)
--
2.46.0
2
4
[PATCH] qemuBackupDiskDataCleanupOne: Don't skip rest of cleanup if we can't enter monitor
by Peter Krempa 06 Sep '24
by Peter Krempa 06 Sep '24
06 Sep '24
Recent fix to use the proper 'async' monitor function would cause
libvirt to leak some of the objects it's supposed to clean up in other
places besides qemu.
Don't skip the whole function on failure to enter the job but just the
monitor section.
Fixes: 9b22c25548aa658acdeac2269ddae32584df32d8
Signed-off-by: Peter Krempa <pkrempa(a)redhat.com>
---
src/qemu/qemu_backup.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/qemu/qemu_backup.c b/src/qemu/qemu_backup.c
index 5eb2cbe306..f64639d501 100644
--- a/src/qemu/qemu_backup.c
+++ b/src/qemu/qemu_backup.c
@@ -125,10 +125,10 @@ qemuBackupDiskDataCleanupOne(virDomainObj *vm,
if (!dd->started) {
if (dd->added) {
- if (qemuDomainObjEnterMonitorAsync(vm, VIR_ASYNC_JOB_BACKUP) < 0)
- return;
- qemuBlockStorageSourceAttachRollback(priv->mon, dd->crdata->srcdata[0]);
- qemuDomainObjExitMonitor(vm);
+ if (qemuDomainObjEnterMonitorAsync(vm, VIR_ASYNC_JOB_BACKUP) == 0) {
+ qemuBlockStorageSourceAttachRollback(priv->mon, dd->crdata->srcdata[0]);
+ qemuDomainObjExitMonitor(vm);
+ }
}
if (dd->created) {
--
2.46.0
2
1
06 Sep '24
Remove the deprecated SH4 SHIX machine, along
with the TC58128 NAND EEPROM.
Philippe Mathieu-Daudé (3):
hw/sh4: Remove the deprecated SHIX machine
hw/block: Remove TC58128 NAND EEPROM
hw/sh4: Remove sh7750_register_io_device() helper
MAINTAINERS | 11 --
docs/about/deprecated.rst | 6 -
docs/about/removed-features.rst | 5 +
configs/devices/sh4-softmmu/default.mak | 1 -
include/hw/sh4/sh.h | 19 ---
hw/block/tc58128.c | 211 ------------------------
hw/sh4/sh7750.c | 57 +------
hw/sh4/shix.c | 86 ----------
hw/block/Kconfig | 3 -
hw/block/meson.build | 1 -
hw/sh4/Kconfig | 7 -
hw/sh4/meson.build | 1 -
12 files changed, 7 insertions(+), 401 deletions(-)
delete mode 100644 hw/block/tc58128.c
delete mode 100644 hw/sh4/shix.c
--
2.45.2
3
6
Wow. Such patch. Much series.
Ján Tomko (15):
util: json: introduce virJSONStringPrettifyBlanks
tests: switch to compact empty JSON object formatting
build: introduce WITH_JSON
ci: install json-c too
meson: add option for building with json-c
meson: switch checks to depend on json-c as well as yajl
build: do not depend on yajl
build: link with json_c
util: json: write a json-c implementation
nss: convert findLeases to use json-c
nss: convert findMACs to use json-c
meson: do not link anything with yajl anymore
meson: options: drop yajl
meson: drop yajl detection
ci: drop yajl completely
ci/buildenv/almalinux-9.sh | 4 +-
ci/buildenv/alpine-319.sh | 4 +-
ci/buildenv/alpine-edge.sh | 4 +-
ci/buildenv/centos-stream-9.sh | 4 +-
ci/buildenv/debian-11-cross-aarch64.sh | 2 +-
ci/buildenv/debian-11-cross-armv6l.sh | 2 +-
ci/buildenv/debian-11-cross-armv7l.sh | 2 +-
ci/buildenv/debian-11-cross-i686.sh | 2 +-
ci/buildenv/debian-11-cross-mips64el.sh | 2 +-
ci/buildenv/debian-11-cross-mipsel.sh | 2 +-
ci/buildenv/debian-11-cross-ppc64le.sh | 2 +-
ci/buildenv/debian-11-cross-s390x.sh | 2 +-
ci/buildenv/debian-11.sh | 2 +-
ci/buildenv/debian-12-cross-aarch64.sh | 2 +-
ci/buildenv/debian-12-cross-armv6l.sh | 2 +-
ci/buildenv/debian-12-cross-armv7l.sh | 2 +-
ci/buildenv/debian-12-cross-i686.sh | 2 +-
ci/buildenv/debian-12-cross-mips64el.sh | 2 +-
ci/buildenv/debian-12-cross-mipsel.sh | 2 +-
ci/buildenv/debian-12-cross-ppc64le.sh | 2 +-
ci/buildenv/debian-12-cross-s390x.sh | 2 +-
ci/buildenv/debian-12.sh | 2 +-
ci/buildenv/debian-sid-cross-aarch64.sh | 2 +-
ci/buildenv/debian-sid-cross-armv6l.sh | 2 +-
ci/buildenv/debian-sid-cross-armv7l.sh | 2 +-
ci/buildenv/debian-sid-cross-i686.sh | 2 +-
ci/buildenv/debian-sid-cross-mips64el.sh | 2 +-
ci/buildenv/debian-sid-cross-ppc64le.sh | 2 +-
ci/buildenv/debian-sid-cross-s390x.sh | 2 +-
ci/buildenv/debian-sid.sh | 2 +-
ci/buildenv/fedora-39.sh | 4 +-
ci/buildenv/fedora-40.sh | 4 +-
ci/buildenv/fedora-rawhide.sh | 4 +-
ci/buildenv/opensuse-leap-15.sh | 2 +-
ci/buildenv/opensuse-tumbleweed.sh | 2 +-
ci/buildenv/ubuntu-2204.sh | 2 +-
ci/buildenv/ubuntu-2404.sh | 2 +-
ci/cirrus/freebsd-13.vars | 2 +-
ci/cirrus/freebsd-14.vars | 2 +-
ci/cirrus/macos-13.vars | 2 +-
ci/cirrus/macos-14.vars | 2 +-
ci/containers/almalinux-9.Dockerfile | 4 +-
ci/containers/alpine-319.Dockerfile | 4 +-
ci/containers/alpine-edge.Dockerfile | 4 +-
ci/containers/centos-stream-9.Dockerfile | 4 +-
.../debian-11-cross-aarch64.Dockerfile | 2 +-
.../debian-11-cross-armv6l.Dockerfile | 2 +-
.../debian-11-cross-armv7l.Dockerfile | 2 +-
ci/containers/debian-11-cross-i686.Dockerfile | 2 +-
.../debian-11-cross-mips64el.Dockerfile | 2 +-
.../debian-11-cross-mipsel.Dockerfile | 2 +-
.../debian-11-cross-ppc64le.Dockerfile | 2 +-
.../debian-11-cross-s390x.Dockerfile | 2 +-
ci/containers/debian-11.Dockerfile | 2 +-
.../debian-12-cross-aarch64.Dockerfile | 2 +-
.../debian-12-cross-armv6l.Dockerfile | 2 +-
.../debian-12-cross-armv7l.Dockerfile | 2 +-
ci/containers/debian-12-cross-i686.Dockerfile | 2 +-
.../debian-12-cross-mips64el.Dockerfile | 2 +-
.../debian-12-cross-mipsel.Dockerfile | 2 +-
.../debian-12-cross-ppc64le.Dockerfile | 2 +-
.../debian-12-cross-s390x.Dockerfile | 2 +-
ci/containers/debian-12.Dockerfile | 2 +-
.../debian-sid-cross-aarch64.Dockerfile | 2 +-
.../debian-sid-cross-armv6l.Dockerfile | 2 +-
.../debian-sid-cross-armv7l.Dockerfile | 2 +-
.../debian-sid-cross-i686.Dockerfile | 2 +-
.../debian-sid-cross-mips64el.Dockerfile | 2 +-
.../debian-sid-cross-ppc64le.Dockerfile | 2 +-
.../debian-sid-cross-s390x.Dockerfile | 2 +-
ci/containers/debian-sid.Dockerfile | 2 +-
ci/containers/fedora-39.Dockerfile | 4 +-
ci/containers/fedora-40.Dockerfile | 4 +-
ci/containers/fedora-rawhide.Dockerfile | 4 +-
ci/containers/opensuse-leap-15.Dockerfile | 2 +-
ci/containers/opensuse-tumbleweed.Dockerfile | 2 +-
ci/containers/ubuntu-2204.Dockerfile | 2 +-
ci/containers/ubuntu-2404.Dockerfile | 2 +-
ci/lcitool/projects/libvirt.yml | 2 +-
libvirt.spec.in | 6 +-
meson.build | 62 +--
meson_options.txt | 8 +-
src/libvirt_private.syms | 1 +
src/meson.build | 2 +-
src/util/meson.build | 2 +-
src/util/virjson.c | 485 +++++-------------
src/util/virjson.h | 2 +
tests/meson.build | 8 +-
tests/qemublocktest.c | 5 +-
.../backupmerge/empty-out.json | 4 +-
tests/qemumigparamsdata/empty.json | 4 +-
tests/qemumigparamstest.c | 5 +-
tests/virmacmaptest.c | 5 +-
tests/virmacmaptestdata/empty.json | 4 +-
tests/virnetdaemontest.c | 2 +-
tests/virstoragetest.c | 4 +-
tools/nss/libvirt_nss_leases.c | 370 +++++--------
tools/nss/libvirt_nss_macs.c | 278 +++-------
tools/nss/meson.build | 4 +-
99 files changed, 475 insertions(+), 972 deletions(-)
--
2.46.0
1
2
[PATCH] qemu: backup: Use 'async' monitor in 'qemuBackupDiskDataCleanupOne'
by Peter Krempa 05 Sep '24
by Peter Krempa 05 Sep '24
05 Sep '24
'qemuBackupDiskDataCleanupOne()' is entering the monitor while we're in
the async backup job inside 'qemuBackupBegin()' which is semantically
wrong and per upstream report causes crashes if some monitoring commands
are run in parallel.
Use qemuDomainObjEnterMonitorAsync() instead.
Signed-off-by: Peter Krempa <pkrempa(a)redhat.com>
---
src/qemu/qemu_backup.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/qemu/qemu_backup.c b/src/qemu/qemu_backup.c
index 81391c29f7..5eb2cbe306 100644
--- a/src/qemu/qemu_backup.c
+++ b/src/qemu/qemu_backup.c
@@ -125,7 +125,8 @@ qemuBackupDiskDataCleanupOne(virDomainObj *vm,
if (!dd->started) {
if (dd->added) {
- qemuDomainObjEnterMonitor(vm);
+ if (qemuDomainObjEnterMonitorAsync(vm, VIR_ASYNC_JOB_BACKUP) < 0)
+ return;
qemuBlockStorageSourceAttachRollback(priv->mon, dd->crdata->srcdata[0]);
qemuDomainObjExitMonitor(vm);
}
--
2.46.0
2
1
Update the qemu-9.1 caps on x86_64 to final version after yesterday's
qemu release and add caps for riscv64 captured on an x86_64 host to
manifest that ACPI is already supported:
https://gitlab.com/libvirt/libvirt/-/issues/665
Peter Krempa (2):
tests: qemucapabilities: Update 'caps_9.1.0_x86_64' for final release
tests: qemucapabilitiesdata: Add caps for 'caps_9.1.0_riscv64'
(captured on x86_64)
.../qemu_9.1.0-tcg-virt.riscv64.xml | 196 +
.../qemu_9.1.0-virt.riscv64.xml | 185 +
.../caps_9.1.0_riscv64.replies | 31586 ++++++++++++++++
.../caps_9.1.0_riscv64.xml | 193 +
.../caps_9.1.0_x86_64.replies | 14 +-
.../caps_9.1.0_x86_64.xml | 12 +-
...ult-video-type-riscv64.riscv64-latest.args | 3 +-
...ault-video-type-riscv64.riscv64-latest.xml | 3 +
...efi-riscv64.riscv64-latest.abi-update.args | 3 +-
...-efi-riscv64.riscv64-latest.abi-update.xml | 3 +
.../riscv64-virt-acpi.riscv64-latest.args | 3 +-
.../riscv64-virt-acpi.riscv64-latest.xml | 3 +
...ault-models.riscv64-latest.abi-update.args | 3 +-
...fault-models.riscv64-latest.abi-update.xml | 3 +
...64-virt-default-models.riscv64-latest.args | 3 +-
...v64-virt-default-models.riscv64-latest.xml | 3 +
.../riscv64-virt-graphics.riscv64-latest.args | 3 +-
.../riscv64-virt-graphics.riscv64-latest.xml | 3 +
...v64-virt-headless-mmio.riscv64-latest.args | 3 +-
...cv64-virt-headless-mmio.riscv64-latest.xml | 3 +
.../riscv64-virt-headless.riscv64-latest.args | 3 +-
.../riscv64-virt-headless.riscv64-latest.xml | 3 +
...irt-minimal.riscv64-latest.abi-update.args | 3 +-
...virt-minimal.riscv64-latest.abi-update.xml | 3 +
.../riscv64-virt-minimal.riscv64-latest.args | 3 +-
.../riscv64-virt-minimal.riscv64-latest.xml | 3 +
26 files changed, 32223 insertions(+), 23 deletions(-)
create mode 100644 tests/domaincapsdata/qemu_9.1.0-tcg-virt.riscv64.xml
create mode 100644 tests/domaincapsdata/qemu_9.1.0-virt.riscv64.xml
create mode 100644 tests/qemucapabilitiesdata/caps_9.1.0_riscv64.replies
create mode 100644 tests/qemucapabilitiesdata/caps_9.1.0_riscv64.xml
--
2.46.0
2
5
[PATCH 0/3] virsh: Fix regression in script-friendly output of 'virsh list --uuid'
by Peter Krempa 05 Sep '24
by Peter Krempa 05 Sep '24
05 Sep '24
Peter Krempa (3):
virsh: cmdList: Revert to script-friendly output for 'virsh list
--uuid'
NEWS: Mention breakage of scrip-friendly virsh output
virshtest: Add test case for script friendly options
NEWS.rst | 11 +++++++
tests/virshtest.c | 2 ++
.../virshtestdata/script-friendly-options.in | 11 +++++++
.../virshtestdata/script-friendly-options.out | 33 +++++++++++++++++++
tools/virsh-domain-monitor.c | 2 +-
5 files changed, 58 insertions(+), 1 deletion(-)
create mode 100644 tests/virshtestdata/script-friendly-options.in
create mode 100644 tests/virshtestdata/script-friendly-options.out
--
2.46.0
2
4