[PATCH] chardev: introduce 'reconnect-ms' and deprecate 'reconnect'
by Daniil Tatianin
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
7 months, 3 weeks
[PATCH] Revert "vircommand: Parse /dev/fd on *BSD-like systems when looking for opened FDs"
by Michal Privoznik
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-re...
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
7 months, 3 weeks
[PATCH] resctrl: Do not rewrite default MB values for new allocations
by Martin Kletzander
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
7 months, 3 weeks
[PATCH 00/17] tcg plugins pre-PR (deprecations, mem apis, contrib plugins)
by Alex Bennée
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
7 months, 3 weeks
[PATCH 00/10] Many many resctrl fixes
by Martin Kletzander
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
7 months, 4 weeks
[PATCH 0/4] vircommand: Make FD closing more robust on __APPLE__
by Michal Privoznik
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
7 months, 4 weeks
[PATCH v1] chardev: introduce 'reconnect-ms' and deprecate 'reconnect'
by Daniil Tatianin
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
7 months, 4 weeks
[PATCH V2] libxl: Reject VM config referencing nwfilters
by Jim Fehlig
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/QD...
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
7 months, 4 weeks
[PATCH 0/2] Reject Xen VM config containing nwfilter references
by Jim Fehlig
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
7 months, 4 weeks
[PATCH v2] documentation: untrue statement in GetVersion() method description
by Stepan Zobal
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
7 months, 4 weeks