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
- 18 participants
- 40170 discussions
[PATCH v2] chardev: introduce 'reconnect-ms' and deprecate 'reconnect'
by Daniil Tatianin 10 Oct '24
by Daniil Tatianin 10 Oct '24
10 Oct '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)
Changes since v1:
- Move option validation to qmp_chardev_validate_socket as qemu_chr_parse_socket
is only called for the command line and not QMP. (thanks to Markus Armbruster for spotting)
---
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..91496ceda9 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 {
@@ -1354,6 +1354,12 @@ static bool qmp_chardev_validate_socket(ChardevSocket *sock,
}
}
+ if (sock->has_reconnect_ms && sock->has_reconnect) {
+ error_setg(errp,
+ "'reconnect' and 'reconnect-ms' are mutually exclusive");
+ return false;
+ }
+
return true;
}
@@ -1371,7 +1377,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 +1449,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 +1521,9 @@ 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);
+
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
4
4
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>
---
V2:
https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/message/UHG…
Changes in V3:
When starting a VM, use virDomainDefValidate to validate the def instead
of duplicating the checks.
Note: With the change in V3, the validation is only done when starting
a new VM. Validation is skipped if restoring a managed saved VM.
src/libxl/libxl_domain.c | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/src/libxl/libxl_domain.c b/src/libxl/libxl_domain.c
index 0f129ec69c..029b12fa3b 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 |
@@ -1460,6 +1478,10 @@ libxlDomainStartNew(libxlDriverPrivate *driver,
managed_save_path);
vm->hasManagedSave = false;
+ } else {
+ /* Validate configuration if starting a new VM */
+ if (virDomainDefValidate(vm->def, 0, driver->xmlopt, NULL) < 0)
+ goto cleanup;
}
ret = libxlDomainStart(driver, vm, start_paused, restore_fd, restore_ver);
--
2.35.3
2
1
10 Oct '24
Signed-off-by: Jim Fehlig <jfehlig(a)suse.com>
---
Although small, the change seems NEWS noteworthy.
NEWS.rst | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/NEWS.rst b/NEWS.rst
index 7f4f33c8f8..dd9f261933 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -35,6 +35,14 @@ v10.9.0 (unreleased)
Users are encouraged to report any occurence of the above message along
with steps they took to the upstream tracker.
+ * qemu: improve documentation of image format settings
+
+ The documentation of the various ``*_image_format`` settings in ``qemu.conf``
+ imply they can only be used to control compression of the image. The
+ documentation has been improved to clarify the settings describe the
+ representation of guest memory blocks on disk, which includes compression
+ among other possible layouts.
+
* **Bug fixes**
--
2.35.3
2
1
virDomainConfNWFilterInstantiate() was called without updated
net->ifname, it caused in some cases throwing error message. If
function failed, change is reverted.
Resolves: https://gitlab.com/libvirt/libvirt/-/issues/658
Signed-off-by: Adam Julis <ajulis(a)redhat.com>
---
src/lxc/lxc_process.c | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/src/lxc/lxc_process.c b/src/lxc/lxc_process.c
index 205ab96ebb..b00608e30a 100644
--- a/src/lxc/lxc_process.c
+++ b/src/lxc/lxc_process.c
@@ -271,6 +271,7 @@ virLXCProcessSetupInterfaceTap(virDomainDef *vm,
{
g_autofree char *parentVeth = NULL;
g_autofree char *containerVeth = NULL;
+ g_autofree char *backupIfname = NULL;
const virNetDevVPortProfile *vport = virDomainNetGetActualVirtPortProfile(net);
VIR_DEBUG("calling vethCreate()");
@@ -315,14 +316,18 @@ virLXCProcessSetupInterfaceTap(virDomainDef *vm,
return NULL;
}
- if (net->filter &&
- virDomainConfNWFilterInstantiate(vm->name, vm->uuid, net, false) < 0)
- return NULL;
-
- /* success is guaranteed, so update the interface object */
+ /* success almost guaranteed, next function needs updated net->ifname */
+ backupIfname = g_strdup(net->ifname);
g_free(net->ifname);
net->ifname = g_steal_pointer(&parentVeth);
+ if (net->filter &&
+ virDomainConfNWFilterInstantiate(vm->name, vm->uuid, net, false) < 0) {
+ g_free(net->ifname);
+ net->ifname = g_steal_pointer(&backupIfname);
+ return NULL;
+ }
+
return g_steal_pointer(&containerVeth);
}
--
2.45.2
2
1
The current documentation of the various foo_image_format settings in
qemu.conf subtly implies they are only used for specifying compression.
Patch1 of this small series attempts to clarify and improve the description
of the settings. It defines image format as a way to specify the desired
layout of guest memory blocks on disk.
Patch2 changes the use of 'compressed' with 'format' throughout the
code, removing implication that format == compressed.
V2:
Replace more uses of 'compressed' with 'format' in patch2
Jim Fehlig (2):
qemu: conf: Improve the foo_image_format setting descriptions
qemu: Use consistent naming for save image format
src/qemu/qemu.conf.in | 40 +++++++++++++++++++++++----------------
src/qemu/qemu_driver.c | 30 ++++++++++++++---------------
src/qemu/qemu_saveimage.c | 32 +++++++++++++++----------------
src/qemu/qemu_saveimage.h | 4 ++--
src/qemu/qemu_snapshot.c | 6 +++---
5 files changed, 60 insertions(+), 52 deletions(-)
--
2.35.3
2
7
[PATCH 0/2] qemu: mention caveat with zero detection during migration and add NEWS
by Peter Krempa 10 Oct '24
by Peter Krempa 10 Oct '24
10 Oct '24
Peter Krempa (2):
docs: Add warning about using a cleared image with
VIR_MIGRATE_PARAM_MIGRATE_DISKS_DETECT_ZEROES_ZEROES
NEWS: mention zero detection for non-shared-storage migration
NEWS.rst | 11 +++++++++++
docs/manpages/virsh.rst | 4 +++-
include/libvirt/libvirt-domain.h | 5 ++++-
3 files changed, 18 insertions(+), 2 deletions(-)
--
2.47.0
3
4
From: Marc-André Lureau <marcandre.lureau(a)redhat.com>
The following changes since commit 2af37e791906cfda42cb9604a16d218e56994bb1:
Merge tag 'pull-request-2024-10-07' of https://gitlab.com/thuth/qemu into staging (2024-10-07 12:55:02 +0100)
are available in the Git repository at:
https://gitlab.com/marcandre.lureau/qemu.git tags/chr-pull-request
for you to fetch changes up to b74cb8761c68275240af0826086590a03a1f419d:
chardev: add path option for pty backend (2024-10-09 12:13:05 +0400)
----------------------------------------------------------------
chardev: introduce 'reconnect-ms' and deprecate 'reconnect'
chardev: add path option for pty backend
----------------------------------------------------------------
Daniil Tatianin (1):
chardev: introduce 'reconnect-ms' and deprecate 'reconnect'
Octavian Purdila (1):
chardev: add path option for pty backend
docs/about/deprecated.rst | 6 +++++
qapi/char.json | 44 ++++++++++++++++++++++++++++++++---
include/chardev/char-socket.h | 2 +-
chardev/char-pty.c | 33 ++++++++++++++++++++++++++
chardev/char-socket.c | 33 +++++++++++++++++++-------
chardev/char.c | 8 +++++++
qemu-options.hx | 33 +++++++++++++++++++++-----
7 files changed, 140 insertions(+), 19 deletions(-)
--
2.47.0
2
3
[PATCH v3 00/10] qemu: Rework internal active snapshots to use QMP commands
by Peter Krempa 09 Oct '24
by Peter Krempa 09 Oct '24
09 Oct '24
Changes to v2:
- added few cleanups
- added qemumonitorjson test cases for new commands
- dropped duplicate capability flags
- fixed bugs pointed out in v2
- rewritten logic for selecting snapshot images (both for creation/deletion)
- fixed the logic to be fault tolerant same way as 'delvm'
- allowed internal snapshots of VMs with UEFI
- added explanation to all code with non-obvious implications
Nikolai Barybin via Devel (4):
qemu: monitor: Add plumbing for 'snaphot-save'/'snapshot-delete' QMP
commands
qemu: blockjob: Add job types for 'snapshot-save/delete'
qemu: capabilities: Introduce QEMU_CAPS_SNAPSHOT_INTERNAL_QMP
capability
qemu snapshot: use QMP snapshot-save for internal snapshots creation
Peter Krempa (6):
qemuDomainObjWait: Annotate with G_GNUC_WARN_UNUSED_RESULT
qemu: monitor: Store internal snapshot names from
'query-named-block-nodes'
qemu snapshot: use QMP snapshot-delete for internal snapshots deletion
qemuSnapshotActiveInternalDeleteGetDevices: Add warning when deleting
inconsistent snapshot
qemu: snapshot: Allow internal snapshots with PFLASH nvram
news: mention internal snapshot changes
NEWS.rst | 16 +
src/qemu/qemu_block.c | 2 +
src/qemu/qemu_blockjob.c | 7 +
src/qemu/qemu_blockjob.h | 2 +
src/qemu/qemu_capabilities.c | 4 +
src/qemu/qemu_capabilities.h | 3 +
src/qemu/qemu_domain.c | 10 +
src/qemu/qemu_domain.h | 3 +-
src/qemu/qemu_monitor.c | 30 ++
src/qemu/qemu_monitor.h | 17 +
src/qemu/qemu_monitor_json.c | 79 ++++
src/qemu/qemu_monitor_json.h | 13 +
src/qemu/qemu_snapshot.c | 358 +++++++++++++++++-
tests/qemublocktest.c | 11 +
.../bitmap/snapshots-internal.json | 298 +++++++++++++++
.../bitmap/snapshots-internal.out | 2 +
.../caps_6.0.0_aarch64.xml | 1 +
.../qemucapabilitiesdata/caps_6.0.0_s390x.xml | 1 +
.../caps_6.0.0_x86_64.xml | 1 +
.../caps_6.1.0_x86_64.xml | 1 +
.../caps_6.2.0_aarch64.xml | 1 +
.../qemucapabilitiesdata/caps_6.2.0_ppc64.xml | 1 +
.../caps_6.2.0_x86_64.xml | 1 +
.../caps_7.0.0_aarch64+hvf.xml | 1 +
.../caps_7.0.0_aarch64.xml | 1 +
.../qemucapabilitiesdata/caps_7.0.0_ppc64.xml | 1 +
.../caps_7.0.0_x86_64.xml | 1 +
.../qemucapabilitiesdata/caps_7.1.0_ppc64.xml | 1 +
.../caps_7.1.0_x86_64.xml | 1 +
tests/qemucapabilitiesdata/caps_7.2.0_ppc.xml | 1 +
.../caps_7.2.0_x86_64+hvf.xml | 1 +
.../caps_7.2.0_x86_64.xml | 1 +
.../caps_8.0.0_riscv64.xml | 1 +
.../caps_8.0.0_x86_64.xml | 1 +
.../qemucapabilitiesdata/caps_8.1.0_s390x.xml | 1 +
.../caps_8.1.0_x86_64.xml | 1 +
.../caps_8.2.0_aarch64.xml | 1 +
.../caps_8.2.0_armv7l.xml | 1 +
.../caps_8.2.0_loongarch64.xml | 1 +
.../qemucapabilitiesdata/caps_8.2.0_s390x.xml | 1 +
.../caps_8.2.0_x86_64.xml | 1 +
.../qemucapabilitiesdata/caps_9.0.0_sparc.xml | 1 +
.../caps_9.0.0_x86_64.xml | 1 +
.../caps_9.1.0_riscv64.xml | 1 +
.../caps_9.1.0_x86_64.xml | 1 +
tests/qemumonitorjsontest.c | 33 ++
46 files changed, 895 insertions(+), 22 deletions(-)
create mode 100644 tests/qemublocktestdata/bitmap/snapshots-internal.json
create mode 100644 tests/qemublocktestdata/bitmap/snapshots-internal.out
--
2.46.0
3
18
[PATCH 0/7] qemu: Fix some more migration issues related to vmx-* features
by Jiri Denemark 09 Oct '24
by Jiri Denemark 09 Oct '24
09 Oct '24
Sigh.
Jiri Denemark (7):
qemu: Drop vmx-* from migratable CPU model only when origCPU is set
qemu: Do not drop unknown CPU features from domain XML
cpu-data.py: Properly handle aliases
qemu: Translate vmx-invvpid-single-context-noglobals CPU feature
qemu: Replace big condition in virQEMUCapsCPUFilterFeatures with array
cpu_map: Drop vmx-ept-{uc,wb} features from CPU models
cpu_map: Drop vmx-invvpid-single-context from CPU models
src/cpu_map/sync_qemu_features_i386.py | 3 --
src/cpu_map/sync_qemu_models_i386.py | 5 ++-
src/cpu_map/x86_Broadwell-IBRS.xml | 2 --
src/cpu_map/x86_Broadwell-noTSX-IBRS.xml | 2 --
src/cpu_map/x86_Broadwell-noTSX.xml | 2 --
src/cpu_map/x86_Broadwell.xml | 2 --
src/cpu_map/x86_Cascadelake-Server-noTSX.xml | 2 --
src/cpu_map/x86_Cascadelake-Server.xml | 2 --
src/cpu_map/x86_Cooperlake.xml | 2 --
src/cpu_map/x86_GraniteRapids.xml | 2 --
src/cpu_map/x86_Haswell-IBRS.xml | 2 --
src/cpu_map/x86_Haswell-noTSX-IBRS.xml | 2 --
src/cpu_map/x86_Haswell-noTSX.xml | 2 --
src/cpu_map/x86_Haswell.xml | 2 --
src/cpu_map/x86_Icelake-Server-noTSX.xml | 2 --
src/cpu_map/x86_Icelake-Server.xml | 2 --
src/cpu_map/x86_IvyBridge-IBRS.xml | 2 --
src/cpu_map/x86_IvyBridge.xml | 2 --
src/cpu_map/x86_Nehalem-IBRS.xml | 2 --
src/cpu_map/x86_Nehalem.xml | 2 --
src/cpu_map/x86_SandyBridge-IBRS.xml | 2 --
src/cpu_map/x86_SandyBridge.xml | 2 --
src/cpu_map/x86_SapphireRapids.xml | 2 --
src/cpu_map/x86_Skylake-Client-IBRS.xml | 2 --
src/cpu_map/x86_Skylake-Client-noTSX-IBRS.xml | 2 --
src/cpu_map/x86_Skylake-Client.xml | 2 --
src/cpu_map/x86_Skylake-Server-IBRS.xml | 2 --
src/cpu_map/x86_Skylake-Server-noTSX-IBRS.xml | 2 --
src/cpu_map/x86_Skylake-Server.xml | 2 --
src/cpu_map/x86_Snowridge.xml | 2 --
src/cpu_map/x86_Westmere-IBRS.xml | 2 --
src/cpu_map/x86_Westmere.xml | 2 --
src/qemu/qemu_capabilities.c | 19 +++++++----
src/qemu/qemu_command.c | 13 +++++++-
src/qemu/qemu_domain.c | 26 +++++++--------
src/qemu/qemu_process.c | 32 -------------------
tests/cputestdata/cpu-data.py | 5 +++
.../x86_64-cpuid-Atom-P5362-enabled.xml | 2 +-
.../x86_64-cpuid-Atom-P5362-json.xml | 1 +
.../x86_64-cpuid-Cooperlake-enabled.xml | 2 +-
.../x86_64-cpuid-Cooperlake-json.xml | 1 +
.../x86_64-cpuid-Core-i7-8550U-enabled.xml | 2 +-
.../x86_64-cpuid-Core-i7-8550U-json.xml | 1 +
...86_64-cpuid-Xeon-Platinum-9242-enabled.xml | 2 +-
.../x86_64-cpuid-Xeon-Platinum-9242-json.xml | 1 +
...-cpuid-baseline-Cooperlake+Cascadelake.xml | 1 +
46 files changed, 53 insertions(+), 123 deletions(-)
--
2.46.2
2
8
*** BLURB HERE ***
Peter Krempa (6):
docs: remote: Replace broken link to article about 'ssh-agent'
docs: Reject non-https external links
kbase: Fix link in 'merging_disk_image_chains' article
docs: Use relative links within the web page
docs: newreposetup: Drop section about 'libvirt project server'
docs: Prohibit 'external' links within the webpage
docs/api_extension.rst | 4 +-
docs/issue-handling.rst | 2 +-
docs/kbase/backing_chains.rst | 4 +-
docs/kbase/debuglogs.rst | 4 +-
docs/kbase/internals/incremental-backup.rst | 6 +-
docs/kbase/launch_security_sev.rst | 2 +-
docs/kbase/live_full_disk_backup.rst | 2 +-
docs/kbase/merging_disk_image_chains.rst | 6 +-
docs/kbase/rpm-deployment.rst | 2 +-
docs/kbase/s390_protected_virt.rst | 2 +-
docs/kbase/systemtap.rst | 2 +-
docs/meson.build | 4 ++
docs/newreposetup.rst | 34 -----------
docs/remote.rst | 2 +-
docs/securityprocess.rst | 2 +-
docs/testtck.rst | 2 +-
docs/windows.rst | 5 +-
scripts/check-html-references.py | 67 +++++++++++++++++++--
18 files changed, 86 insertions(+), 66 deletions(-)
--
2.46.0
2
7
commit v10.7.0-76-g1a72b83d56 improperly assumed that reloading
firewalld wouldn't reset the firewalld zone of libvirt-managed bridge
devices. This resulted in loss of networking to guests when something
on the host triggered a reload of firewalld rules, reported here:
https://issues.redhat.com/browse/RHEL-61576
This new series of patches, reverts that commit, along with commit
v10.7.0-78-g200f60b2e1, then reimplements their functionality assuming
that a firewalld reload *will* reset the zone of all libvirt-managed
bridge devices.
Laine Stump (5):
Revert "network: *un*set the firewalld zone while shutting down a
network"
Revert "network: support setting firewalld zone for bridge device of
open networks"
network: call network(Add|Remove)FirewallRules() for forward
mode='open'
network: a different way of supporting firewalld zone for mode='open'
networks
network: a different implementation of *un*setting firewalld zone when
network is destroyed
src/network/bridge_driver.c | 34 +++----
src/network/bridge_driver_linux.c | 140 ++++++++++++++++-----------
src/network/bridge_driver_nop.c | 19 ----
src/network/bridge_driver_platform.h | 4 -
src/util/virfirewalld.c | 16 +--
5 files changed, 102 insertions(+), 111 deletions(-)
--
2.46.1
2
7
Hi,
First of all, kudos to Peter Krempa for his fast review!
In this v2, I've addressed the following points:
- The socket is *not* mandatory and my code totally confused Peter.
Sorry about that!
here a snippet of the QEMU code to understand:
/* Compute the socket path if necessary */
if (s->msr_energy.socket_path == NULL) {
s->msr_energy.socket_path = vmsr_compute_default_paths();
}
So I made all the modification to make it not necessary.
- Change the socket name to "rapl_helper_socket"
- Change the socket to be absFilePath
- I did not add anything to honour the _OFF state, because it is not
necessary to explicitly disable it.
That's about it.
Regards,
Anthony
Anthony Harivel (1):
qemu: Add support for RAPL MSRs feature
docs/formatdomain.rst | 2 ++
src/conf/domain_conf.c | 18 ++++++++++++++++++
src/conf/domain_conf.h | 2 ++
src/conf/schemas/domaincommon.rng | 10 ++++++++++
src/qemu/qemu_command.c | 11 +++++++++++
tests/qemuxmlconfdata/kvm-features-off.xml | 1 +
.../kvm-features.x86_64-latest.args | 2 +-
tests/qemuxmlconfdata/kvm-features.xml | 1 +
8 files changed, 46 insertions(+), 1 deletion(-)
--
2.46.0
3
14
04 Oct '24
From: Marc-André Lureau <marcandre.lureau(a)redhat.com>
Hi,
When swtpm capabilities reports "nvram-backend-dir", it can accepts a single
file or block device where TPM state will be stored.
--tpmstate must be backend-uri=file://.
v2:
- add <source dir='..'/> support as well (Daniel)
Related: https://issues.redhat.com/browse/CNV-35250
Marc-André Lureau (4):
util: check swtpm nvram-backend-dir capability
schema: add TPM emulator <source file='..'>
schema: add TPM emulator <source dir='..'>
qemu_tpm: handle file/block storage source
docs/formatdomain.rst | 18 +++++
src/conf/domain_conf.c | 28 +++++++
src/conf/domain_conf.h | 7 ++
src/conf/schemas/domaincommon.rng | 20 +++++
src/qemu/qemu_tpm.c | 76 +++++++++++++++----
src/util/virtpm.c | 1 +
src/util/virtpm.h | 1 +
.../qemuxmlconfdata/tpm-emulator-tpm2-enc.xml | 1 +
tests/qemuxmlconfdata/tpm-emulator-tpm2.xml | 1 +
9 files changed, 140 insertions(+), 13 deletions(-)
--
2.45.2.827.g557ae147e6
5
22
John Levon (2):
test_driver: provide basic disk hotplug support
test_driver: provide basic disk hotunplug support
src/test/test_driver.c | 276 ++++++++++++++++++++++++++++++++++++++++-
1 file changed, 273 insertions(+), 3 deletions(-)
--
2.34.1
1
2
03 Oct '24
It looks like linux changed the key for wait time in /proc/<pid>/sched
and /proc/<pid>/task/<tid>/sched files in commit ceeadb83aea2 (or around
that time) from se.statistics.wait_sum to just wait_sum. Similarly to
the previous change (from se.wait_sum) just look for the new name first.
Resolves: https://issues.redhat.com/browse/RHEL-60030
Signed-off-by: Martin Kletzander <mkletzan(a)redhat.com>
---
src/util/virprocess.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/util/virprocess.c b/src/util/virprocess.c
index f1e5e4decd68..dd4bd866102e 100644
--- a/src/util/virprocess.c
+++ b/src/util/virprocess.c
@@ -1849,8 +1849,10 @@ virProcessGetSchedInfo(unsigned long long *cpuWait,
const char *line = lines[i];
/* Needs CONFIG_SCHEDSTATS. The second check
+ * is the name used before ceeadb83aea2, the third one
* is the old name the kernel used in past */
- if (STRPREFIX(line, "se.statistics.wait_sum") ||
+ if (STRPREFIX(line, "wait_sum") ||
+ STRPREFIX(line, "se.statistics.wait_sum") ||
STRPREFIX(line, "se.wait_sum")) {
line = strchr(line, ':');
if (!line) {
--
2.46.2
2
1
[PATCH v7 00/14] qemu: Introduce shared_filesystems configuration option
by Andrea Bolognani 03 Oct '24
by Andrea Bolognani 03 Oct '24
03 Oct '24
The need to have something like this in the first place is driven by
KubeVirt (see [1] and [2]). A draft version of this series has been
integrated into KubeVirt and it has been confirmed that it was
effective in removing the need to use LD_PRELOAD hacks in the storage
provider.
Changes from [v6]:
* only skip metadata locking for the swtpm lock file;
* other tweaks based on review feedback.
Changes from [v5]:
* make migration of domains with TPM work (patches 12 and 13);
* fixed all typos for "remember";
* added R-bs for Peter's patches.
Changes from [v4] (v5 was posted by Peter):
* added patch 7 cleaning up a helper function (noticed just while
reading the code)
* added patch 8 properly unrefing security labels in dac/selinux
drivers on outgoing migration
* patch 11: added handling of the 'nvram' image file (and refactored
the function to
allow reuse)
Changes from [v3] (v4 was posted by Peter):
* patch 2/8 was modified to change the docs for the new option.
* patches 1-5 will get an R-b by me as I've adopted them.
* patches 6, 9-11 are new.
* patches 7, 8 were not part of v3
Changes from [v2]:
* added canonicalization for user-provided paths;
* fixed compilation issues when AppArmor support is enabled.
Changes from [v1]:
* documented more explicitly that the newly introduced option is
intended for very specific scenarios and not general usage; as
part of this, the NEWS update has been dropped too;
* made a few tweaks and addressed a few oversight based on review
feedback;
* several preparatory cleanup patches have been pushed.
Changes from [v0]:
* reworked approach.
[v6] https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/thread/7TTR…
[v5] https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/thread/HNF5…
[v4] https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/thread/FWR7…
[v3] https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/thread/PISB…
[v2] https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/thread/XPCP…
[v1] https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/thread/XEIS…
[v0] https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/thread/MMKV…
[1] https://issues.redhat.com/browse/CNV-34322
[2] https://issues.redhat.com/browse/CNV-39370
Andrea Bolognani (8):
security: Fix alignment
qemu: Introduce shared_filesystems configuration option
qemu: Propagate shared_filesystems
utils: Use overrides in virFileIsSharedFS()
qemu: Always set labels for TPM state
security: Always forget labels for TPM state directory
security: Allow skipping locking when labeling lock files
qemu: Handle locking of TPM state directory for incoming migration
Peter Krempa (6):
virFileIsSharedFSOverride: Export
virParseOwnershipIds: Refactor
virSecuritySELinuxRestoreImageLabelInt: Move FD image relabeling after
'migrated' check
security_(dac|selinux): Unref remembered security labels on outgoing
migration
storage_source: Add field for skipping seclabel remembering
qemu: migration: Don't remember seclabel for images shared from
current host
src/conf/storage_source_conf.c | 3 +
src/conf/storage_source_conf.h | 9 ++
src/libvirt_private.syms | 1 +
src/lxc/lxc_controller.c | 3 +-
src/lxc/lxc_driver.c | 2 +-
src/lxc/lxc_process.c | 4 +-
src/qemu/libvirtd_qemu.aug | 3 +
src/qemu/qemu.conf.in | 26 +++++
src/qemu/qemu_conf.c | 31 ++++++
src/qemu/qemu_conf.h | 2 +
src/qemu/qemu_domain.c | 7 +-
src/qemu/qemu_extdevice.c | 2 +-
src/qemu/qemu_migration.c | 83 ++++++++++++++--
src/qemu/qemu_security.c | 147 ++++++++++++++++++++--------
src/qemu/qemu_security.h | 6 +-
src/qemu/qemu_tpm.c | 51 +++++++---
src/qemu/qemu_tpm.h | 10 +-
src/qemu/test_libvirtd_qemu.aug.in | 5 +
src/security/security_apparmor.c | 8 +-
src/security/security_dac.c | 61 +++++++++---
src/security/security_driver.h | 11 ++-
src/security/security_manager.c | 54 ++++++++---
src/security/security_manager.h | 15 ++-
src/security/security_nop.c | 5 +
src/security/security_selinux.c | 151 +++++++++++++++++++++++------
src/security/security_stack.c | 38 ++++++--
src/util/virfile.c | 63 +++++++++++-
src/util/virfile.h | 5 +-
src/util/virutil.c | 20 ++--
tests/securityselinuxlabeltest.c | 2 +-
tests/virfiletest.c | 2 +-
31 files changed, 666 insertions(+), 164 deletions(-)
--
2.46.2
2
19
03 Oct '24
Den, Peter, Daniel thank you for your comments!
I'm sending v2 of this patchset.
Changes since last revision:
- dropped [PATCH 4/4] qemu monitor: reap qemu_monitor_text
- added new patch: qemu capabilities: add QEMU_CAPS_SNAPSHOT_SAVE/_DELETE
- preserved old-style snapshotting (HMP savevm) in case we have QEMU < 6.0
- enhanced requirements for allowing snapshotting. All writable disks
should be qcow2, non-shared. If such disks exist and we have qcow2
NVRAM, add NVRAM device to the list of wrdevs. But never save vmstate
to NVRAM
- make char** wrdevs list allocation inside
qemuSnapshotActiveInternalGetWrdevListHelper()
Nikolai Barybin (4):
qemu monitor: add snaphot-save/delete QMP commands
qemu blockjob: add snapshot-save/delete job types
qemu capabilities: add QEMU_CAPS_SNAPSHOT_SAVE/_DELETE
qemu snapshot: use QMP snapshot-save/delete for internal snapshots
src/qemu/qemu_block.c | 2 +
src/qemu/qemu_blockjob.c | 6 +-
src/qemu/qemu_blockjob.h | 2 +
src/qemu/qemu_capabilities.c | 4 +
src/qemu/qemu_capabilities.h | 2 +
src/qemu/qemu_domain.c | 4 +
src/qemu/qemu_monitor.c | 30 +++
src/qemu/qemu_monitor.h | 13 ++
src/qemu/qemu_monitor_json.c | 66 ++++++
src/qemu/qemu_monitor_json.h | 13 ++
src/qemu/qemu_snapshot.c | 207 ++++++++++++++++--
.../caps_6.0.0_aarch64.xml | 2 +
.../qemucapabilitiesdata/caps_6.0.0_s390x.xml | 2 +
.../caps_6.0.0_x86_64.xml | 2 +
.../caps_6.1.0_x86_64.xml | 2 +
.../caps_6.2.0_aarch64.xml | 2 +
.../qemucapabilitiesdata/caps_6.2.0_ppc64.xml | 2 +
.../caps_6.2.0_x86_64.xml | 2 +
.../caps_7.0.0_aarch64+hvf.xml | 2 +
.../caps_7.0.0_aarch64.xml | 2 +
.../qemucapabilitiesdata/caps_7.0.0_ppc64.xml | 2 +
.../caps_7.0.0_x86_64.xml | 2 +
.../qemucapabilitiesdata/caps_7.1.0_ppc64.xml | 2 +
.../caps_7.1.0_x86_64.xml | 2 +
tests/qemucapabilitiesdata/caps_7.2.0_ppc.xml | 2 +
.../caps_7.2.0_x86_64+hvf.xml | 2 +
.../caps_7.2.0_x86_64.xml | 2 +
.../caps_8.0.0_riscv64.xml | 2 +
.../caps_8.0.0_x86_64.xml | 2 +
.../qemucapabilitiesdata/caps_8.1.0_s390x.xml | 2 +
.../caps_8.1.0_x86_64.xml | 2 +
.../caps_8.2.0_aarch64.xml | 2 +
.../caps_8.2.0_armv7l.xml | 2 +
.../caps_8.2.0_loongarch64.xml | 2 +
.../qemucapabilitiesdata/caps_8.2.0_s390x.xml | 2 +
.../caps_8.2.0_x86_64.xml | 2 +
.../qemucapabilitiesdata/caps_9.0.0_sparc.xml | 2 +
.../caps_9.0.0_x86_64.xml | 2 +
.../caps_9.1.0_x86_64.xml | 2 +
39 files changed, 391 insertions(+), 14 deletions(-)
--
2.43.5
2
14
These two patches add basic support for NIC hot[un]plug to the test hypervisor,
based on the qemu driver; only ethernet and bridge type VNICS are currently
supported.
John Levon (2):
test_driver: provide basic NIC hotplug support
test_driver: provide basic NIC hotunplug support
src/test/test_driver.c | 305 ++++++++++++++++++++++++++++++++++++++---
1 file changed, 283 insertions(+), 22 deletions(-)
--
2.34.1
2
9
[PATCH v6 00/13] qemu: Introduce shared_filesystems configuration option
by Andrea Bolognani 02 Oct '24
by Andrea Bolognani 02 Oct '24
02 Oct '24
The need to have something like this in the first place is driven by
KubeVirt (see [1] and [2]). A draft version of this series has been
integrated into KubeVirt and it has been confirmed that it was
effective in removing the need to use LD_PRELOAD hacks in the storage
provider.
Changes from [v5]:
* make migration of domains with TPM work (patches 12 and 13);
* fixed all typos for "remember";
* added R-bs for Peter's patches.
Changes from [v4] (v5 was posted by Peter):
* added patch 7 cleaning up a helper function (noticed just while
reading the code)
* added patch 8 properly unrefing security labels in dac/selinux
drivers on outgoing migration
* patch 11: added handling of the 'nvram' image file (and refactored
the function to
allow reuse)
Changes from [v3] (v4 was posted by Peter):
* patch 2/8 was modified to change the docs for the new option.
* patches 1-5 will get an R-b by me as I've adopted them.
* patches 6, 9-11 are new.
* patches 7, 8 were not part of v3
Changes from [v2]:
* added canonicalization for user-provided paths;
* fixed compilation issues when AppArmor support is enabled.
Changes from [v1]:
* documented more explicitly that the newly introduced option is
intended for very specific scenarios and not general usage; as
part of this, the NEWS update has been dropped too;
* made a few tweaks and addressed a few oversight based on review
feedback;
* several preparatory cleanup patches have been pushed.
Changes from [v0]:
* reworked approach.
[v5] https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/message/HNF…
[v4] https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/message/FWR…
[v3] https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/message/PIS…
[v2] https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/thread/XPCP…
[v1] https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/thread/XEIS…
[v0] https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/thread/MMKV…
[1] https://issues.redhat.com/browse/CNV-34322
[2] https://issues.redhat.com/browse/CNV-39370
Andrea Bolognani (7):
security: Fix alignment
qemu: Introduce shared_filesystems configuration option
qemu: Propagate shared_filesystems
utils: Use overrides in virFileIsSharedFS()
qemu: Always set labels for TPM state
security: Always forget labels for TPM state directory
qemu: Don't lock TPM state directory for incoming migration
Peter Krempa (6):
virFileIsSharedFSOverride: Export
virParseOwnershipIds: Refactor
virSecuritySELinuxRestoreImageLabelInt: Move FD image relabeling after
'migrated' check
security_(dac|selinux): Unref remembered security labels on outgoing
migration
storage_source: Add field for skipping seclabel remembering
qemu: migration: Don't remember seclabel for images shared from
current host
src/conf/storage_source_conf.c | 3 +
src/conf/storage_source_conf.h | 9 ++
src/libvirt_private.syms | 1 +
src/lxc/lxc_controller.c | 3 +-
src/lxc/lxc_driver.c | 2 +-
src/lxc/lxc_process.c | 4 +-
src/qemu/libvirtd_qemu.aug | 3 +
src/qemu/qemu.conf.in | 26 +++++
src/qemu/qemu_conf.c | 31 ++++++
src/qemu/qemu_conf.h | 2 +
src/qemu/qemu_domain.c | 7 +-
src/qemu/qemu_extdevice.c | 2 +-
src/qemu/qemu_migration.c | 86 ++++++++++++++---
src/qemu/qemu_security.c | 95 +++++++++++++-----
src/qemu/qemu_security.h | 6 +-
src/qemu/qemu_tpm.c | 50 ++++++----
src/qemu/qemu_tpm.h | 10 +-
src/qemu/test_libvirtd_qemu.aug.in | 5 +
src/security/security_apparmor.c | 8 +-
src/security/security_dac.c | 53 +++++++++--
src/security/security_driver.h | 8 +-
src/security/security_manager.c | 33 +++++--
src/security/security_manager.h | 9 +-
src/security/security_nop.c | 5 +
src/security/security_selinux.c | 148 +++++++++++++++++++++++------
src/security/security_stack.c | 32 +++++--
src/util/virfile.c | 63 +++++++++++-
src/util/virfile.h | 5 +-
src/util/virutil.c | 20 ++--
tests/securityselinuxlabeltest.c | 2 +-
tests/virfiletest.c | 2 +-
31 files changed, 594 insertions(+), 139 deletions(-)
--
2.46.0
2
17
02 Oct '24
The attribute dma_translation is only supported by intel-iommu device.
Report an error when it is used for the other iommu devices.
Fixes: 6866f958c1
Signed-off-by: Han Han <hhan(a)redhat.com>
---
v2: update the tests
v1: https://lists.libvirt.org/archives/list/devel@lists.libvirt.org/thread/6CHF…
src/conf/domain_validate.c | 3 ++-
...io-iommu-dma-translation.x86_64-latest.err | 1 +
.../virtio-iommu-dma-translation.xml | 20 +++++++++++++++++++
tests/qemuxmlconftest.c | 1 +
4 files changed, 24 insertions(+), 1 deletion(-)
create mode 100644 tests/qemuxmlconfdata/virtio-iommu-dma-translation.x86_64-latest.err
create mode 100644 tests/qemuxmlconfdata/virtio-iommu-dma-translation.xml
diff --git a/src/conf/domain_validate.c b/src/conf/domain_validate.c
index eddb4a5e74..b8ae9ed79d 100644
--- a/src/conf/domain_validate.c
+++ b/src/conf/domain_validate.c
@@ -2980,7 +2980,8 @@ virDomainIOMMUDefValidate(const virDomainIOMMUDef *iommu)
iommu->caching_mode != VIR_TRISTATE_SWITCH_ABSENT ||
iommu->eim != VIR_TRISTATE_SWITCH_ABSENT ||
iommu->iotlb != VIR_TRISTATE_SWITCH_ABSENT ||
- iommu->aw_bits != 0) {
+ iommu->aw_bits != 0 ||
+ iommu->dma_translation != VIR_TRISTATE_SWITCH_ABSENT) {
virReportError(VIR_ERR_XML_ERROR,
_("iommu model '%1$s' doesn't support additional attributes"),
virDomainIOMMUModelTypeToString(iommu->model));
diff --git a/tests/qemuxmlconfdata/virtio-iommu-dma-translation.x86_64-latest.err b/tests/qemuxmlconfdata/virtio-iommu-dma-translation.x86_64-latest.err
new file mode 100644
index 0000000000..2c3a272725
--- /dev/null
+++ b/tests/qemuxmlconfdata/virtio-iommu-dma-translation.x86_64-latest.err
@@ -0,0 +1 @@
+XML error: iommu model 'virtio' doesn't support additional attributes
diff --git a/tests/qemuxmlconfdata/virtio-iommu-dma-translation.xml b/tests/qemuxmlconfdata/virtio-iommu-dma-translation.xml
new file mode 100644
index 0000000000..a3723f266b
--- /dev/null
+++ b/tests/qemuxmlconfdata/virtio-iommu-dma-translation.xml
@@ -0,0 +1,20 @@
+<domain type='qemu'>
+ <name>QEMUGuest1</name>
+ <uuid>c7a5fdbd-edaf-9455-926a-d65c16db1809</uuid>
+ <memory unit='KiB'>219100</memory>
+ <vcpu placement='static'>1</vcpu>
+ <os>
+ <type arch='x86_64' machine='q35'>hvm</type>
+ </os>
+ <features>
+ <acpi/>
+ </features>
+ <devices>
+ <emulator>/usr/bin/qemu-system-x86_64</emulator>
+ <controller type='usb' model='none'/>
+ <memballoon model='none'/>
+ <iommu model='virtio'>
+ <driver dma_translation='on'/>
+ </iommu>
+ </devices>
+</domain>
diff --git a/tests/qemuxmlconftest.c b/tests/qemuxmlconftest.c
index 61eb4cda75..dfcf67d2d0 100644
--- a/tests/qemuxmlconftest.c
+++ b/tests/qemuxmlconftest.c
@@ -2766,6 +2766,7 @@ mymain(void)
DO_TEST_CAPS_LATEST_PARSE_ERROR("virtio-iommu-no-acpi");
DO_TEST_CAPS_LATEST_PARSE_ERROR("virtio-iommu-invalid-address-type");
DO_TEST_CAPS_LATEST_PARSE_ERROR("virtio-iommu-invalid-address");
+ DO_TEST_CAPS_LATEST_PARSE_ERROR("virtio-iommu-dma-translation");
DO_TEST_CAPS_LATEST("cpu-hotplug-startup");
DO_TEST_CAPS_ARCH_LATEST_PARSE_ERROR("cpu-hotplug-granularity", "ppc64");
--
2.46.1
2
1
02 Oct '24
This patch series includes fixes for config generation of multiple serial
devices and handling of unsupported graphics types. Both of these
were discovered some time back using fuzzing techniques.
Rayhan Faizel (2):
libxl_conf: Fix config generation for multiple serial devices
libxl_conf: Add check for unsupported graphics type
src/libxl/libxl_conf.c | 15 +++--
.../multiple-serial.json | 63 +++++++++++++++++++
.../multiple-serial.xml | 47 ++++++++++++++
.../libxlxml2domconfigdata/single-serial.json | 52 +++++++++++++++
.../libxlxml2domconfigdata/single-serial.xml | 25 ++++++++
tests/libxlxml2domconfigtest.c | 3 +
6 files changed, 200 insertions(+), 5 deletions(-)
create mode 100644 tests/libxlxml2domconfigdata/multiple-serial.json
create mode 100644 tests/libxlxml2domconfigdata/multiple-serial.xml
create mode 100644 tests/libxlxml2domconfigdata/single-serial.json
create mode 100644 tests/libxlxml2domconfigdata/single-serial.xml
--
2.34.1
2
4
According to https://marc.info/?l=fedora-devel-list&m=171934833215726
the GlusterFS development effectively ended. Thus mark it as deprecated
in QEMU, so we can remove it in a future release if the project does
not gain momentum again.
Acked-by: Niels de Vos <ndevos(a)redhat.com>
Acked-by: Markus Armbruster <armbru(a)redhat.com>
Signed-off-by: Thomas Huth <thuth(a)redhat.com>
---
v3: Some rewordings according to Markus' and Daniel's suggestions
docs/about/deprecated.rst | 9 +++++++++
qapi/block-core.json | 8 +++++++-
block/gluster.c | 2 ++
3 files changed, 18 insertions(+), 1 deletion(-)
diff --git a/docs/about/deprecated.rst b/docs/about/deprecated.rst
index c0aa52def5..c41e55f710 100644
--- a/docs/about/deprecated.rst
+++ b/docs/about/deprecated.rst
@@ -414,6 +414,15 @@ Specifying the iSCSI password in plain text on the command line using the
used instead, to refer to a ``--object secret...`` instance that provides
a password via a file, or encrypted.
+``gluster`` backend (since 9.2)
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+According to https://marc.info/?l=fedora-devel-list&m=171934833215726
+the GlusterFS development effectively ended. Unless the development
+gains momentum again, the QEMU project will remove the gluster backend
+in a future release.
+
+
Character device options
''''''''''''''''''''''''
diff --git a/qapi/block-core.json b/qapi/block-core.json
index c3b0a2376b..8181abef54 100644
--- a/qapi/block-core.json
+++ b/qapi/block-core.json
@@ -3192,12 +3192,18 @@
#
# @snapshot-access: Since 7.0
#
+# Features:
+#
+# @deprecated: Member @gluster is deprecated because GlusterFS
+# development ceased.
+#
# Since: 2.9
##
{ 'enum': 'BlockdevDriver',
'data': [ 'blkdebug', 'blklogwrites', 'blkreplay', 'blkverify', 'bochs',
'cloop', 'compress', 'copy-before-write', 'copy-on-read', 'dmg',
- 'file', 'snapshot-access', 'ftp', 'ftps', 'gluster',
+ 'file', 'snapshot-access', 'ftp', 'ftps',
+ {'name': 'gluster', 'features': [ 'deprecated' ] },
{'name': 'host_cdrom', 'if': 'HAVE_HOST_BLOCK_DEVICE' },
{'name': 'host_device', 'if': 'HAVE_HOST_BLOCK_DEVICE' },
'http', 'https',
diff --git a/block/gluster.c b/block/gluster.c
index f8b415f381..f03d05251e 100644
--- a/block/gluster.c
+++ b/block/gluster.c
@@ -809,6 +809,8 @@ static int qemu_gluster_open(BlockDriverState *bs, QDict *options,
goto out;
}
+ warn_report_once("'gluster' is deprecated");
+
filename = qemu_opt_get(opts, GLUSTER_OPT_FILENAME);
s->debug = qemu_opt_get_number(opts, GLUSTER_OPT_DEBUG,
--
2.46.1
1
0
02 Oct '24
Even though it still stays a Perl script at heart.
Ján Tomko (6):
scripts: group-qemu-caps: use read
scripts: group-qemu-caps: remove cryptic bool
scripts: group-qemu-caps: remove unecessary regex
scripts: group-qemu-caps: separate file loading
scripts: group-qemu-caps: regroup_caps: operate on split lines
scripts: group-qemu-caps: separate file operations from the check
scripts/group-qemu-caps.py | 120 +++++++++++++++++++++----------------
1 file changed, 68 insertions(+), 52 deletions(-)
--
2.45.2
2
7
All VMs are being created with no hpet timer defined. Check if the
VM definition XML file enables HPET and reflect that on the VMX
file.
Signed-off-by: João Sena Ribeiro <joao.ribeiro(a)identity.pt>
---
src/vmx/vmx.c | 31 ++++++++++++++++++++++++++++++-
1 file changed, 30 insertions(+), 1 deletion(-)
diff --git a/src/vmx/vmx.c b/src/vmx/vmx.c
index de16c1f634..d7e116dd07 100644
--- a/src/vmx/vmx.c
+++ b/src/vmx/vmx.c
@@ -65,7 +65,7 @@ def->maxvcpus = <value> <=> numvcpus = "<value>"
def->cpumask = <uint list> <=> sched.cpu.affinity = "<uint list>"
def->cputune.shares = <value> <=> sched.cpu.shares = "<value>" # with handling for special values
# "high", "normal", "low"
-
+def->ntimers <=> hpet.present = "<value>" # "true", "false"
################################################################################
@@ -3496,6 +3496,35 @@ virVMXFormatConfig(virVMXContext *ctx, virDomainXMLOption *xmlopt, virDomainDef
}
}
+ /* def:clock.ntimers */
+ for (i = 0; i < def->clock.ntimers; i++) {
+ switch ((virDomainTimerNameType)def->clock.timers[i]->name) {
+ case VIR_DOMAIN_TIMER_NAME_HPET:
+ if (def->clock.timers[i]->present == VIR_TRISTATE_BOOL_YES) {
+ virBufferAddLit(&buffer, "hpet0.present = \"true\"\n");
+ } else if (def->clock.timers[i]->present == VIR_TRISTATE_BOOL_NO) {
+ virBufferAddLit(&buffer, "hpet0.present = \"false\"\n");
+ }
+ break;
+
+ case VIR_DOMAIN_TIMER_NAME_TSC:
+ case VIR_DOMAIN_TIMER_NAME_PLATFORM:
+ case VIR_DOMAIN_TIMER_NAME_KVMCLOCK:
+ case VIR_DOMAIN_TIMER_NAME_HYPERVCLOCK:
+ case VIR_DOMAIN_TIMER_NAME_RTC:
+ case VIR_DOMAIN_TIMER_NAME_PIT:
+ case VIR_DOMAIN_TIMER_NAME_ARMVTIMER:
+ virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
+ _("unsupported timer type (name) '%1$s'"),
+ virDomainTimerNameTypeToString(def->clock.timers[i]->name));
+ goto cleanup;
+
+ case VIR_DOMAIN_TIMER_NAME_LAST:
+ break;
+
+ }
+ }
+
/* def:graphics */
for (i = 0; i < def->ngraphics; ++i) {
switch (def->graphics[i]->type) {
--
2.34.1
2
1
The "stop" hook is called when the process of stopping a guest
started and it is known that the process can be completed
(e.g. the guest is still active).
Resolves: https://gitlab.com/libvirt/libvirt/-/issues/647
Signed-off-by: Adam Julis <ajulis(a)redhat.com>
---
docs/hooks.rst | 14 +++++++++++---
src/qemu/qemu_process.c | 10 ++++++++++
src/util/virhook.c | 1 +
src/util/virhook.h | 1 +
4 files changed, 23 insertions(+), 3 deletions(-)
diff --git a/docs/hooks.rst b/docs/hooks.rst
index 48128ba3d8..508d5afc4e 100644
--- a/docs/hooks.rst
+++ b/docs/hooks.rst
@@ -202,9 +202,17 @@ operation. There is no specific operation to indicate a "restart" is occurring.
/etc/libvirt/hooks/qemu guest_name started begin -
-- When a QEMU guest is stopped, the qemu hook script is called in two
- locations, to match the startup. First, :since:`since 0.8.0`, the hook is
- called before libvirt restores any labels:
+- Before a QEMU guest is stopped, the qemu hook script is called in three
+ locations, to match the startup. First, :since:`since 10.8.0`, the hook is
+ called after libvirt checks that guest is still active and whole stopping
+ procedure should be run:
+
+ ::
+
+ /etc/libvirt/hooks/qemu guest_name stop begin -
+
+ The second location, :since:`since 0.8.0`, the hook is called before libvirt
+ restores any labels:
::
diff --git a/src/qemu/qemu_process.c b/src/qemu/qemu_process.c
index 2e4ee9e305..f12c4a97a6 100644
--- a/src/qemu/qemu_process.c
+++ b/src/qemu/qemu_process.c
@@ -8615,6 +8615,7 @@ qemuProcessBeginStopJob(virDomainObj *vm,
* is supposed to call qemuProcessStop (which will reset it after
* 'vm->def->id' is set to -1) and/or qemuProcessEndStopJob to do proper
* cleanup. */
+
return 0;
error:
@@ -8676,6 +8677,15 @@ void qemuProcessStop(virQEMUDriver *driver,
goto endjob;
}
+ if (virHookPresent(VIR_HOOK_DRIVER_QEMU)) {
+ g_autofree char *xml = qemuDomainDefFormatXML(driver, NULL, vm->def, 0);
+
+ /* we can't stop the operation even if the script raised an error */
+ ignore_value(virHookCall(VIR_HOOK_DRIVER_QEMU, vm->def->name,
+ VIR_HOOK_QEMU_OP_STOP, VIR_HOOK_SUBOP_BEGIN,
+ NULL, xml, NULL));
+ }
+
/* BEWARE: At this point 'vm->def->id' is not cleared yet. Any code that
* requires the id (e.g. to call virDomainDefGetShortName()) must be placed
* between here (after the VM is killed) and the statement clearing the id.
diff --git a/src/util/virhook.c b/src/util/virhook.c
index d012bb1825..01ba17e406 100644
--- a/src/util/virhook.c
+++ b/src/util/virhook.c
@@ -76,6 +76,7 @@ VIR_ENUM_IMPL(virHookSubop,
VIR_ENUM_IMPL(virHookQemuOp,
VIR_HOOK_QEMU_OP_LAST,
"start",
+ "stop",
"stopped",
"prepare",
"release",
diff --git a/src/util/virhook.h b/src/util/virhook.h
index d8237c837e..ea8c540c3f 100644
--- a/src/util/virhook.h
+++ b/src/util/virhook.h
@@ -52,6 +52,7 @@ typedef enum {
typedef enum {
VIR_HOOK_QEMU_OP_START, /* domain is about to start */
+ VIR_HOOK_QEMU_OP_STOP, /* domain is about to stop */
VIR_HOOK_QEMU_OP_STOPPED, /* domain has stopped */
VIR_HOOK_QEMU_OP_PREPARE, /* domain startup initiated */
VIR_HOOK_QEMU_OP_RELEASE, /* domain destruction is over */
--
2.45.2
2
1
01 Oct '24
cloud-hypervisor raises various events, including VM lifecylce operations
such as boot, shutdown, pause, resume, etc. Libvirt will now read these
events and take the necessary actions, such as correctly updating the
domain state. A FIFO file is passed to `--event-monitor` option of
cloud-hypervisor. Libvirt creates a new thread that acts as the reader
of the fifo file and continuously monitors for new events. Currently,
shutdown events are handled by updating the domain state appropriately.
Purna Pavan Chandra Aekkaladevi (6):
utils: Implement virFileIsNamedPipe
ch: pass --event-monitor option to cloud-hypervisor
ch: start a new thread for handling ch events
ch: events: Read and parse cloud-hypervisor events
ch: events: facilitate lifecycle events handling
NEWS: Mention event handling support in ch driver
NEWS.rst | 7 +
po/POTFILES | 1 +
src/ch/ch_events.c | 337 +++++++++++++++++++++++++++++++++++++++
src/ch/ch_events.h | 54 +++++++
src/ch/ch_monitor.c | 48 +++++-
src/ch/ch_monitor.h | 11 ++
src/ch/meson.build | 2 +
src/libvirt_private.syms | 1 +
src/util/virfile.c | 8 +
src/util/virfile.h | 1 +
10 files changed, 466 insertions(+), 4 deletions(-)
create mode 100644 src/ch/ch_events.c
create mode 100644 src/ch/ch_events.h
--
2.34.1
2
18
The 10.8.0 release of both libvirt and libvirt-python is tagged and
signed tarballs are available at
https://download.libvirt.org/
https://download.libvirt.org/python/
Thanks everybody who helped with this release by sending patches,
reviewing, testing, or providing feedback. Your work is greatly
appreciated.
* Improvements
* network: make networks with ``<forward mode='open'/>`` more useful
It is now permissable to have a ``<forward mode='open'>`` network that
has no IP address assigned to the host's port of the bridge. This
is the only way to create a libvirt network where guests are
unreachable from the host (and vice versa) and also 0 firewall
rules are added on the host.
It is now also possible for a ``<forward mode='open'/>`` network to
use the ``zone`` attribute of ``<bridge>`` to set the firewalld zone of
the bridge interface (normally it would not be set, as is done
with other forward modes).
* storage: Lessen dependancy on the ``showmount`` program
Libvirt now automatically detects presence of ``showmount`` during runtime
as we do with other helper programs and also the
``daemon-driver-storage-core`` RPM package now doesn't strongly depend on it
if the users wish for a more minimal deployment.
* Switch from YAJL to json-c for JSON parsing and formatting
The parser and formatter in the libvirt library, as well
as the parsers in the nss plugin were rewritten to use json-c
instead of YAJL, which is effectively dead upstream.
* Relax restrictions for memorytune settings
It should now be possible to use resctrl on AMD CPUs as well as Intel CPUs
when the resctrl filesystem is mounted with ``mba_MBps`` option.
* Bug fixes
* virsh: Fix script-friedly output of ``virsh list --uuid``
The script-friendly output of just 1 UUID per line was mistakenly replaced
by the full human-targetted table view full of redundant information
and very hard to parse. Users who wish to see the UUIDs in the tabular
output need to use ``virsh list --table --uuid`` as old behaviour was
reverted.
Note that this also broke the ``libvirt-guests`` script. The bug was
introduced in `v10.7.0 (2024-09-02)`_.
* network/qemu: fix some cases where ``device-update`` of a network
interface was failing:
* If the interface was connected to a libvirt network that was
providing a pool of VFs to be used with macvtap passthrough
mode, then *any* update to the interface would fail, even
changing the link state. Updating (the updateable parts of) a
macvtap passthrough interface will now succeed.
* It previously was not possible to move an interface from a Linux
host bridge to an OVS bridge. This (and the opposite direction)
now works.
* qemu: backup: Fix possible crashes when running monitoring commands during backup job
The qemu monitor code was fixed to not crash in specific cases when
monitoing APIs are called during a backup job.
* Fix various memleaks and overflows
Multiple memory leaks and overflows in corner cases were fixed based on
upstream issues reported.
* network: Better cleanup after disappeared networks
If a network disappeared while virtnetworkd was not running not all clean up
was done properly once the daemon was started, especially when only the
network interface disappeared. This could have in some cases resulted in
the network being shown as inactive, but not being able to start.
* qemu: Remember memory backing directory for domains
If ``memory_backing_dir`` is changed during the lifetime of a domain with
file backed memory, files in the old directory would not be cleaned up once
the domain is shut down. Now the directory that was used during startup is
remembered for each running domain.
Enjoy.
Jirka
1
0
[PATCH 0/2] tests: Add support for the 'unstable' qemu QMP schema feature flag
by Peter Krempa 01 Oct '24
by Peter Krempa 01 Oct '24
01 Oct '24
See 2/2
Peter Krempa (2):
testutilsqemuschema: Rename and document
'testQEMUSchemaValidateDeprecated'
testutilsqemuschema: Support 'unstable' feature in QMP schema
validator
tests/testutilsqemuschema.c | 24 +++++++++++++++++-------
1 file changed, 17 insertions(+), 7 deletions(-)
--
2.46.0
2
3
[PATCH] (for 10.8.0? undecided) qemu: fix regression in update-device for interfaces
by Laine Stump 01 Oct '24
by Laine Stump 01 Oct '24
01 Oct '24
Commit a37bd2a15b8f2e7aa09519c86fe1ba1e59ce113f eliminated a failure
to update *any* change in an interface that was connected via a
network that consisted of a pool of VFs using macvtap passthrough
mode. Unfortunately it caused a regression that results in failure to
update changes to bandwidth/vlan/trustGuestRxFilters in any interface
connected via a network that uses a bridge to connect tap devices.
This fixes that problem by narrowing the usage of the fix in the
earlier patch to only be done in the case that the the interface is
connected via a macvtap+passthrough network.
Signed-off-by: Laine Stump <laine(a)redhat.com>
Fixes: a37bd2a15b8f2e7aa09519c86fe1ba1e59ce113f
---
The alternatives to this are:
1) revert a37bd2a15b8f2e7aa09519c86fe1ba1e59ce113f (but I haven't
checked yet if that will cause problems with the other patches in
that same series) to eliminate the regression but also unfix the
bug that was fixed, or
2) Do nothing and release with the regression.
Wish I'd found this a couple days earlier :-/
src/qemu/qemu_hotplug.c | 17 ++++++++++++-----
1 file changed, 12 insertions(+), 5 deletions(-)
diff --git a/src/qemu/qemu_hotplug.c b/src/qemu/qemu_hotplug.c
index 09a37caf85..4d4bcde1bc 100644
--- a/src/qemu/qemu_hotplug.c
+++ b/src/qemu/qemu_hotplug.c
@@ -3918,12 +3918,19 @@ qemuDomainChangeNet(virQEMUDriver *driver,
* free it if we fail for any reason
*/
if (newdev->type == VIR_DOMAIN_NET_TYPE_NETWORK) {
- if (olddev->type == VIR_DOMAIN_NET_TYPE_NETWORK
- && STREQ(olddev->data.network.name, newdev->data.network.name)) {
+ if (olddev->type == VIR_DOMAIN_NET_TYPE_NETWORK &&
+ oldType == VIR_DOMAIN_NET_TYPE_DIRECT &&
+ virDomainNetGetActualDirectMode(olddev) == VIR_NETDEV_MACVLAN_MODE_PASSTHRU &&
+ STREQ(olddev->data.network.name, newdev->data.network.name)) {
/* old and new are type='network', and the network name
- * hasn't changed. In this case we *don't* want to get a
- * new port ("actual device") from the network because we
- * can use the old one (since it hasn't changed).
+ * hasn't changed *and* this is a network where each
+ * connection is allocated exclusive use of a VF
+ * device. In this case we *don't* want to get a new port
+ * ("actual device") from the network because attempting
+ * to allocate a new device would also allocate a
+ * new/different VF, causing the update to fail. And
+ * anyway we can use olddev's actualNetDef (since it
+ * hasn't changed).
*
* So instead we just duplicate *the pointer to* the
* actualNetDef from olddev to newdev so that comparisons
--
2.46.1
2
1
[PATCH 0/2] qemu: blockjob: Fix ordering of operations when concluding a block copy
by Peter Krempa 01 Oct '24
by Peter Krempa 01 Oct '24
01 Oct '24
Modify the ordering so that the VM definition stays in a state allowing
us to format a valid XML for the virt-aa-helper.
Peter Krempa (2):
qemu: blockjob: Update 'mirror' of a copy job before removing images
qemu: blockjob: Clean out disk mirror data after concluding the job
src/qemu/qemu_blockjob.c | 30 +++++++++++++++++++++---------
1 file changed, 21 insertions(+), 9 deletions(-)
--
2.46.0
2
3
I have just tagged v10.8.0-rc1 in the repository and pushed signed
tarballs to https://download.libvirt.org/
Please give the release candidate some testing and in case you find a
serious issue which should have a fix in the upcoming release, feel
free to reply to this thread to make sure the issue is more visible.
If you have not done so yet, please update NEWS.rst to document any
significant change you made since the last release.
Thanks,
Jirka
3
3
30 Sep '24
See 12/13 for rationale.
The first patch fixes allocation setting when pre-creating qcow2 images
for migration.
Next few patches fix/improve typed parameter list handling.
Next few refactor handling of 'migrate_disks' parameter and the final
two implement the new feature.
Peter Krempa (13):
qemu: migration: Pre-create QCOW2 images for non-shared storage with 0
allocation
virTypedParamsFilter: Adjust return type and docs
virTypedParamsGetStringList: Refactor and adjust docs
virTypedParamsFilter: Introduce option to filter also by type
virTypedParamsGetStringList: Ensure that returned array is NULL if
there are no matching fields
virTypedParamsGetStringList: Ensure that returned string list is
NULL-terminated
qemuMigrationSrcBeginPhaseBlockDirtyBitmaps: Use
qemuMigrationAnyCopyDisk()
qemu: migration: Don't log 'nmigrate_disks'
qemu: migration: Avoid use of 'nmigration_disks'
qemu: migration: Extract validation of disk target list
qemu: migration: Remove 'nmigration_disks' variable from all places
qemu: Introduce and wire in
'VIR_MIGRATE_PARAM_MIGRATE_DISKS_DETECT_ZEROES'
virsh: Add support for VIR_MIGRATE_PARAM_MIGRATE_DISKS_DETECT_ZEROES
migration parameter
docs/manpages/virsh.rst | 8 +-
include/libvirt/libvirt-domain.h | 13 ++
src/qemu/qemu_driver.c | 55 +++---
src/qemu/qemu_migration.c | 299 +++++++++++++++++--------------
src/qemu/qemu_migration.h | 7 +-
src/util/virtypedparam.c | 72 ++++----
src/util/virtypedparam.h | 3 +-
tests/virtypedparamtest.c | 14 +-
tools/virsh-domain.c | 26 +++
9 files changed, 287 insertions(+), 210 deletions(-)
--
2.46.0
2
19
[PATCH v2 00/18] tcg plugins pre-PR (deprecations, mem apis, contrib plugins)
by Alex Bennée 30 Sep '24
by Alex Bennée 30 Sep '24
30 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)
v2
- fix some nits
- included fix to ips posted as an RFC before
Alex.
Akihiko Odaki (1):
contrib/plugins: Add a plugin to generate basic block vectors
Alex Bennée (9):
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
contrib/plugins: avoid hanging program
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 ++++++++++++++++++
contrib/plugins/ips.c | 5 +
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 | 8 +-
31 files changed, 1768 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.5
5
25
Upcoming libtpms v0.10 and swtpm v0.10 will have TPM profile support that
allows to restrict a TPM's provided set of crypto algorithms and commands
and through which backwards compatibility and migration from newer versions
of libtpms to older ones (up to libtpms v0.9) is supported. For the latter
to work it is necessary that the user chooses the right ('null') profile.
This series adds support for passing a profile choice to swtpm_setup by
setting it in the domain XML using the <profile/> XML node. An optional
attribute 'remove_disabled' can be set in this node and accepts two values:
"check": test a few crypto algorithms (tdes, camellia, unpadded encryption,
and others) for whether they are currently disabled due to FIPS
mode on the host and remove these algorithms in the 'custom'
profile if they are disabled;
"fips-host": do not test but remove all the possibly disabled crypto
algorithms (from list above)
Also extend the documentation but point the user to swtpm and libtpms
documentation for further details.
Follow Deniel's suggestions there's now a PR for swtpm_setup to support
searching for profiles though a configurable local directory, distro
directory and if no profile could be found there (with appended
".json" suffix) it will fall back to try to use a built-in profile by
the provided name: https://github.com/stefanberger/swtpm/pull/918
Stefan
Stefan Berger (8):
conf: Move TPM emulator parameters into own struct
qemu: Pass virQEMUDriverConfig rather than some of its fields
util: Add parsing support for swtpm_setup's cmdarg-profile capability
conf: Define enum virDomainTPMProfileRemoveDisabled
schema: Extend schema for TPM emulator profile node
conf: Add support for profile parameter on TPM emulator in domain XML
docs: Add documentation for the TPM backend profile node
qemu: Extend swtpm_setup command line to set a profile by its name
docs/formatdomain.rst | 30 ++++++++
src/conf/domain_conf.c | 43 +++++++++++
src/conf/domain_conf.h | 35 ++++++---
src/conf/domain_validate.c | 7 ++
src/conf/schemas/domaincommon.rng | 25 ++++++
src/conf/virconftypes.h | 2 +
src/qemu/qemu_tpm.c | 124 +++++++++++++++++-------------
src/util/virtpm.c | 1 +
src/util/virtpm.h | 1 +
tests/testutilsqemu.c | 1 +
10 files changed, 203 insertions(+), 66 deletions(-)
--
2.46.1
3
21
30 Sep '24
Signed-off-by: Laine Stump <laine(a)redhat.com>
---
NEWS.rst | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/NEWS.rst b/NEWS.rst
index beea8221e1..617af915b3 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -19,6 +19,19 @@ v10.8.0 (unreleased)
* **Improvements**
+ * network: make networks with <forward mode='open'/> more useful
+
+ It is now permissable to have a <forward mode='open'> network that
+ has no IP address assigned to the host's port of the bridge. This
+ is the only way to create a libvirt network where guests are
+ unreachable from the host (and vice versa) and also 0 firewall
+ rules are added on the host.
+
+ It is now also possible for a <forward mode='open'/> network to
+ use the "zone" attribute of <bridge> to set the firewalld zone of
+ the bridge interface (normally it would not be set, as is done
+ with other forward modes).
+
* **Bug fixes**
* virsh: Fix script-friedly output of ``virsh list --uuid``
@@ -32,6 +45,18 @@ v10.8.0 (unreleased)
Note that this also broke the ``libvirt-guests`` script. The bug was
introduced in `v10.7.0 (2024-09-02)`_.
+ * network/qemu: fix some cases where device-update of a network
+ interface was failing:
+
+ * If the interface was connected to a libvirt network that was
+ providing a pool of VFs to be used with macvtap passthrough
+ mode, then *any* update to the interface would fail, even
+ changing the link state. Updating (the updateable parts of) a
+ macvtap passthrough interface will now succeed.
+
+ * It previously was not possible to move an interface from a Linux
+ host bridge to an OVS bridge. This (and the opposite direction)
+ now works.
v10.7.0 (2024-09-02)
====================
--
2.46.1
2
4
According to https://marc.info/?l=fedora-devel-list&m=171934833215726
the GlusterFS development effectively ended. Thus mark it as deprecated
in QEMU, so we can remove it in a future release if the project does
not gain momentum again.
Acked-by: Niels de Vos <ndevos(a)redhat.com>
Signed-off-by: Thomas Huth <thuth(a)redhat.com>
---
v2: Mark it as deprecated in the QAPI and print a warning once, too
docs/about/deprecated.rst | 9 +++++++++
qapi/block-core.json | 7 ++++++-
block/gluster.c | 2 ++
3 files changed, 17 insertions(+), 1 deletion(-)
diff --git a/docs/about/deprecated.rst b/docs/about/deprecated.rst
index ed31d4b0b2..b231aa3948 100644
--- a/docs/about/deprecated.rst
+++ b/docs/about/deprecated.rst
@@ -395,6 +395,15 @@ Specifying the iSCSI password in plain text on the command line using the
used instead, to refer to a ``--object secret...`` instance that provides
a password via a file, or encrypted.
+``gluster`` backend (since 9.2)
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+According to https://marc.info/?l=fedora-devel-list&m=171934833215726
+the GlusterFS development effectively ended. Unless the development
+gains momentum again, the QEMU project might remove the gluster backend
+in a future release.
+
+
Character device options
''''''''''''''''''''''''
diff --git a/qapi/block-core.json b/qapi/block-core.json
index 9f6dd59298..cb7cb1c0ed 100644
--- a/qapi/block-core.json
+++ b/qapi/block-core.json
@@ -3187,12 +3187,17 @@
#
# @snapshot-access: Since 7.0
#
+# Features:
+#
+# @deprecated: Member @gluster is deprecated since GlusterFS ceased development
+#
# Since: 2.9
##
{ 'enum': 'BlockdevDriver',
'data': [ 'blkdebug', 'blklogwrites', 'blkreplay', 'blkverify', 'bochs',
'cloop', 'compress', 'copy-before-write', 'copy-on-read', 'dmg',
- 'file', 'snapshot-access', 'ftp', 'ftps', 'gluster',
+ 'file', 'snapshot-access', 'ftp', 'ftps',
+ {'name': 'gluster', 'features': [ 'deprecated' ] },
{'name': 'host_cdrom', 'if': 'HAVE_HOST_BLOCK_DEVICE' },
{'name': 'host_device', 'if': 'HAVE_HOST_BLOCK_DEVICE' },
'http', 'https',
diff --git a/block/gluster.c b/block/gluster.c
index f8b415f381..f03d05251e 100644
--- a/block/gluster.c
+++ b/block/gluster.c
@@ -809,6 +809,8 @@ static int qemu_gluster_open(BlockDriverState *bs, QDict *options,
goto out;
}
+ warn_report_once("'gluster' is deprecated");
+
filename = qemu_opt_get(opts, GLUSTER_OPT_FILENAME);
s->debug = qemu_opt_get_number(opts, GLUSTER_OPT_DEBUG,
--
2.46.0
3
3
30 Sep '24
Signed-off-by: Martin Kletzander <mkletzan(a)redhat.com>
---
Applies on master before Laine's and Peter's updates, but I'll move the items
below the others once they are pushed (or hopefully Jirka if I don't notice
until release).
NEWS.rst | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/NEWS.rst b/NEWS.rst
index beea8221e1c0..472bedd04436 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -19,6 +19,11 @@ v10.8.0 (unreleased)
* **Improvements**
+ * Relax restrictions for memorytune settings
+
+ It should now be possible to use resctrl on AMD CPUs as well as Intel CPUs
+ when the resctrl filesystem is mounted with ``mba_MBps`` option.
+
* **Bug fixes**
* virsh: Fix script-friedly output of ``virsh list --uuid``
@@ -32,6 +37,20 @@ v10.8.0 (unreleased)
Note that this also broke the ``libvirt-guests`` script. The bug was
introduced in `v10.7.0 (2024-09-02)`_.
+ * network: Better cleanup after disappeared networks
+
+ If a network disappeared while virtnetworkd was not running not all clean up
+ was done properly once the daemon was started, especially when only the
+ network interface disappeared. This could have in some cases resulted in
+ the network being shown as inactive, but not being able to start.
+
+ * qemu: Remember memory backing directory for domains
+
+ If ``memory_backing_dir`` is changed during the lifetime of a domain with
+ file backed memory, files in the old directory would not be cleaned up once
+ the domain is shut down. Now the directory that was used during startup is
+ remembered for each running domain.
+
v10.7.0 (2024-09-02)
====================
--
2.46.2
2
1
Re: [PATCH RFC v4 11/17] qemu: block: Support block disk along with
throttle filters
by Edward Arulanadam 30 Sep '24
by Edward Arulanadam 30 Sep '24
30 Sep '24
Dear All,
My sincere apologies on reaching out regarding this change as I know, someone would be reviewing the change and provide review comments as per the community guidelines. Since this change is very critical for us to move forward, may I request for a review and let us know if this is good now.
Thanks and Regards,
Edward Arulanandam
1
0
Signed-off-by: Ján Tomko <jtomko(a)redhat.com>
---
NEWS.rst | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/NEWS.rst b/NEWS.rst
index beea8221e1..0cbc0227db 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -19,6 +19,12 @@ v10.8.0 (unreleased)
* **Improvements**
+ * Switch from YAJL to json-c for JSON parsing and formatting
+
+ The parser and formatter in the libvirt library, as well
+ as the parsers in the nss plugin were rewritten to use json-c
+ instead of YAJL, which is effectively dead upstream.
+
* **Bug fixes**
* virsh: Fix script-friedly output of ``virsh list --uuid``
--
2.46.1
2
1
30 Sep '24
Commit 0caacf47d7b423db9126660fb0382ed56cd077c1 recently
made it so the new path used for qemu-bridge-helper in Debian
would be allowed, but the logic used to actually figure out
the complete path for the helper was not updated accordingly.
https://bugs.debian.org/1082530
Signed-off-by: Andrea Bolognani <abologna(a)redhat.com>
---
src/hypervisor/domain_interface.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/hypervisor/domain_interface.c b/src/hypervisor/domain_interface.c
index 5cdba279fa..5bc698d272 100644
--- a/src/hypervisor/domain_interface.c
+++ b/src/hypervisor/domain_interface.c
@@ -541,6 +541,7 @@ virDomainCreateInBridgePortWithHelper(const char *bridgeHelperName,
unsigned int flags)
{
const char *const bridgeHelperDirs[] = {
+ "/usr/libexec/qemu",
"/usr/libexec",
"/usr/lib/qemu",
"/usr/lib",
--
2.46.1
2
1
[PATCH] news: Mention 'showmount' dependency change and overflow/memleak fixes
by Peter Krempa 30 Sep '24
by Peter Krempa 30 Sep '24
30 Sep '24
Signed-off-by: Peter Krempa <pkrempa(a)redhat.com>
---
Note: applies on top of Laine's NEWS patch.
NEWS.rst | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/NEWS.rst b/NEWS.rst
index 617af915b3..6869136325 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -32,6 +32,13 @@ v10.8.0 (unreleased)
the bridge interface (normally it would not be set, as is done
with other forward modes).
+ * storage: Lessen dependancy on the ``showmount`` program
+
+ Libvirt now automatically detects presence of ``showmount`` during runtime
+ as we do with other helper programs and also the
+ ``daemon-driver-storage-core`` RPM package now doesn't strongly depend on it
+ if the users wish for a more minimal deployment.
+
* **Bug fixes**
* virsh: Fix script-friedly output of ``virsh list --uuid``
@@ -58,6 +65,17 @@ v10.8.0 (unreleased)
host bridge to an OVS bridge. This (and the opposite direction)
now works.
+ * qemu: backup: Fix possible crashes when running monitoring commands during backup job
+
+ The qemu monitor code was fixed to not crash in specific cases when
+ monitoing APIs are called during a backup job.
+
+ * Fix various memleaks and overflows
+
+ Multiple memory leaks and overflows in corner cases were fixed based on
+ upstream issues reported.
+
+
v10.7.0 (2024-09-02)
====================
--
2.46.0
2
1
Here is a draft patch series for amd-iommu device. It will implement
amd-iommu device and its attributes: intremap, device-iotlb, xtsup.
However, its secret device AMDVI-PCI will occupy a PCIe slot and cause
VM failed to start:
Domain XML:
<domain type='kvm'>
...
<video>
<model type='virtio' heads='1' primary='yes'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x0'/>
</video>
<iommu model='amd'/>
...
</domain>
➜ ~ virsh create /tmp/fedora.xml
error: Failed to create domain from /tmp/fedora.xml
error: internal error: QEMU unexpectedly closed the monitor (vm='fedora'): 2024-09-27T07:55:46.132886Z qemu-system-x86_64: -device {"driver":"virtio-vga","id":"video0","max_outputs":1,"bus":"pcie.0","addr":"0x1"}: PCI: slot 1 function 0 not available for virtio-vga, in use by AMDVI-PCI,id=(null)
I'll update the series when QEMU fixes the blocker.
Han Han (5):
qemu_capabilities: Introduce QEMU_CAPS_AMD_IOMMU
qemu_capabilities: Introduce QEMU_CAPS_AMD_IOMMU_INTREMAP
qemu_capabilities: Introduce QEMU_CAPS_AMD_IOMMU_DEVICE_IOTLB
qemu_capabilities: Introduce QEMU_CAPS_AMD_IOMMU_XTSUP
qemu: Add suppport for amd-iommu device and xtsup attrib
docs/formatdomain.rst | 20 +++-
src/conf/domain_conf.c | 16 +++
src/conf/domain_conf.h | 2 +
src/conf/domain_validate.c | 39 +++++++-
src/conf/schemas/domaincommon.rng | 6 ++
src/qemu/qemu_capabilities.c | 16 +++
src/qemu/qemu_capabilities.h | 6 ++
src/qemu/qemu_command.c | 15 +++
src/qemu/qemu_domain_address.c | 2 +
src/qemu/qemu_validate.c | 1 +
.../caps_5.2.0_x86_64.replies | 90 +++++++++++------
.../caps_5.2.0_x86_64.xml | 3 +
.../caps_6.0.0_x86_64.replies | 90 +++++++++++------
.../caps_6.0.0_x86_64.xml | 3 +
.../caps_6.1.0_x86_64.replies | 90 +++++++++++------
.../caps_6.1.0_x86_64.xml | 3 +
.../caps_6.2.0_x86_64.xml | 3 +
.../caps_7.0.0_x86_64.replies | 94 ++++++++++++------
.../caps_7.0.0_x86_64.xml | 3 +
.../caps_7.1.0_x86_64.replies | 94 ++++++++++++------
.../caps_7.1.0_x86_64.xml | 3 +
.../caps_7.2.0_x86_64+hvf.replies | 94 ++++++++++++------
.../caps_7.2.0_x86_64+hvf.xml | 3 +
.../caps_7.2.0_x86_64.replies | 94 ++++++++++++------
.../caps_7.2.0_x86_64.xml | 3 +
.../caps_8.0.0_x86_64.replies | 94 ++++++++++++------
.../caps_8.0.0_x86_64.xml | 3 +
.../caps_8.1.0_x86_64.replies | 90 +++++++++++------
.../caps_8.1.0_x86_64.xml | 3 +
.../caps_8.2.0_x86_64.replies | 86 ++++++++++------
.../caps_8.2.0_x86_64.xml | 3 +
.../caps_9.0.0_x86_64.replies | 99 +++++++++++++------
.../caps_9.0.0_x86_64.xml | 4 +
.../caps_9.1.0_x86_64.replies | 79 ++++++++++-----
.../caps_9.1.0_x86_64.xml | 4 +
tests/qemuxmlconfdata/amd-iommu-aw-bits.err | 1 +
tests/qemuxmlconfdata/amd-iommu-aw-bits.xml | 32 ++++++
.../amd-iommu-caching-mode.err | 1 +
.../amd-iommu-caching-mode.xml | 32 ++++++
.../amd-iommu-device-iotlb.x86_64-latest.args | 34 +++++++
.../amd-iommu-device-iotlb.xml | 37 +++++++
.../amd-iommu-dma-translation.err | 1 +
.../amd-iommu-dma-translation.xml | 32 ++++++
tests/qemuxmlconfdata/amd-iommu-eim.err | 1 +
tests/qemuxmlconfdata/amd-iommu-eim.xml | 32 ++++++
.../amd-iommu-xtsup.x86_64-latest.args | 34 +++++++
tests/qemuxmlconfdata/amd-iommu-xtsup.xml | 32 ++++++
.../amd-iommu.x86_64-latest.args | 34 +++++++
tests/qemuxmlconfdata/amd-iommu.xml | 32 ++++++
tests/qemuxmlconfdata/intel-iommu-xtsup.err | 1 +
tests/qemuxmlconfdata/intel-iommu-xtsup.xml | 38 +++++++
tests/qemuxmlconftest.c | 8 ++
52 files changed, 1275 insertions(+), 365 deletions(-)
create mode 100644 tests/qemuxmlconfdata/amd-iommu-aw-bits.err
create mode 100644 tests/qemuxmlconfdata/amd-iommu-aw-bits.xml
create mode 100644 tests/qemuxmlconfdata/amd-iommu-caching-mode.err
create mode 100644 tests/qemuxmlconfdata/amd-iommu-caching-mode.xml
create mode 100644 tests/qemuxmlconfdata/amd-iommu-device-iotlb.x86_64-latest.args
create mode 100644 tests/qemuxmlconfdata/amd-iommu-device-iotlb.xml
create mode 100644 tests/qemuxmlconfdata/amd-iommu-dma-translation.err
create mode 100644 tests/qemuxmlconfdata/amd-iommu-dma-translation.xml
create mode 100644 tests/qemuxmlconfdata/amd-iommu-eim.err
create mode 100644 tests/qemuxmlconfdata/amd-iommu-eim.xml
create mode 100644 tests/qemuxmlconfdata/amd-iommu-xtsup.x86_64-latest.args
create mode 100644 tests/qemuxmlconfdata/amd-iommu-xtsup.xml
create mode 100644 tests/qemuxmlconfdata/amd-iommu.x86_64-latest.args
create mode 100644 tests/qemuxmlconfdata/amd-iommu.xml
create mode 100644 tests/qemuxmlconfdata/intel-iommu-xtsup.err
create mode 100644 tests/qemuxmlconfdata/intel-iommu-xtsup.xml
--
2.46.2
3
10
Welcome to the first post KVM forum series. We have:
- fix from Ilya for microblaze atomics
- Pierrick's tsan updates
- I've added my testing and gdbstub trees to MAINTAINERS
- enabled a very basic aarch64_be-linux-user test
- fixed the missing gdb XML fails that cause aarch64_be-linux-user to assert
- finally I've made the mips64el cross compiler bookworm and allow_fail
Alex Bennée (6):
testing: bump mips64el cross to bookworm and allow to fail
tests/docker: add NOFETCH env variable for testing
MAINTAINERS: mention my testing/next tree
MAINTAINERS: mention my gdbstub/next tree
config/targets: update aarch64_be-linux-user gdb XML list
tests/tcg: enable basic testing for aarch64_be-linux-user
Ilya Leoshkevich (1):
tests/docker: Fix microblaze atomics
Pierrick Bouvier (3):
meson: hide tsan related warnings
target/i386: fix build warning (gcc-12 -fsanitize=thread)
docs/devel: update tsan build documentation
MAINTAINERS | 2 ++
docs/devel/testing/main.rst | 26 +++++++++++---
configure | 5 +++
configs/targets/aarch64_be-linux-user.mak | 2 +-
meson.build | 10 +++++-
target/i386/kvm/kvm.c | 4 +--
tests/tcg/aarch64_be/hello.c | 35 +++++++++++++++++++
.gitlab-ci.d/container-cross.yml | 3 ++
tests/docker/Makefile.include | 5 +--
.../build-toolchain.sh | 8 +++++
.../dockerfiles/debian-mips64el-cross.docker | 10 +++---
.../dockerfiles/debian-toolchain.docker | 7 ++++
tests/lcitool/refresh | 2 +-
tests/tcg/Makefile.target | 7 +++-
tests/tcg/aarch64_be/Makefile.target | 17 +++++++++
15 files changed, 125 insertions(+), 18 deletions(-)
create mode 100644 tests/tcg/aarch64_be/hello.c
create mode 100644 tests/tcg/aarch64_be/Makefile.target
--
2.39.5
2
11
Fedora has decided to separate dtrace out of the systemtap-sdt-devel
package: https://fedoraproject.org/wiki/Changes/Separate_dtrace_package
Similarly, these are split in OpenSUSE Tumbleweed, however in a
backward-compatbile way:
https://build.opensuse.org/package/show/openSUSE:Factory/systemtap
Require the new 'systemtap' package mapping, as well as the old
'dtrace'.
Signed-off-by: Ján Tomko <jtomko(a)redhat.com>
---
v2: use 'systemtap' instead of 'systemtap-sdt' to match what was finally
merged in libvirt-ci
ci/buildenv/fedora-rawhide.sh | 1 +
ci/buildenv/opensuse-tumbleweed.sh | 3 ++-
ci/containers/fedora-rawhide.Dockerfile | 1 +
ci/containers/opensuse-tumbleweed.Dockerfile | 3 ++-
ci/lcitool/projects/libvirt.yml | 1 +
5 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/ci/buildenv/fedora-rawhide.sh b/ci/buildenv/fedora-rawhide.sh
index f89a87ad63..1706ec27f4 100644
--- a/ci/buildenv/fedora-rawhide.sh
+++ b/ci/buildenv/fedora-rawhide.sh
@@ -82,6 +82,7 @@ function install_buildenv() {
systemd-devel \
systemd-rpm-macros \
systemtap-sdt-devel \
+ systemtap-sdt-dtrace \
wireshark-devel \
xen-devel \
yajl-devel
diff --git a/ci/buildenv/opensuse-tumbleweed.sh b/ci/buildenv/opensuse-tumbleweed.sh
index ac566d349f..5117ea4ddb 100644
--- a/ci/buildenv/opensuse-tumbleweed.sh
+++ b/ci/buildenv/opensuse-tumbleweed.sh
@@ -81,7 +81,8 @@ function install_buildenv() {
sanlock-devel \
sed \
systemd-rpm-macros \
- systemtap-sdt-devel \
+ systemtap-dtrace \
+ systemtap-headers \
wireshark-devel \
xen-devel
rm -f /usr/lib*/python3*/EXTERNALLY-MANAGED
diff --git a/ci/containers/fedora-rawhide.Dockerfile b/ci/containers/fedora-rawhide.Dockerfile
index 6f06843985..ef91b6acc7 100644
--- a/ci/containers/fedora-rawhide.Dockerfile
+++ b/ci/containers/fedora-rawhide.Dockerfile
@@ -93,6 +93,7 @@ exec "$@"\n' > /usr/bin/nosync && \
systemd-devel \
systemd-rpm-macros \
systemtap-sdt-devel \
+ systemtap-sdt-dtrace \
wireshark-devel \
xen-devel \
yajl-devel && \
diff --git a/ci/containers/opensuse-tumbleweed.Dockerfile b/ci/containers/opensuse-tumbleweed.Dockerfile
index 2b7cdb4af5..6a992e2039 100644
--- a/ci/containers/opensuse-tumbleweed.Dockerfile
+++ b/ci/containers/opensuse-tumbleweed.Dockerfile
@@ -82,7 +82,8 @@ RUN zypper dist-upgrade -y && \
sanlock-devel \
sed \
systemd-rpm-macros \
- systemtap-sdt-devel \
+ systemtap-dtrace \
+ systemtap-headers \
wireshark-devel \
xen-devel && \
zypper clean --all && \
diff --git a/ci/lcitool/projects/libvirt.yml b/ci/lcitool/projects/libvirt.yml
index 5e0bd66958..cb501f5c85 100644
--- a/ci/lcitool/projects/libvirt.yml
+++ b/ci/lcitool/projects/libvirt.yml
@@ -75,6 +75,7 @@ packages:
- sed
- showmount
- systemd-rpm-macros
+ - systemtap
- tc
- wireshark
- xen
--
2.46.1
2
1
The model was defined with two CPU features that cannot be explicitly
configured in QEMU (it knows the MSR bits, but there's no name
associated with them). The features should have never existed in the CPU
map. While removing them from the list of features and existing CPU
models is not trivial (to avoid compatibility issues), we can at least
fix the SierraForest CPU model added in this release cycle.
The rest will be handled later in a separate series.
Signed-off-by: Jiri Denemark <jdenemar(a)redhat.com>
---
src/cpu_map/x86_SierraForest.xml | 2 --
1 file changed, 2 deletions(-)
diff --git a/src/cpu_map/x86_SierraForest.xml b/src/cpu_map/x86_SierraForest.xml
index 3fc3049be1..caa6956e94 100644
--- a/src/cpu_map/x86_SierraForest.xml
+++ b/src/cpu_map/x86_SierraForest.xml
@@ -108,7 +108,6 @@
<feature name='vmx-ept-1gb'/>
<feature name='vmx-ept-2mb'/>
<feature name='vmx-ept-execonly'/>
- <feature name='vmx-ept-wb'/>
<feature name='vmx-eptad'/>
<feature name='vmx-eptp-switching'/>
<feature name='vmx-exit-ack-intr'/>
@@ -131,7 +130,6 @@
<feature name='vmx-invvpid'/>
<feature name='vmx-invvpid-all-context'/>
<feature name='vmx-invvpid-single-addr'/>
- <feature name='vmx-invvpid-single-context'/>
<feature name='vmx-invvpid-single-context-noglobals'/>
<feature name='vmx-io-bitmap'/>
<feature name='vmx-io-exit'/>
--
2.46.1
2
1
The attribute dma_translation is only supported by intel-iommu device.
Report an error when it is used for the other iommu devices.
Fixes: 6866f958c1
Signed-off-by: Han Han <hhan(a)redhat.com>
---
src/conf/domain_validate.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/conf/domain_validate.c b/src/conf/domain_validate.c
index eddb4a5e74..b8ae9ed79d 100644
--- a/src/conf/domain_validate.c
+++ b/src/conf/domain_validate.c
@@ -2980,7 +2980,8 @@ virDomainIOMMUDefValidate(const virDomainIOMMUDef *iommu)
iommu->caching_mode != VIR_TRISTATE_SWITCH_ABSENT ||
iommu->eim != VIR_TRISTATE_SWITCH_ABSENT ||
iommu->iotlb != VIR_TRISTATE_SWITCH_ABSENT ||
- iommu->aw_bits != 0) {
+ iommu->aw_bits != 0 ||
+ iommu->dma_translation != VIR_TRISTATE_SWITCH_ABSENT) {
virReportError(VIR_ERR_XML_ERROR,
_("iommu model '%1$s' doesn't support additional attributes"),
virDomainIOMMUModelTypeToString(iommu->model));
--
2.46.1
1
0
According to https://marc.info/?l=fedora-devel-list&m=171934833215726
the GlusterFS development effectively ended. Thus mark it as deprecated
in QEMU, so we can remove it in a future release if the project does
not gain momentum again.
Signed-off-by: Thomas Huth <thuth(a)redhat.com>
---
docs/about/deprecated.rst | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/docs/about/deprecated.rst b/docs/about/deprecated.rst
index ed31d4b0b2..b231aa3948 100644
--- a/docs/about/deprecated.rst
+++ b/docs/about/deprecated.rst
@@ -395,6 +395,15 @@ Specifying the iSCSI password in plain text on the command line using the
used instead, to refer to a ``--object secret...`` instance that provides
a password via a file, or encrypted.
+``gluster`` backend (since 9.2)
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+According to https://marc.info/?l=fedora-devel-list&m=171934833215726
+the GlusterFS development effectively ended. Unless the development
+gains momentum again, the QEMU project might remove the gluster backend
+in a future release.
+
+
Character device options
''''''''''''''''''''''''
--
2.46.0
3
3
Upcoming libtpms v0.10 and swtpm v0.10 will have TPM profile support that
allows to restrict a TPM's provided set of crypto algorithms and commands
and through which backwards compatibility and migration from newer versions
of libtpms to older ones (up to libtpms v0.9) is supported. For the latter
to work it is necessary that the user chooses the right profile.
This series adds support for passing a profile choice to swtpm_setup by
setting it in the domain XML using the <profile/> XML node. An optional
attribute 'remove_disabled' can be set in this node and accepts two values:
"check": test a few crypto algorithms (tdes, camellia, unpadded encryption,
and others) for whether they are currently disabled due to FIPS
mode on the host and remove these algorithms in the 'custom'
profile if they are disabled;
"fips-host": do not test but remove all potentially disabled crypto
algorithms
Also extend the documentation but point the user to swtpm and libtpms
documentation for further details.
Stefan
Stefan Berger (6):
util: Add parsing support for swtpm_setup's cmdarg-profile capability
conf: Define enum virDomainTPMProfileRemoveDisabled
schema: Extend schema for TPM emulator profile node
conf: Add support for profile parameter on TPM emulator in domain XML
docs: Add documentation for the TPM backend profile node
qemu: Run swtpm_setup with --profile option if profile given
docs/formatdomain.rst | 20 ++++++++++++++++
src/conf/domain_conf.c | 39 +++++++++++++++++++++++++++++++
src/conf/domain_conf.h | 11 +++++++++
src/conf/domain_validate.c | 7 ++++++
src/conf/schemas/basictypes.rng | 6 +++++
src/conf/schemas/domaincommon.rng | 17 ++++++++++++++
src/qemu/qemu_tpm.c | 26 +++++++++++++++++++--
src/util/virtpm.c | 1 +
src/util/virtpm.h | 1 +
tests/testutilsqemu.c | 1 +
10 files changed, 127 insertions(+), 2 deletions(-)
--
2.46.0
4
19
openssh 8.4p1 released in Sep 2020 added a feature to force use
of SSH_ASKPASS
https://man.openbsd.org/ssh.1#SSH_ASKPASS_REQUIRE
Don't strip it from the environment
Signed-off-by: Cole Robinson <crobinso(a)redhat.com>
---
src/rpc/virnetsocket.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/rpc/virnetsocket.c b/src/rpc/virnetsocket.c
index 79bf8e511a..e8fc2d5f7d 100644
--- a/src/rpc/virnetsocket.c
+++ b/src/rpc/virnetsocket.c
@@ -850,6 +850,7 @@ int virNetSocketNewConnectSSH(const char *nodename,
virCommandAddEnvPass(cmd, "KRB5CCNAME");
virCommandAddEnvPass(cmd, "SSH_AUTH_SOCK");
virCommandAddEnvPass(cmd, "SSH_ASKPASS");
+ virCommandAddEnvPass(cmd, "SSH_ASKPASS_REQUIRE");
virCommandAddEnvPass(cmd, "OPENSSL_CONF");
virCommandAddEnvPass(cmd, "DISPLAY");
virCommandAddEnvPass(cmd, "XAUTHORITY");
--
2.46.0
2
1
Signed-off-by: Ján Tomko <jtomko(a)redhat.com>
---
ci/buildenv/fedora-rawhide.sh | 2 +-
ci/buildenv/opensuse-tumbleweed.sh | 2 +-
ci/containers/fedora-rawhide.Dockerfile | 2 +-
ci/containers/opensuse-tumbleweed.Dockerfile | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/ci/buildenv/fedora-rawhide.sh b/ci/buildenv/fedora-rawhide.sh
index f89a87ad63..17ed6fe7a4 100644
--- a/ci/buildenv/fedora-rawhide.sh
+++ b/ci/buildenv/fedora-rawhide.sh
@@ -81,7 +81,7 @@ function install_buildenv() {
sed \
systemd-devel \
systemd-rpm-macros \
- systemtap-sdt-devel \
+ systemtap-sdt-dtrace \
wireshark-devel \
xen-devel \
yajl-devel
diff --git a/ci/buildenv/opensuse-tumbleweed.sh b/ci/buildenv/opensuse-tumbleweed.sh
index ac566d349f..59a786efac 100644
--- a/ci/buildenv/opensuse-tumbleweed.sh
+++ b/ci/buildenv/opensuse-tumbleweed.sh
@@ -81,7 +81,7 @@ function install_buildenv() {
sanlock-devel \
sed \
systemd-rpm-macros \
- systemtap-sdt-devel \
+ systemtap-dtrace \
wireshark-devel \
xen-devel
rm -f /usr/lib*/python3*/EXTERNALLY-MANAGED
diff --git a/ci/containers/fedora-rawhide.Dockerfile b/ci/containers/fedora-rawhide.Dockerfile
index 6f06843985..90f2372663 100644
--- a/ci/containers/fedora-rawhide.Dockerfile
+++ b/ci/containers/fedora-rawhide.Dockerfile
@@ -92,7 +92,7 @@ exec "$@"\n' > /usr/bin/nosync && \
sed \
systemd-devel \
systemd-rpm-macros \
- systemtap-sdt-devel \
+ systemtap-sdt-dtrace \
wireshark-devel \
xen-devel \
yajl-devel && \
diff --git a/ci/containers/opensuse-tumbleweed.Dockerfile b/ci/containers/opensuse-tumbleweed.Dockerfile
index 2b7cdb4af5..5d0bd77113 100644
--- a/ci/containers/opensuse-tumbleweed.Dockerfile
+++ b/ci/containers/opensuse-tumbleweed.Dockerfile
@@ -82,7 +82,7 @@ RUN zypper dist-upgrade -y && \
sanlock-devel \
sed \
systemd-rpm-macros \
- systemtap-sdt-devel \
+ systemtap-dtrace \
wireshark-devel \
xen-devel && \
zypper clean --all && \
--
2.46.1
2
2
*** BLURB HERE ***
Michal Prívozník (2):
meson: Restore alphabetical order of reported libraries
meson: Sort values reported in summary()
meson.build | 58 ++++++++++++++++++++++++++---------------------------
1 file changed, 29 insertions(+), 29 deletions(-)
--
2.45.2
2
3
[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