(\.p[yl]$$|\.spec\.in$$|^docs/|^(src/util/virfile\.c|src/libvirt-stream\.c|tests/vir.+mock\.c)$$)
exclude_file_name_regexp--sc_prohibit_empty_lines_at_EOF = \
- (^tests/(qemuhelp|nodeinfo|virpcitest)data/|\.diff|tests/virconfdata/no-newline\.conf$$)
+ (^tests/(qemuhelp|virhostcpu|virpcitest)data/|\.diff|tests/virconfdata/no-newline\.conf$$)
_src2=src/(util/vircommand|libvirt|lxc/lxc_controller|locking/lock_daemon|logging/log_daemon)
exclude_file_name_regexp--sc_prohibit_fork_wrappers = \
^(examples/|tools/virsh-edit\.c$$)
exclude_file_name_regexp--sc_trailing_blank = \
- /qemuhelpdata/|/sysinfodata/.*\.data|/nodeinfodata/.*\.cpuinfo$$
+ /qemuhelpdata/|/sysinfodata/.*\.data|/virhostcpudata/.*\.cpuinfo$$
exclude_file_name_regexp--sc_unmarked_diagnostics = \
^(docs/apibuild.py|tests/virt-aa-helper-test)$$
^src/(vbox/vbox_CAPI.*.h|esx/esx_vi.(c|h)|esx/esx_storage_backend_iscsi.c)$$
exclude_file_name_regexp--sc_prohibit_empty_first_line = \
- ^(README|daemon/THREADS\.txt|src/esx/README|docs/library.xen|tests/(vmwarever|nodeinfo)data/.*)$$
+ ^(README|daemon/THREADS\.txt|src/esx/README|docs/library.xen|tests/(vmwarever|virhostcpu)data/.*)$$
exclude_file_name_regexp--sc_prohibit_useless_translation = \
^tests/virpolkittest.c
src/util/virfirewall.c
src/util/virhash.c
src/util/virhook.c
+src/util/virhostcpu.c
src/util/virhostdev.c
src/util/viridentity.c
src/util/virinitctl.c
util/virhash.c util/virhash.h \
util/virhashcode.c util/virhashcode.h \
util/virhook.c util/virhook.h \
+ util/virhostcpu.c util/virhostcpu.h util/virhostcpupriv.h \
util/virhostdev.c util/virhostdev.h \
util/viridentity.c util/viridentity.h \
util/virinitctl.c util/virinitctl.h \
<$(srcdir)/util/keymaps.csv >util/virkeymaps.h
# Internal generic driver infrastructure
-NODE_INFO_SOURCES = nodeinfo.h nodeinfo.c nodeinfopriv.h
+NODE_INFO_SOURCES = nodeinfo.h nodeinfo.c
DATATYPES_SOURCES = datatypes.h datatypes.c
DRIVER_SOURCES = \
driver.c driver.h \
# Linux-specific private symbols.
#
-# nodeinfo.h
+# util/virhostcpu.h
virHostCPUGetInfoPopulateLinux;
virHostCPUGetStatsLinux;
virHostCPUSetSysFSSystemPathLinux;
#include "virfile.h"
#include "virpidfile.h"
#include "vircommand.h"
-#include "nodeinfo.h"
+#include "virhostcpu.h"
#include "virrandom.h"
#include "virprocess.h"
#include "virnuma.h"
#include "virnetdevveth.h"
#include "virnetdevopenvswitch.h"
#include "nodeinfo.h"
+#include "virhostcpu.h"
#include "viruuid.h"
#include "virstats.h"
#include "virhook.h"
# include <sys/resource.h>
#endif
-#include "c-ctype.h"
#include "viralloc.h"
-#include "nodeinfopriv.h"
#include "nodeinfo.h"
+#include "virhostcpu.h"
#include "physmem.h"
#include "virerror.h"
#include "count-one-bits.h"
VIR_LOG_INIT("nodeinfo");
-#if defined(__FreeBSD__) || defined(__APPLE__)
-static int
-virHostCPUGetCountAppleFreeBSD(void)
-{
- int ncpu_mib[2] = { CTL_HW, HW_NCPU };
- unsigned long ncpu;
- size_t ncpu_len = sizeof(ncpu);
-
- if (sysctl(ncpu_mib, 2, &ncpu, &ncpu_len, NULL, 0) == -1) {
- virReportSystemError(errno, "%s", _("Cannot obtain CPU count"));
- return -1;
- }
-
- return ncpu;
-}
-#endif /* defined(__FreeBSD__) || defined(__APPLE__) */
-
#ifdef __FreeBSD__
-# define BSD_CPU_STATS_ALL 4
# define BSD_MEMORY_STATS_ALL 4
-# define TICK_TO_NSEC (1000ull * 1000ull * 1000ull / (stathz ? stathz : hz))
-
-static int
-virHostCPUGetStatsFreebsd(int cpuNum,
- virNodeCPUStatsPtr params,
- int *nparams)
-{
- const char *sysctl_name;
- long *cpu_times;
- struct clockinfo clkinfo;
- size_t i, j, cpu_times_size, clkinfo_size;
- int cpu_times_num, offset, hz, stathz, ret = -1;
- struct field_cpu_map {
- const char *field;
- int idx[CPUSTATES];
- } cpu_map[] = {
- {VIR_NODE_CPU_STATS_KERNEL, {CP_SYS}},
- {VIR_NODE_CPU_STATS_USER, {CP_USER, CP_NICE}},
- {VIR_NODE_CPU_STATS_IDLE, {CP_IDLE}},
- {VIR_NODE_CPU_STATS_INTR, {CP_INTR}},
- {NULL, {0}}
- };
-
- if ((*nparams) == 0) {
- *nparams = BSD_CPU_STATS_ALL;
- return 0;
- }
-
- if ((*nparams) != BSD_CPU_STATS_ALL) {
- virReportInvalidArg(*nparams,
- _("nparams in %s must be equal to %d"),
- __FUNCTION__, BSD_CPU_STATS_ALL);
- return -1;
- }
-
- clkinfo_size = sizeof(clkinfo);
- if (sysctlbyname("kern.clockrate", &clkinfo, &clkinfo_size, NULL, 0) < 0) {
- virReportSystemError(errno,
- _("sysctl failed for '%s'"),
- "kern.clockrate");
- return -1;
- }
-
- stathz = clkinfo.stathz;
- hz = clkinfo.hz;
-
- if (cpuNum == VIR_NODE_CPU_STATS_ALL_CPUS) {
- sysctl_name = "kern.cp_time";
- cpu_times_num = 1;
- offset = 0;
- } else {
- sysctl_name = "kern.cp_times";
- cpu_times_num = virHostCPUGetCountAppleFreeBSD();
-
- if (cpuNum >= cpu_times_num) {
- virReportInvalidArg(cpuNum,
- _("Invalid cpuNum in %s"),
- __FUNCTION__);
- return -1;
- }
-
- offset = cpu_times_num * CPUSTATES;
- }
-
- cpu_times_size = sizeof(long) * cpu_times_num * CPUSTATES;
-
- if (VIR_ALLOC_N(cpu_times, cpu_times_num * CPUSTATES) < 0)
- goto cleanup;
-
- if (sysctlbyname(sysctl_name, cpu_times, &cpu_times_size, NULL, 0) < 0) {
- virReportSystemError(errno,
- _("sysctl failed for '%s'"),
- sysctl_name);
- goto cleanup;
- }
-
- for (i = 0; cpu_map[i].field != NULL; i++) {
- virNodeCPUStatsPtr param = ¶ms[i];
-
- if (virStrcpyStatic(param->field, cpu_map[i].field) == NULL) {
- virReportError(VIR_ERR_INTERNAL_ERROR,
- _("Field '%s' too long for destination"),
- cpu_map[i].field);
- goto cleanup;
- }
-
- param->value = 0;
- for (j = 0; j < ARRAY_CARDINALITY(cpu_map[i].idx); j++)
- param->value += cpu_times[offset + cpu_map[i].idx[j]] * TICK_TO_NSEC;
- }
-
- ret = 0;
-
- cleanup:
- VIR_FREE(cpu_times);
-
- return ret;
-}
-
static int
virHostMemGetStatsFreeBSD(virNodeMemoryStatsPtr params,
int *nparams)
#ifdef __linux__
# define SYSFS_SYSTEM_PATH "/sys/devices/system"
-# define CPUINFO_PATH "/proc/cpuinfo"
-# define PROCSTAT_PATH "/proc/stat"
# define MEMINFO_PATH "/proc/meminfo"
# define SYSFS_MEMORY_SHARED_PATH "/sys/kernel/mm/ksm"
# define SYSFS_THREAD_SIBLINGS_LIST_LENGTH_MAX 8192
-# define LINUX_NB_CPU_STATS 4
# define LINUX_NB_MEMORY_STATS_ALL 4
# define LINUX_NB_MEMORY_STATS_CELL 2
-static const char *sysfs_system_path = SYSFS_SYSTEM_PATH;
-
-void virHostCPUSetSysFSSystemPathLinux(const char *path)
-{
- if (path)
- sysfs_system_path = path;
- else
- sysfs_system_path = SYSFS_SYSTEM_PATH;
-}
-
/* Return the positive decimal contents of the given
* DIR/cpu%u/FILE, or -1 on error. If DEFAULT_VALUE is non-negative
* and the file could not be found, return that instead of an error;
return value;
}
-static unsigned long
-virHostCPUCountThreadSiblings(const char *dir, unsigned int cpu)
-{
- unsigned long ret = 0;
- char *path;
- char *str = NULL;
- size_t i;
-
- if (virAsprintf(&path, "%s/cpu%u/topology/thread_siblings",
- dir, cpu) < 0)
- return 0;
-
- if (!virFileExists(path)) {
- /* If file doesn't exist, then pretend our only
- * sibling is ourself */
- ret = 1;
- goto cleanup;
- }
-
- if (virFileReadAll(path, SYSFS_THREAD_SIBLINGS_LIST_LENGTH_MAX, &str) < 0)
- goto cleanup;
-
- for (i = 0; str[i] != '\0'; i++) {
- if (c_isxdigit(str[i]))
- ret += count_one_bits(virHexToBin(str[i]));
- }
-
- cleanup:
- VIR_FREE(str);
- VIR_FREE(path);
- return ret;
-}
-
-static int
-virHostCPUParseSocket(const char *dir,
- virArch arch,
- unsigned int cpu)
-{
- int ret = virNodeGetCpuValue(dir, cpu, "topology/physical_package_id", 0);
-
- if (ARCH_IS_ARM(arch) || ARCH_IS_PPC(arch) || ARCH_IS_S390(arch)) {
- /* arm, ppc and s390(x) has -1 */
- if (ret < 0)
- ret = 0;
- }
-
- return ret;
-}
-
-/* parses a node entry, returning number of processors in the node and
- * filling arguments */
-static int
-ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(3)
-ATTRIBUTE_NONNULL(4) ATTRIBUTE_NONNULL(6)
-ATTRIBUTE_NONNULL(7) ATTRIBUTE_NONNULL(8)
-ATTRIBUTE_NONNULL(9)
-virHostCPUParseNode(const char *node,
- virArch arch,
- virBitmapPtr present_cpus_map,
- virBitmapPtr online_cpus_map,
- int threads_per_subcore,
- int *sockets,
- int *cores,
- int *threads,
- int *offline)
-{
- /* Biggest value we can expect to be used as either socket id
- * or core id. Bitmaps will need to be sized accordingly */
- const int ID_MAX = 4095;
- int ret = -1;
- int processors = 0;
- DIR *cpudir = NULL;
- struct dirent *cpudirent = NULL;
- virBitmapPtr node_cpus_map = NULL;
- virBitmapPtr sockets_map = NULL;
- virBitmapPtr *cores_maps = NULL;
- int npresent_cpus = virBitmapSize(present_cpus_map);
- int sock_max = 0;
- int sock;
- int core;
- size_t i;
- int siblings;
- unsigned int cpu;
- int direrr;
-
- *threads = 0;
- *cores = 0;
- *sockets = 0;
-
- if (!(cpudir = opendir(node))) {
- virReportSystemError(errno, _("cannot opendir %s"), node);
- goto cleanup;
- }
-
- /* Keep track of the CPUs that belong to the current node */
- if (!(node_cpus_map = virBitmapNew(npresent_cpus)))
- goto cleanup;
-
- /* enumerate sockets in the node */
- if (!(sockets_map = virBitmapNew(ID_MAX + 1)))
- goto cleanup;
-
- while ((direrr = virDirRead(cpudir, &cpudirent, node)) > 0) {
- if (sscanf(cpudirent->d_name, "cpu%u", &cpu) != 1)
- continue;
-
- if (!virBitmapIsBitSet(present_cpus_map, cpu))
- continue;
-
- /* Mark this CPU as part of the current node */
- if (virBitmapSetBit(node_cpus_map, cpu) < 0)
- goto cleanup;
-
- if (!virBitmapIsBitSet(online_cpus_map, cpu))
- continue;
-
- /* Parse socket */
- if ((sock = virHostCPUParseSocket(node, arch, cpu)) < 0)
- goto cleanup;
- if (sock > ID_MAX) {
- virReportError(VIR_ERR_INTERNAL_ERROR,
- _("Socket %d can't be handled (max socket is %d)"),
- sock, ID_MAX);
- goto cleanup;
- }
-
- if (virBitmapSetBit(sockets_map, sock) < 0)
- goto cleanup;
-
- if (sock > sock_max)
- sock_max = sock;
- }
-
- if (direrr < 0)
- goto cleanup;
-
- sock_max++;
-
- /* allocate cores maps for each socket */
- if (VIR_ALLOC_N(cores_maps, sock_max) < 0)
- goto cleanup;
-
- for (i = 0; i < sock_max; i++)
- if (!(cores_maps[i] = virBitmapNew(ID_MAX + 1)))
- goto cleanup;
-
- /* Iterate over all CPUs in the node, in ascending order */
- for (cpu = 0; cpu < npresent_cpus; cpu++) {
-
- /* Skip CPUs that are not part of the current node */
- if (!virBitmapIsBitSet(node_cpus_map, cpu))
- continue;
-
- if (!virBitmapIsBitSet(online_cpus_map, cpu)) {
- if (threads_per_subcore > 0 &&
- cpu % threads_per_subcore != 0 &&
- virBitmapIsBitSet(online_cpus_map,
- cpu - (cpu % threads_per_subcore))) {
- /* Secondary offline threads are counted as online when
- * subcores are in use and the corresponding primary
- * thread is online */
- processors++;
- } else {
- /* But they are counted as offline otherwise */
- (*offline)++;
- }
- continue;
- }
-
- processors++;
-
- /* Parse socket */
- if ((sock = virHostCPUParseSocket(node, arch, cpu)) < 0)
- goto cleanup;
- if (!virBitmapIsBitSet(sockets_map, sock)) {
- virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
- _("CPU socket topology has changed"));
- goto cleanup;
- }
-
- /* Parse core */
- if (ARCH_IS_S390(arch)) {
- /* logical cpu is equivalent to a core on s390 */
- core = cpu;
- } else {
- if ((core = virNodeGetCpuValue(node, cpu,
- "topology/core_id", 0)) < 0)
- goto cleanup;
- }
- if (core > ID_MAX) {
- virReportError(VIR_ERR_INTERNAL_ERROR,
- _("Core %d can't be handled (max core is %d)"),
- core, ID_MAX);
- goto cleanup;
- }
-
- if (virBitmapSetBit(cores_maps[sock], core) < 0)
- goto cleanup;
-
- if (!(siblings = virHostCPUCountThreadSiblings(node, cpu)))
- goto cleanup;
-
- if (siblings > *threads)
- *threads = siblings;
- }
-
- /* finalize the returned data */
- *sockets = virBitmapCountBits(sockets_map);
-
- for (i = 0; i < sock_max; i++) {
- if (!virBitmapIsBitSet(sockets_map, i))
- continue;
-
- core = virBitmapCountBits(cores_maps[i]);
- if (core > *cores)
- *cores = core;
- }
-
- if (threads_per_subcore > 0) {
- /* The thread count ignores offline threads, which means that only
- * only primary threads have been considered so far. If subcores
- * are in use, we need to also account for secondary threads */
- *threads *= threads_per_subcore;
- }
- ret = processors;
-
- cleanup:
- /* don't shadow a more serious error */
- if (cpudir && closedir(cpudir) < 0 && ret >= 0) {
- virReportSystemError(errno, _("problem closing %s"), node);
- ret = -1;
- }
- if (cores_maps)
- for (i = 0; i < sock_max; i++)
- virBitmapFree(cores_maps[i]);
- VIR_FREE(cores_maps);
- virBitmapFree(sockets_map);
- virBitmapFree(node_cpus_map);
-
- return ret;
-}
-
-/* Check whether the host subcore configuration is valid.
- *
- * A valid configuration is one where no secondary thread is online;
- * the primary thread in a subcore is always the first one */
-static bool
-virHostCPUHasValidSubcoreConfiguration(int threads_per_subcore)
-{
- virBitmapPtr online_cpus = NULL;
- int cpu = -1;
- bool ret = false;
-
- /* No point in checking if subcores are not in use */
- if (threads_per_subcore <= 0)
- goto cleanup;
-
- if (!(online_cpus = virHostCPUGetOnlineBitmap()))
- goto cleanup;
-
- while ((cpu = virBitmapNextSetBit(online_cpus, cpu)) >= 0) {
-
- /* A single online secondary thread is enough to
- * make the configuration invalid */
- if (cpu % threads_per_subcore != 0)
- goto cleanup;
- }
-
- ret = true;
-
- cleanup:
- virBitmapFree(online_cpus);
-
- return ret;
-}
-
-int
-virHostCPUGetInfoPopulateLinux(FILE *cpuinfo,
- virArch arch,
- unsigned int *cpus,
- unsigned int *mhz,
- unsigned int *nodes,
- unsigned int *sockets,
- unsigned int *cores,
- unsigned int *threads)
-{
- virBitmapPtr present_cpus_map = NULL;
- virBitmapPtr online_cpus_map = NULL;
- char line[1024];
- DIR *nodedir = NULL;
- struct dirent *nodedirent = NULL;
- int nodecpus, nodecores, nodesockets, nodethreads, offline = 0;
- int threads_per_subcore = 0;
- unsigned int node;
- int ret = -1;
- char *sysfs_nodedir = NULL;
- char *sysfs_cpudir = NULL;
- int direrr;
-
- *mhz = 0;
- *cpus = *nodes = *sockets = *cores = *threads = 0;
-
- /* Start with parsing CPU clock speed from /proc/cpuinfo */
- while (fgets(line, sizeof(line), cpuinfo) != NULL) {
- if (ARCH_IS_X86(arch)) {
- char *buf = line;
- if (STRPREFIX(buf, "cpu MHz")) {
- char *p;
- unsigned int ui;
-
- buf += 7;
- while (*buf && c_isspace(*buf))
- buf++;
-
- if (*buf != ':' || !buf[1]) {
- virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
- _("parsing cpu MHz from cpuinfo"));
- goto cleanup;
- }
-
- if (virStrToLong_ui(buf+1, &p, 10, &ui) == 0 &&
- /* Accept trailing fractional part. */
- (*p == '\0' || *p == '.' || c_isspace(*p)))
- *mhz = ui;
- }
- } else if (ARCH_IS_PPC(arch)) {
- char *buf = line;
- if (STRPREFIX(buf, "clock")) {
- char *p;
- unsigned int ui;
-
- buf += 5;
- while (*buf && c_isspace(*buf))
- buf++;
-
- if (*buf != ':' || !buf[1]) {
- virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
- _("parsing cpu MHz from cpuinfo"));
- goto cleanup;
- }
-
- if (virStrToLong_ui(buf+1, &p, 10, &ui) == 0 &&
- /* Accept trailing fractional part. */
- (*p == '\0' || *p == '.' || c_isspace(*p)))
- *mhz = ui;
- /* No other interesting infos are available in /proc/cpuinfo.
- * However, there is a line identifying processor's version,
- * identification and machine, but we don't want it to be caught
- * and parsed in next iteration, because it is not in expected
- * format and thus lead to error. */
- }
- } else if (ARCH_IS_ARM(arch)) {
- char *buf = line;
- if (STRPREFIX(buf, "BogoMIPS")) {
- char *p;
- unsigned int ui;
-
- buf += 8;
- while (*buf && c_isspace(*buf))
- buf++;
-
- if (*buf != ':' || !buf[1]) {
- virReportError(VIR_ERR_INTERNAL_ERROR,
- "%s", _("parsing cpu MHz from cpuinfo"));
- goto cleanup;
- }
-
- if (virStrToLong_ui(buf+1, &p, 10, &ui) == 0
- /* Accept trailing fractional part. */
- && (*p == '\0' || *p == '.' || c_isspace(*p)))
- *mhz = ui;
- }
- } else if (ARCH_IS_S390(arch)) {
- /* s390x has no realistic value for CPU speed,
- * assign a value of zero to signify this */
- *mhz = 0;
- } else {
- VIR_WARN("Parser for /proc/cpuinfo needs to be adapted for your architecture");
- break;
- }
- }
-
- /* Get information about what CPUs are present in the host and what
- * CPUs are online, so that we don't have to so for each node */
- present_cpus_map = virHostCPUGetPresentBitmap();
- if (!present_cpus_map)
- goto cleanup;
- online_cpus_map = virHostCPUGetOnlineBitmap();
- if (!online_cpus_map)
- goto cleanup;
-
- /* OK, we've parsed clock speed out of /proc/cpuinfo. Get the
- * core, node, socket, thread and topology information from /sys
- */
- if (virAsprintf(&sysfs_nodedir, "%s/node", sysfs_system_path) < 0)
- goto cleanup;
-
- if (!(nodedir = opendir(sysfs_nodedir))) {
- /* the host isn't probably running a NUMA architecture */
- goto fallback;
- }
-
- /* PPC-KVM needs the secondary threads of a core to be offline on the
- * host. The kvm scheduler brings the secondary threads online in the
- * guest context. Moreover, P8 processor has split-core capability
- * where, there can be 1,2 or 4 subcores per core. The primaries of the
- * subcores alone will be online on the host for a subcore in the
- * host. Even though the actual threads per core for P8 processor is 8,
- * depending on the subcores_per_core = 1, 2 or 4, the threads per
- * subcore will vary accordingly to 8, 4 and 2 repectively.
- * So, On host threads_per_core what is arrived at from sysfs in the
- * current logic is actually the subcores_per_core. Threads per subcore
- * can only be obtained from the kvm device. For example, on P8 wih 1
- * core having 8 threads, sub_cores_percore=4, the threads 0,2,4 & 6
- * will be online. The sysfs reflects this and in the current logic
- * variable 'threads' will be 4 which is nothing but subcores_per_core.
- * If the user tampers the cpu online/offline states using chcpu or other
- * means, then it is an unsupported configuration for kvm.
- * The code below tries to keep in mind
- * - when the libvirtd is run inside a KVM guest or Phyp based guest.
- * - Or on the kvm host where user manually tampers the cpu states to
- * offline/online randomly.
- * On hosts other than POWER this will be 0, in which case a simpler
- * thread-counting logic will be used */
- if ((threads_per_subcore = virHostCPUGetThreadsPerSubcore(arch)) < 0)
- goto cleanup;
-
- /* If the subcore configuration is not valid, just pretend subcores
- * are not in use and count threads one by one */
- if (!virHostCPUHasValidSubcoreConfiguration(threads_per_subcore))
- threads_per_subcore = 0;
-
- while ((direrr = virDirRead(nodedir, &nodedirent, sysfs_nodedir)) > 0) {
- if (sscanf(nodedirent->d_name, "node%u", &node) != 1)
- continue;
-
- (*nodes)++;
-
- if (virAsprintf(&sysfs_cpudir, "%s/node/%s",
- sysfs_system_path, nodedirent->d_name) < 0)
- goto cleanup;
-
- if ((nodecpus = virHostCPUParseNode(sysfs_cpudir, arch,
- present_cpus_map,
- online_cpus_map,
- threads_per_subcore,
- &nodesockets, &nodecores,
- &nodethreads, &offline)) < 0)
- goto cleanup;
-
- VIR_FREE(sysfs_cpudir);
-
- *cpus += nodecpus;
-
- if (nodesockets > *sockets)
- *sockets = nodesockets;
-
- if (nodecores > *cores)
- *cores = nodecores;
-
- if (nodethreads > *threads)
- *threads = nodethreads;
- }
-
- if (direrr < 0)
- goto cleanup;
-
- if (*cpus && *nodes)
- goto done;
-
- fallback:
- VIR_FREE(sysfs_cpudir);
-
- if (virAsprintf(&sysfs_cpudir, "%s/cpu", sysfs_system_path) < 0)
- goto cleanup;
-
- if ((nodecpus = virHostCPUParseNode(sysfs_cpudir, arch,
- present_cpus_map,
- online_cpus_map,
- threads_per_subcore,
- &nodesockets, &nodecores,
- &nodethreads, &offline)) < 0)
- goto cleanup;
-
- *nodes = 1;
- *cpus = nodecpus;
- *sockets = nodesockets;
- *cores = nodecores;
- *threads = nodethreads;
-
- done:
- /* There should always be at least one cpu, socket, node, and thread. */
- if (*cpus == 0) {
- virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("no CPUs found"));
- goto cleanup;
- }
-
- if (*sockets == 0) {
- virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("no sockets found"));
- goto cleanup;
- }
-
- if (*threads == 0) {
- virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("no threads found"));
- goto cleanup;
- }
-
- /* Now check if the topology makes sense. There are machines that don't
- * expose their real number of nodes or for example the AMD Bulldozer
- * architecture that exposes their Clustered integer core modules as both
- * threads and cores. This approach throws off our detection. Unfortunately
- * the nodeinfo structure isn't designed to carry the full topology so
- * we're going to lie about the detected topology to notify the user
- * to check the host capabilities for the actual topology. */
- if ((*nodes *
- *sockets *
- *cores *
- *threads) != (*cpus + offline)) {
- *nodes = 1;
- *sockets = 1;
- *cores = *cpus + offline;
- *threads = 1;
- }
-
- ret = 0;
-
- cleanup:
- /* don't shadow a more serious error */
- if (nodedir && closedir(nodedir) < 0 && ret >= 0) {
- virReportSystemError(errno, _("problem closing %s"), sysfs_nodedir);
- ret = -1;
- }
-
- virBitmapFree(present_cpus_map);
- virBitmapFree(online_cpus_map);
- VIR_FREE(sysfs_nodedir);
- VIR_FREE(sysfs_cpudir);
- return ret;
-}
-
-static int
-virHostCPUStatsAssign(virNodeCPUStatsPtr param,
- const char *name,
- unsigned long long value)
-{
- if (virStrcpyStatic(param->field, name) == NULL) {
- virReportError(VIR_ERR_INTERNAL_ERROR,
- "%s", _("kernel cpu time field is too long"
- " for the destination"));
- return -1;
- }
- param->value = value;
- return 0;
-}
-
-# define TICK_TO_NSEC (1000ull * 1000ull * 1000ull / sysconf(_SC_CLK_TCK))
-
-int
-virHostCPUGetStatsLinux(FILE *procstat,
- int cpuNum,
- virNodeCPUStatsPtr params,
- int *nparams)
-{
- int ret = -1;
- char line[1024];
- unsigned long long usr, ni, sys, idle, iowait;
- unsigned long long irq, softirq, steal, guest, guest_nice;
- char cpu_header[4 + INT_BUFSIZE_BOUND(cpuNum)];
-
- if ((*nparams) == 0) {
- /* Current number of cpu stats supported by linux */
- *nparams = LINUX_NB_CPU_STATS;
- ret = 0;
- goto cleanup;
- }
-
- if ((*nparams) != LINUX_NB_CPU_STATS) {
- virReportInvalidArg(*nparams,
- _("nparams in %s must be equal to %d"),
- __FUNCTION__, LINUX_NB_CPU_STATS);
- goto cleanup;
- }
-
- if (cpuNum == VIR_NODE_CPU_STATS_ALL_CPUS) {
- strcpy(cpu_header, "cpu ");
- } else {
- snprintf(cpu_header, sizeof(cpu_header), "cpu%d ", cpuNum);
- }
-
- while (fgets(line, sizeof(line), procstat) != NULL) {
- char *buf = line;
-
- if (STRPREFIX(buf, cpu_header)) { /* aka logical CPU time */
- if (sscanf(buf,
- "%*s %llu %llu %llu %llu %llu" // user ~ iowait
- "%llu %llu %llu %llu %llu", // irq ~ guest_nice
- &usr, &ni, &sys, &idle, &iowait,
- &irq, &softirq, &steal, &guest, &guest_nice) < 4) {
- continue;
- }
-
- if (virHostCPUStatsAssign(¶ms[0], VIR_NODE_CPU_STATS_KERNEL,
- (sys + irq + softirq) * TICK_TO_NSEC) < 0)
- goto cleanup;
-
- if (virHostCPUStatsAssign(¶ms[1], VIR_NODE_CPU_STATS_USER,
- (usr + ni) * TICK_TO_NSEC) < 0)
- goto cleanup;
-
- if (virHostCPUStatsAssign(¶ms[2], VIR_NODE_CPU_STATS_IDLE,
- idle * TICK_TO_NSEC) < 0)
- goto cleanup;
-
- if (virHostCPUStatsAssign(¶ms[3], VIR_NODE_CPU_STATS_IOWAIT,
- iowait * TICK_TO_NSEC) < 0)
- goto cleanup;
-
- ret = 0;
- goto cleanup;
- }
- }
-
- virReportInvalidArg(cpuNum,
- _("Invalid cpuNum in %s"),
- __FUNCTION__);
-
- cleanup:
- return ret;
-}
static int
virHostMemGetStatsLinux(FILE *meminfo,
return ret;
}
-static char *
-virHostCPUGetGlobalPathLinux(const char *file)
-{
- char *path = NULL;
-
- if (virAsprintf(&path, "%s/cpu/%s", sysfs_system_path, file) < 0)
- return NULL;
-
- return path;
-}
-
-static char *
-virHostCPUGetPresentPathLinux(void)
-{
- return virHostCPUGetGlobalPathLinux("present");
-}
-
-static char *
-virHostCPUGetOnlinePathLinux(void)
-{
- return virHostCPUGetGlobalPathLinux("online");
-}
-
-/* Determine the number of CPUs (maximum CPU id + 1) from a file containing
- * a list of CPU ids, like the Linux sysfs cpu/present file */
-static int
-virHostCPUParseCountLinux(const char *path)
-{
- char *str = NULL;
- char *tmp;
- int ret = -1;
-
- if (virFileReadAll(path, 5 * VIR_DOMAIN_CPUMASK_LEN, &str) < 0)
- goto cleanup;
-
- tmp = str;
- do {
- if (virStrToLong_i(tmp, &tmp, 10, &ret) < 0 ||
- !strchr(",-\n", *tmp)) {
- virReportError(VIR_ERR_NO_SUPPORT,
- _("failed to parse %s"), path);
- ret = -1;
- goto cleanup;
- }
- } while (*tmp++ != '\n');
- ret++;
-
- cleanup:
- VIR_FREE(str);
- return ret;
-}
-
-/*
- * Linux maintains cpu bit map under cpu/online. For example, if
- * cpuid=5's flag is not set and max cpu is 7, the map file shows
- * 0-4,6-7. This function parses it and returns cpumap.
- */
-static virBitmapPtr
-virHostCPUParseMapLinux(int max_cpuid, const char *path)
-{
- virBitmapPtr map = NULL;
- char *str = NULL;
-
- if (virFileReadAll(path, 5 * VIR_DOMAIN_CPUMASK_LEN, &str) < 0)
- goto error;
-
- if (virBitmapParse(str, 0, &map, max_cpuid) < 0)
- goto error;
-
- VIR_FREE(str);
- return map;
-
- error:
- VIR_FREE(str);
- virBitmapFree(map);
- return NULL;
-}
-
static virBitmapPtr
virNodeGetSiblingsListLinux(const char *dir, int cpu_id)
#endif
-static int
-virHostCPUGetInfo(virArch hostarch,
- unsigned int *cpus,
- unsigned int *mhz,
- unsigned int *nodes,
- unsigned int *sockets,
- unsigned int *cores,
- unsigned int *threads)
-{
-#ifdef __linux__
- int ret = -1;
- FILE *cpuinfo = fopen(CPUINFO_PATH, "r");
-
- if (!cpuinfo) {
- virReportSystemError(errno,
- _("cannot open %s"), CPUINFO_PATH);
- return -1;
- }
-
- ret = virHostCPUGetInfoPopulateLinux(cpuinfo, hostarch,
- cpus, mhz, nodes,
- sockets, cores, threads);
- if (ret < 0)
- goto cleanup;
-
- cleanup:
- VIR_FORCE_FCLOSE(cpuinfo);
- return ret;
-#elif defined(__FreeBSD__) || defined(__APPLE__)
- unsigned long cpu_freq;
- size_t cpu_freq_len = sizeof(cpu_freq);
-
- *cpus = virHostCPUGetCountAppleFreeBSD();
- if (*cpus == -1)
- return -1;
-
- *nodes = 1;
- *sockets = 1;
- *cores = *cpus;
- *threads = 1;
-
-# ifdef __FreeBSD__
- if (sysctlbyname("dev.cpu.0.freq", &cpu_freq, &cpu_freq_len, NULL, 0) < 0) {
- virReportSystemError(errno, "%s", _("cannot obtain CPU freq"));
- return -1;
- }
-
- *mhz = cpu_freq;
-# else
- if (sysctlbyname("hw.cpufrequency", &cpu_freq, &cpu_freq_len, NULL, 0) < 0) {
- virReportSystemError(errno, "%s", _("cannot obtain CPU freq"));
- return -1;
- }
-
- *mhz = cpu_freq / 1000000;
-# endif
-
- return 0;
-#else
- /* XXX Solaris will need an impl later if they port QEMU driver */
- virReportError(VIR_ERR_NO_SUPPORT, "%s",
- _("node info not implemented on this platform"));
- return -1;
-#endif
-}
-
-
int
nodeGetInfo(virNodeInfoPtr nodeinfo)
{
return 0;
}
-int
-virHostCPUGetStats(int cpuNum ATTRIBUTE_UNUSED,
- virNodeCPUStatsPtr params ATTRIBUTE_UNUSED,
- int *nparams ATTRIBUTE_UNUSED,
- unsigned int flags)
-{
- virCheckFlags(0, -1);
-
-#ifdef __linux__
- {
- int ret;
- FILE *procstat = fopen(PROCSTAT_PATH, "r");
- if (!procstat) {
- virReportSystemError(errno,
- _("cannot open %s"), PROCSTAT_PATH);
- return -1;
- }
- ret = virHostCPUGetStatsLinux(procstat, cpuNum, params, nparams);
- VIR_FORCE_FCLOSE(procstat);
-
- return ret;
- }
-#elif defined(__FreeBSD__)
- return virHostCPUGetStatsFreeBSD(cpuNum, params, nparams);
-#else
- virReportError(VIR_ERR_NO_SUPPORT, "%s",
- _("node CPU stats not implemented on this platform"));
- return -1;
-#endif
-}
int
virHostMemGetStats(int cellNum ATTRIBUTE_UNUSED,
#endif
}
-int
-virHostCPUGetCount(void)
-{
-#if defined(__linux__)
- /* To support older kernels that lack cpu/present, such as 2.6.18
- * in RHEL5, we fall back to count cpu/cpuNN entries; this assumes
- * that such kernels also lack hotplug, and therefore cpu/cpuNN
- * will be consecutive.
- */
- char *present_path = NULL;
- char *cpupath = NULL;
- int ncpu = -1;
-
- if (!(present_path = virHostCPUGetPresentPathLinux()))
- return -1;
-
- if (virFileExists(present_path)) {
- ncpu = virHostCPUParseCountLinux(present_path);
- goto cleanup;
- }
-
- if (virAsprintf(&cpupath, "%s/cpu/cpu0", sysfs_system_path) < 0)
- goto cleanup;
- if (virFileExists(cpupath)) {
- ncpu = 0;
- do {
- ncpu++;
- VIR_FREE(cpupath);
- if (virAsprintf(&cpupath, "%s/cpu/cpu%d",
- sysfs_system_path, ncpu) < 0) {
- ncpu = -1;
- goto cleanup;
- }
- } while (virFileExists(cpupath));
- } else {
- /* no cpu/cpu0: we give up */
- virReportError(VIR_ERR_NO_SUPPORT, "%s",
- _("host cpu counting not supported on this node"));
- }
-
- cleanup:
- VIR_FREE(present_path);
- VIR_FREE(cpupath);
- return ncpu;
-#elif defined(__FreeBSD__) || defined(__APPLE__)
- return virHostCPUGetCountAppleFreeBSD();
-#else
- virReportError(VIR_ERR_NO_SUPPORT, "%s",
- _("host cpu counting not implemented on this platform"));
- return -1;
-#endif
-}
-
-virBitmapPtr
-virHostCPUGetPresentBitmap(void)
-{
-#ifdef __linux__
- virBitmapPtr present_cpus = NULL;
- char *present_path = NULL;
- int npresent_cpus;
-
- if ((npresent_cpus = virHostCPUGetCount()) < 0)
- goto cleanup;
-
- if (!(present_path = virHostCPUGetPresentPathLinux()))
- goto cleanup;
-
- /* If the cpu/present file is available, parse it and exit */
- if (virFileExists(present_path)) {
- present_cpus = virHostCPUParseMapLinux(npresent_cpus, present_path);
- goto cleanup;
- }
-
- /* If the file is not available, we can assume that the kernel is
- * too old to support non-consecutive CPU ids and just mark all
- * possible CPUs as present */
- if (!(present_cpus = virBitmapNew(npresent_cpus)))
- goto cleanup;
-
- virBitmapSetAll(present_cpus);
-
- cleanup:
- VIR_FREE(present_path);
-
- return present_cpus;
-#endif
- virReportError(VIR_ERR_NO_SUPPORT, "%s",
- _("node present CPU map not implemented on this platform"));
- return NULL;
-}
-
-virBitmapPtr
-virHostCPUGetOnlineBitmap(void)
-{
-#ifdef __linux__
- char *online_path = NULL;
- char *cpudir = NULL;
- virBitmapPtr cpumap;
- int present;
-
- present = virHostCPUGetCount();
- if (present < 0)
- return NULL;
-
- if (!(online_path = virHostCPUGetOnlinePathLinux()))
- return NULL;
- if (virFileExists(online_path)) {
- cpumap = virHostCPUParseMapLinux(present, online_path);
- } else {
- size_t i;
-
- cpumap = virBitmapNew(present);
- if (!cpumap)
- goto cleanup;
-
- if (virAsprintf(&cpudir, "%s/cpu", sysfs_system_path) < 0)
- goto cleanup;
-
- for (i = 0; i < present; i++) {
- int online = virNodeGetCpuValue(cpudir, i, "online", 1);
- if (online < 0) {
- virBitmapFree(cpumap);
- cpumap = NULL;
- goto cleanup;
- }
- if (online)
- ignore_value(virBitmapSetBit(cpumap, i));
- }
- }
-
- cleanup:
- VIR_FREE(online_path);
- VIR_FREE(cpudir);
- return cpumap;
-#else
- virReportError(VIR_ERR_NO_SUPPORT, "%s",
- _("node online CPU map not implemented on this platform"));
- return NULL;
-#endif
-}
#ifdef __linux__
static int
#endif
}
-int
-virHostCPUGetMap(unsigned char **cpumap,
- unsigned int *online,
- unsigned int flags)
-{
- virBitmapPtr cpus = NULL;
- int ret = -1;
- int dummy;
-
- virCheckFlags(0, -1);
-
- if (!cpumap && !online)
- return virHostCPUGetCount();
-
- if (!(cpus = virHostCPUGetOnlineBitmap()))
- goto cleanup;
-
- if (cpumap && virBitmapToData(cpus, cpumap, &dummy) < 0)
- goto cleanup;
- if (online)
- *online = virBitmapCountBits(cpus);
-
- ret = virBitmapSize(cpus);
-
- cleanup:
- if (ret < 0 && cpumap)
- VIR_FREE(*cpumap);
- virBitmapFree(cpus);
- return ret;
-}
static int
nodeCapsInitNUMAFake(const char *cpupath ATTRIBUTE_UNUSED,
cleanup:
return ret;
}
-
-#if HAVE_LINUX_KVM_H && defined(KVM_CAP_PPC_SMT)
-
-/* Get the number of threads per subcore.
- *
- * This will be 2, 4 or 8 on POWER hosts, depending on the current
- * micro-threading configuration, and 0 everywhere else.
- *
- * Returns the number of threads per subcore if subcores are in use, zero
- * if subcores are not in use, and a negative value on error */
-int
-virHostCPUGetThreadsPerSubcore(virArch arch)
-{
- int threads_per_subcore = 0;
- const char *kvmpath = "/dev/kvm";
- int kvmfd;
-
- if (ARCH_IS_PPC64(arch)) {
-
- /* It's okay if /dev/kvm doesn't exist, because
- * a. we might be running in a guest
- * b. the kvm module might not be installed or enabled
- * In either case, falling back to the subcore-unaware thread
- * counting logic is the right thing to do */
- if (!virFileExists(kvmpath))
- goto out;
-
- if ((kvmfd = open(kvmpath, O_RDONLY)) < 0) {
- /* This can happen when running as a regular user if
- * permissions are tight enough, in which case erroring out
- * is better than silently falling back and reporting
- * different nodeinfo depending on the user */
- virReportSystemError(errno,
- _("Failed to open '%s'"),
- kvmpath);
- threads_per_subcore = -1;
- goto out;
- }
-
- /* For Phyp and KVM based guests the ioctl for KVM_CAP_PPC_SMT
- * returns zero and both primary and secondary threads will be
- * online */
- threads_per_subcore = ioctl(kvmfd,
- KVM_CHECK_EXTENSION,
- KVM_CAP_PPC_SMT);
-
- VIR_FORCE_CLOSE(kvmfd);
- }
-
- out:
- return threads_per_subcore;
-}
-
-#else
-
-/* Fallback for nodeGetThreadsPerSubcore() used when KVM headers
- * are not available on the system */
-int
-virHostCPUGetThreadsPerSubcore(virArch arch ATTRIBUTE_UNUSED)
-{
- return 0;
-}
-
-#endif /* HAVE_LINUX_KVM_H && defined(KVM_CAP_PPC_SMT) */
int nodeGetInfo(virNodeInfoPtr nodeinfo);
int nodeCapsInitNUMA(virCapsPtr caps);
-int virHostCPUGetStats(int cpuNum,
- virNodeCPUStatsPtr params,
- int *nparams,
- unsigned int flags);
int virHostMemGetStats(int cellNum,
virNodeMemoryStatsPtr params,
int *nparams,
int virHostMemGetInfo(unsigned long long *mem,
unsigned long long *freeMem);
-virBitmapPtr virHostCPUGetPresentBitmap(void);
-virBitmapPtr virHostCPUGetOnlineBitmap(void);
-int virHostCPUGetCount(void);
-int virHostCPUGetThreadsPerSubcore(virArch arch);
-
int virHostMemGetParameters(virTypedParameterPtr params,
int *nparams,
unsigned int flags);
int nparams,
unsigned int flags);
-int virHostCPUGetMap(unsigned char **cpumap,
- unsigned int *online,
- unsigned int flags);
-
int virHostMemGetFreePages(unsigned int npages,
unsigned int *pages,
int startCell,
+++ /dev/null
-/*
- * nodeinfopriv.h: internal APIs for testing nodeinfo code
- *
- * Copyright (C) 2014 Red Hat, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library. If not, see
- * <http://www.gnu.org/licenses/>.
- *
- */
-
-#ifndef __NODEINFO_PRIV_H__
-# define __NODEINFO_PRIV_H__
-
-# include "nodeinfo.h"
-
-# ifdef __linux__
-void virHostCPUSetSysFSSystemPathLinux(const char *path);
-
-int virHostCPUGetInfoPopulateLinux(FILE *cpuinfo,
- virArch arch,
- unsigned int *cpus,
- unsigned int *mhz,
- unsigned int *nodes,
- unsigned int *sockets,
- unsigned int *cores,
- unsigned int *threads);
-
-int virHostCPUGetStatsLinux(FILE *procstat,
- int cpuNum,
- virNodeCPUStatsPtr params,
- int *nparams);
-# endif
-
-#endif /* __NODEINFO_PRIV_H__ */
#include "virbuffer.h"
#include "openvz_conf.h"
#include "nodeinfo.h"
+#include "virhostcpu.h"
#include "viralloc.h"
#include "virfile.h"
#include "virtypedparam.h"
#include "datatypes.h"
#include "virbuffer.h"
#include "nodeinfo.h"
+#include "virhostcpu.h"
#include "virstats.h"
#include "capabilities.h"
#include "viralloc.h"
#include "virhook.h"
#include "virfile.h"
#include "virpidfile.h"
-#include "nodeinfo.h"
+#include "virhostcpu.h"
#include "domain_audit.h"
#include "domain_nwfilter.h"
#include "locking/domain_lock.h"
#include "uml_conf.h"
#include "virbuffer.h"
#include "nodeinfo.h"
+#include "virhostcpu.h"
#include "virstats.h"
#include "capabilities.h"
#include "viralloc.h"
#include "virstring.h"
#include "virsystemd.h"
#include "virtypedparam.h"
-
-#include "nodeinfo.h"
+#include "virhostcpu.h"
VIR_LOG_INIT("util.cgroup");
--- /dev/null
+/*
+ * virhostcpu.c: helper APIs for host CPU info
+ *
+ * Copyright (C) 2006-2016 Red Hat, Inc.
+ * Copyright (C) 2006 Daniel P. Berrange
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see
+ * <http://www.gnu.org/licenses/>.
+ *
+ * Author: Daniel P. Berrange <berrange@redhat.com>
+ */
+
+#include <config.h>
+
+#include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
+#include <stdint.h>
+#include <errno.h>
+#include <dirent.h>
+#include <sys/utsname.h>
+#include <fcntl.h>
+#include <sys/ioctl.h>
+#include <unistd.h>
+
+#if HAVE_LINUX_KVM_H
+# include <linux/kvm.h>
+#endif
+
+#if defined(__FreeBSD__) || defined(__APPLE__)
+# include <sys/time.h>
+# include <sys/types.h>
+# include <sys/sysctl.h>
+# include <sys/resource.h>
+#endif
+
+#include "c-ctype.h"
+#include "viralloc.h"
+#include "virhostcpupriv.h"
+#include "physmem.h"
+#include "virerror.h"
+#include "count-one-bits.h"
+#include "intprops.h"
+#include "virarch.h"
+#include "virfile.h"
+#include "virtypedparam.h"
+#include "virstring.h"
+#include "virnuma.h"
+#include "virlog.h"
+
+#define VIR_FROM_THIS VIR_FROM_NONE
+
+VIR_LOG_INIT("util.hostcpu");
+
+
+#if defined(__FreeBSD__) || defined(__APPLE__)
+static int
+virHostCPUGetCountAppleFreeBSD(void)
+{
+ int ncpu_mib[2] = { CTL_HW, HW_NCPU };
+ unsigned long ncpu;
+ size_t ncpu_len = sizeof(ncpu);
+
+ if (sysctl(ncpu_mib, 2, &ncpu, &ncpu_len, NULL, 0) == -1) {
+ virReportSystemError(errno, "%s", _("Cannot obtain CPU count"));
+ return -1;
+ }
+
+ return ncpu;
+}
+#endif /* defined(__FreeBSD__) || defined(__APPLE__) */
+
+#ifdef __FreeBSD__
+# define BSD_CPU_STATS_ALL 4
+# define BSD_MEMORY_STATS_ALL 4
+
+# define TICK_TO_NSEC (1000ull * 1000ull * 1000ull / (stathz ? stathz : hz))
+
+static int
+virHostCPUGetStatsFreebsd(int cpuNum,
+ virNodeCPUStatsPtr params,
+ int *nparams)
+{
+ const char *sysctl_name;
+ long *cpu_times;
+ struct clockinfo clkinfo;
+ size_t i, j, cpu_times_size, clkinfo_size;
+ int cpu_times_num, offset, hz, stathz, ret = -1;
+ struct field_cpu_map {
+ const char *field;
+ int idx[CPUSTATES];
+ } cpu_map[] = {
+ {VIR_NODE_CPU_STATS_KERNEL, {CP_SYS}},
+ {VIR_NODE_CPU_STATS_USER, {CP_USER, CP_NICE}},
+ {VIR_NODE_CPU_STATS_IDLE, {CP_IDLE}},
+ {VIR_NODE_CPU_STATS_INTR, {CP_INTR}},
+ {NULL, {0}}
+ };
+
+ if ((*nparams) == 0) {
+ *nparams = BSD_CPU_STATS_ALL;
+ return 0;
+ }
+
+ if ((*nparams) != BSD_CPU_STATS_ALL) {
+ virReportInvalidArg(*nparams,
+ _("nparams in %s must be equal to %d"),
+ __FUNCTION__, BSD_CPU_STATS_ALL);
+ return -1;
+ }
+
+ clkinfo_size = sizeof(clkinfo);
+ if (sysctlbyname("kern.clockrate", &clkinfo, &clkinfo_size, NULL, 0) < 0) {
+ virReportSystemError(errno,
+ _("sysctl failed for '%s'"),
+ "kern.clockrate");
+ return -1;
+ }
+
+ stathz = clkinfo.stathz;
+ hz = clkinfo.hz;
+
+ if (cpuNum == VIR_NODE_CPU_STATS_ALL_CPUS) {
+ sysctl_name = "kern.cp_time";
+ cpu_times_num = 1;
+ offset = 0;
+ } else {
+ sysctl_name = "kern.cp_times";
+ cpu_times_num = virHostCPUGetCountAppleFreeBSD();
+
+ if (cpuNum >= cpu_times_num) {
+ virReportInvalidArg(cpuNum,
+ _("Invalid cpuNum in %s"),
+ __FUNCTION__);
+ return -1;
+ }
+
+ offset = cpu_times_num * CPUSTATES;
+ }
+
+ cpu_times_size = sizeof(long) * cpu_times_num * CPUSTATES;
+
+ if (VIR_ALLOC_N(cpu_times, cpu_times_num * CPUSTATES) < 0)
+ goto cleanup;
+
+ if (sysctlbyname(sysctl_name, cpu_times, &cpu_times_size, NULL, 0) < 0) {
+ virReportSystemError(errno,
+ _("sysctl failed for '%s'"),
+ sysctl_name);
+ goto cleanup;
+ }
+
+ for (i = 0; cpu_map[i].field != NULL; i++) {
+ virNodeCPUStatsPtr param = ¶ms[i];
+
+ if (virStrcpyStatic(param->field, cpu_map[i].field) == NULL) {
+ virReportError(VIR_ERR_INTERNAL_ERROR,
+ _("Field '%s' too long for destination"),
+ cpu_map[i].field);
+ goto cleanup;
+ }
+
+ param->value = 0;
+ for (j = 0; j < ARRAY_CARDINALITY(cpu_map[i].idx); j++)
+ param->value += cpu_times[offset + cpu_map[i].idx[j]] * TICK_TO_NSEC;
+ }
+
+ ret = 0;
+
+ cleanup:
+ VIR_FREE(cpu_times);
+
+ return ret;
+}
+
+#endif /* __FreeBSD__ */
+
+#ifdef __linux__
+# define SYSFS_SYSTEM_PATH "/sys/devices/system"
+# define CPUINFO_PATH "/proc/cpuinfo"
+# define PROCSTAT_PATH "/proc/stat"
+# define SYSFS_THREAD_SIBLINGS_LIST_LENGTH_MAX 8192
+
+# define LINUX_NB_CPU_STATS 4
+
+static const char *sysfs_system_path = SYSFS_SYSTEM_PATH;
+
+void virHostCPUSetSysFSSystemPathLinux(const char *path)
+{
+ if (path)
+ sysfs_system_path = path;
+ else
+ sysfs_system_path = SYSFS_SYSTEM_PATH;
+}
+
+/* Return the positive decimal contents of the given
+ * DIR/cpu%u/FILE, or -1 on error. If DEFAULT_VALUE is non-negative
+ * and the file could not be found, return that instead of an error;
+ * this is useful for machines that cannot hot-unplug cpu0, or where
+ * hot-unplugging is disabled, or where the kernel is too old
+ * to support NUMA cells, etc. */
+static int
+virHostCPUGetValue(const char *dir, unsigned int cpu, const char *file,
+ int default_value)
+{
+ char *path;
+ FILE *pathfp;
+ int value = -1;
+ char value_str[INT_BUFSIZE_BOUND(value)];
+ char *tmp;
+
+ if (virAsprintf(&path, "%s/cpu%u/%s", dir, cpu, file) < 0)
+ return -1;
+
+ pathfp = fopen(path, "r");
+ if (pathfp == NULL) {
+ if (default_value >= 0 && errno == ENOENT)
+ value = default_value;
+ else
+ virReportSystemError(errno, _("cannot open %s"), path);
+ goto cleanup;
+ }
+
+ if (fgets(value_str, sizeof(value_str), pathfp) == NULL) {
+ virReportSystemError(errno, _("cannot read from %s"), path);
+ goto cleanup;
+ }
+ if (virStrToLong_i(value_str, &tmp, 10, &value) < 0) {
+ virReportError(VIR_ERR_INTERNAL_ERROR,
+ _("could not convert '%s' to an integer"),
+ value_str);
+ goto cleanup;
+ }
+
+ cleanup:
+ VIR_FORCE_FCLOSE(pathfp);
+ VIR_FREE(path);
+
+ return value;
+}
+
+static unsigned long
+virHostCPUCountThreadSiblings(const char *dir, unsigned int cpu)
+{
+ unsigned long ret = 0;
+ char *path;
+ char *str = NULL;
+ size_t i;
+
+ if (virAsprintf(&path, "%s/cpu%u/topology/thread_siblings",
+ dir, cpu) < 0)
+ return 0;
+
+ if (!virFileExists(path)) {
+ /* If file doesn't exist, then pretend our only
+ * sibling is ourself */
+ ret = 1;
+ goto cleanup;
+ }
+
+ if (virFileReadAll(path, SYSFS_THREAD_SIBLINGS_LIST_LENGTH_MAX, &str) < 0)
+ goto cleanup;
+
+ for (i = 0; str[i] != '\0'; i++) {
+ if (c_isxdigit(str[i]))
+ ret += count_one_bits(virHexToBin(str[i]));
+ }
+
+ cleanup:
+ VIR_FREE(str);
+ VIR_FREE(path);
+ return ret;
+}
+
+static int
+virHostCPUParseSocket(const char *dir,
+ virArch arch,
+ unsigned int cpu)
+{
+ int ret = virHostCPUGetValue(dir, cpu, "topology/physical_package_id", 0);
+
+ if (ARCH_IS_ARM(arch) || ARCH_IS_PPC(arch) || ARCH_IS_S390(arch)) {
+ /* arm, ppc and s390(x) has -1 */
+ if (ret < 0)
+ ret = 0;
+ }
+
+ return ret;
+}
+
+/* parses a node entry, returning number of processors in the node and
+ * filling arguments */
+static int
+ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(3)
+ATTRIBUTE_NONNULL(4) ATTRIBUTE_NONNULL(6)
+ATTRIBUTE_NONNULL(7) ATTRIBUTE_NONNULL(8)
+ATTRIBUTE_NONNULL(9)
+virHostCPUParseNode(const char *node,
+ virArch arch,
+ virBitmapPtr present_cpus_map,
+ virBitmapPtr online_cpus_map,
+ int threads_per_subcore,
+ int *sockets,
+ int *cores,
+ int *threads,
+ int *offline)
+{
+ /* Biggest value we can expect to be used as either socket id
+ * or core id. Bitmaps will need to be sized accordingly */
+ const int ID_MAX = 4095;
+ int ret = -1;
+ int processors = 0;
+ DIR *cpudir = NULL;
+ struct dirent *cpudirent = NULL;
+ virBitmapPtr node_cpus_map = NULL;
+ virBitmapPtr sockets_map = NULL;
+ virBitmapPtr *cores_maps = NULL;
+ int npresent_cpus = virBitmapSize(present_cpus_map);
+ int sock_max = 0;
+ int sock;
+ int core;
+ size_t i;
+ int siblings;
+ unsigned int cpu;
+ int direrr;
+
+ *threads = 0;
+ *cores = 0;
+ *sockets = 0;
+
+ if (!(cpudir = opendir(node))) {
+ virReportSystemError(errno, _("cannot opendir %s"), node);
+ goto cleanup;
+ }
+
+ /* Keep track of the CPUs that belong to the current node */
+ if (!(node_cpus_map = virBitmapNew(npresent_cpus)))
+ goto cleanup;
+
+ /* enumerate sockets in the node */
+ if (!(sockets_map = virBitmapNew(ID_MAX + 1)))
+ goto cleanup;
+
+ while ((direrr = virDirRead(cpudir, &cpudirent, node)) > 0) {
+ if (sscanf(cpudirent->d_name, "cpu%u", &cpu) != 1)
+ continue;
+
+ if (!virBitmapIsBitSet(present_cpus_map, cpu))
+ continue;
+
+ /* Mark this CPU as part of the current node */
+ if (virBitmapSetBit(node_cpus_map, cpu) < 0)
+ goto cleanup;
+
+ if (!virBitmapIsBitSet(online_cpus_map, cpu))
+ continue;
+
+ /* Parse socket */
+ if ((sock = virHostCPUParseSocket(node, arch, cpu)) < 0)
+ goto cleanup;
+ if (sock > ID_MAX) {
+ virReportError(VIR_ERR_INTERNAL_ERROR,
+ _("Socket %d can't be handled (max socket is %d)"),
+ sock, ID_MAX);
+ goto cleanup;
+ }
+
+ if (virBitmapSetBit(sockets_map, sock) < 0)
+ goto cleanup;
+
+ if (sock > sock_max)
+ sock_max = sock;
+ }
+
+ if (direrr < 0)
+ goto cleanup;
+
+ sock_max++;
+
+ /* allocate cores maps for each socket */
+ if (VIR_ALLOC_N(cores_maps, sock_max) < 0)
+ goto cleanup;
+
+ for (i = 0; i < sock_max; i++)
+ if (!(cores_maps[i] = virBitmapNew(ID_MAX + 1)))
+ goto cleanup;
+
+ /* Iterate over all CPUs in the node, in ascending order */
+ for (cpu = 0; cpu < npresent_cpus; cpu++) {
+
+ /* Skip CPUs that are not part of the current node */
+ if (!virBitmapIsBitSet(node_cpus_map, cpu))
+ continue;
+
+ if (!virBitmapIsBitSet(online_cpus_map, cpu)) {
+ if (threads_per_subcore > 0 &&
+ cpu % threads_per_subcore != 0 &&
+ virBitmapIsBitSet(online_cpus_map,
+ cpu - (cpu % threads_per_subcore))) {
+ /* Secondary offline threads are counted as online when
+ * subcores are in use and the corresponding primary
+ * thread is online */
+ processors++;
+ } else {
+ /* But they are counted as offline otherwise */
+ (*offline)++;
+ }
+ continue;
+ }
+
+ processors++;
+
+ /* Parse socket */
+ if ((sock = virHostCPUParseSocket(node, arch, cpu)) < 0)
+ goto cleanup;
+ if (!virBitmapIsBitSet(sockets_map, sock)) {
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
+ _("CPU socket topology has changed"));
+ goto cleanup;
+ }
+
+ /* Parse core */
+ if (ARCH_IS_S390(arch)) {
+ /* logical cpu is equivalent to a core on s390 */
+ core = cpu;
+ } else {
+ if ((core = virHostCPUGetValue(node, cpu,
+ "topology/core_id", 0)) < 0)
+ goto cleanup;
+ }
+ if (core > ID_MAX) {
+ virReportError(VIR_ERR_INTERNAL_ERROR,
+ _("Core %d can't be handled (max core is %d)"),
+ core, ID_MAX);
+ goto cleanup;
+ }
+
+ if (virBitmapSetBit(cores_maps[sock], core) < 0)
+ goto cleanup;
+
+ if (!(siblings = virHostCPUCountThreadSiblings(node, cpu)))
+ goto cleanup;
+
+ if (siblings > *threads)
+ *threads = siblings;
+ }
+
+ /* finalize the returned data */
+ *sockets = virBitmapCountBits(sockets_map);
+
+ for (i = 0; i < sock_max; i++) {
+ if (!virBitmapIsBitSet(sockets_map, i))
+ continue;
+
+ core = virBitmapCountBits(cores_maps[i]);
+ if (core > *cores)
+ *cores = core;
+ }
+
+ if (threads_per_subcore > 0) {
+ /* The thread count ignores offline threads, which means that only
+ * only primary threads have been considered so far. If subcores
+ * are in use, we need to also account for secondary threads */
+ *threads *= threads_per_subcore;
+ }
+ ret = processors;
+
+ cleanup:
+ /* don't shadow a more serious error */
+ if (cpudir && closedir(cpudir) < 0 && ret >= 0) {
+ virReportSystemError(errno, _("problem closing %s"), node);
+ ret = -1;
+ }
+ if (cores_maps)
+ for (i = 0; i < sock_max; i++)
+ virBitmapFree(cores_maps[i]);
+ VIR_FREE(cores_maps);
+ virBitmapFree(sockets_map);
+ virBitmapFree(node_cpus_map);
+
+ return ret;
+}
+
+/* Check whether the host subcore configuration is valid.
+ *
+ * A valid configuration is one where no secondary thread is online;
+ * the primary thread in a subcore is always the first one */
+static bool
+virHostCPUHasValidSubcoreConfiguration(int threads_per_subcore)
+{
+ virBitmapPtr online_cpus = NULL;
+ int cpu = -1;
+ bool ret = false;
+
+ /* No point in checking if subcores are not in use */
+ if (threads_per_subcore <= 0)
+ goto cleanup;
+
+ if (!(online_cpus = virHostCPUGetOnlineBitmap()))
+ goto cleanup;
+
+ while ((cpu = virBitmapNextSetBit(online_cpus, cpu)) >= 0) {
+
+ /* A single online secondary thread is enough to
+ * make the configuration invalid */
+ if (cpu % threads_per_subcore != 0)
+ goto cleanup;
+ }
+
+ ret = true;
+
+ cleanup:
+ virBitmapFree(online_cpus);
+
+ return ret;
+}
+
+int
+virHostCPUGetInfoPopulateLinux(FILE *cpuinfo,
+ virArch arch,
+ unsigned int *cpus,
+ unsigned int *mhz,
+ unsigned int *nodes,
+ unsigned int *sockets,
+ unsigned int *cores,
+ unsigned int *threads)
+{
+ virBitmapPtr present_cpus_map = NULL;
+ virBitmapPtr online_cpus_map = NULL;
+ char line[1024];
+ DIR *nodedir = NULL;
+ struct dirent *nodedirent = NULL;
+ int nodecpus, nodecores, nodesockets, nodethreads, offline = 0;
+ int threads_per_subcore = 0;
+ unsigned int node;
+ int ret = -1;
+ char *sysfs_nodedir = NULL;
+ char *sysfs_cpudir = NULL;
+ int direrr;
+
+ *mhz = 0;
+ *cpus = *nodes = *sockets = *cores = *threads = 0;
+
+ /* Start with parsing CPU clock speed from /proc/cpuinfo */
+ while (fgets(line, sizeof(line), cpuinfo) != NULL) {
+ if (ARCH_IS_X86(arch)) {
+ char *buf = line;
+ if (STRPREFIX(buf, "cpu MHz")) {
+ char *p;
+ unsigned int ui;
+
+ buf += 7;
+ while (*buf && c_isspace(*buf))
+ buf++;
+
+ if (*buf != ':' || !buf[1]) {
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
+ _("parsing cpu MHz from cpuinfo"));
+ goto cleanup;
+ }
+
+ if (virStrToLong_ui(buf+1, &p, 10, &ui) == 0 &&
+ /* Accept trailing fractional part. */
+ (*p == '\0' || *p == '.' || c_isspace(*p)))
+ *mhz = ui;
+ }
+ } else if (ARCH_IS_PPC(arch)) {
+ char *buf = line;
+ if (STRPREFIX(buf, "clock")) {
+ char *p;
+ unsigned int ui;
+
+ buf += 5;
+ while (*buf && c_isspace(*buf))
+ buf++;
+
+ if (*buf != ':' || !buf[1]) {
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
+ _("parsing cpu MHz from cpuinfo"));
+ goto cleanup;
+ }
+
+ if (virStrToLong_ui(buf+1, &p, 10, &ui) == 0 &&
+ /* Accept trailing fractional part. */
+ (*p == '\0' || *p == '.' || c_isspace(*p)))
+ *mhz = ui;
+ /* No other interesting infos are available in /proc/cpuinfo.
+ * However, there is a line identifying processor's version,
+ * identification and machine, but we don't want it to be caught
+ * and parsed in next iteration, because it is not in expected
+ * format and thus lead to error. */
+ }
+ } else if (ARCH_IS_ARM(arch)) {
+ char *buf = line;
+ if (STRPREFIX(buf, "BogoMIPS")) {
+ char *p;
+ unsigned int ui;
+
+ buf += 8;
+ while (*buf && c_isspace(*buf))
+ buf++;
+
+ if (*buf != ':' || !buf[1]) {
+ virReportError(VIR_ERR_INTERNAL_ERROR,
+ "%s", _("parsing cpu MHz from cpuinfo"));
+ goto cleanup;
+ }
+
+ if (virStrToLong_ui(buf+1, &p, 10, &ui) == 0
+ /* Accept trailing fractional part. */
+ && (*p == '\0' || *p == '.' || c_isspace(*p)))
+ *mhz = ui;
+ }
+ } else if (ARCH_IS_S390(arch)) {
+ /* s390x has no realistic value for CPU speed,
+ * assign a value of zero to signify this */
+ *mhz = 0;
+ } else {
+ VIR_WARN("Parser for /proc/cpuinfo needs to be adapted for your architecture");
+ break;
+ }
+ }
+
+ /* Get information about what CPUs are present in the host and what
+ * CPUs are online, so that we don't have to so for each node */
+ present_cpus_map = virHostCPUGetPresentBitmap();
+ if (!present_cpus_map)
+ goto cleanup;
+ online_cpus_map = virHostCPUGetOnlineBitmap();
+ if (!online_cpus_map)
+ goto cleanup;
+
+ /* OK, we've parsed clock speed out of /proc/cpuinfo. Get the
+ * core, node, socket, thread and topology information from /sys
+ */
+ if (virAsprintf(&sysfs_nodedir, "%s/node", sysfs_system_path) < 0)
+ goto cleanup;
+
+ if (!(nodedir = opendir(sysfs_nodedir))) {
+ /* the host isn't probably running a NUMA architecture */
+ goto fallback;
+ }
+
+ /* PPC-KVM needs the secondary threads of a core to be offline on the
+ * host. The kvm scheduler brings the secondary threads online in the
+ * guest context. Moreover, P8 processor has split-core capability
+ * where, there can be 1,2 or 4 subcores per core. The primaries of the
+ * subcores alone will be online on the host for a subcore in the
+ * host. Even though the actual threads per core for P8 processor is 8,
+ * depending on the subcores_per_core = 1, 2 or 4, the threads per
+ * subcore will vary accordingly to 8, 4 and 2 repectively.
+ * So, On host threads_per_core what is arrived at from sysfs in the
+ * current logic is actually the subcores_per_core. Threads per subcore
+ * can only be obtained from the kvm device. For example, on P8 wih 1
+ * core having 8 threads, sub_cores_percore=4, the threads 0,2,4 & 6
+ * will be online. The sysfs reflects this and in the current logic
+ * variable 'threads' will be 4 which is nothing but subcores_per_core.
+ * If the user tampers the cpu online/offline states using chcpu or other
+ * means, then it is an unsupported configuration for kvm.
+ * The code below tries to keep in mind
+ * - when the libvirtd is run inside a KVM guest or Phyp based guest.
+ * - Or on the kvm host where user manually tampers the cpu states to
+ * offline/online randomly.
+ * On hosts other than POWER this will be 0, in which case a simpler
+ * thread-counting logic will be used */
+ if ((threads_per_subcore = virHostCPUGetThreadsPerSubcore(arch)) < 0)
+ goto cleanup;
+
+ /* If the subcore configuration is not valid, just pretend subcores
+ * are not in use and count threads one by one */
+ if (!virHostCPUHasValidSubcoreConfiguration(threads_per_subcore))
+ threads_per_subcore = 0;
+
+ while ((direrr = virDirRead(nodedir, &nodedirent, sysfs_nodedir)) > 0) {
+ if (sscanf(nodedirent->d_name, "node%u", &node) != 1)
+ continue;
+
+ (*nodes)++;
+
+ if (virAsprintf(&sysfs_cpudir, "%s/node/%s",
+ sysfs_system_path, nodedirent->d_name) < 0)
+ goto cleanup;
+
+ if ((nodecpus = virHostCPUParseNode(sysfs_cpudir, arch,
+ present_cpus_map,
+ online_cpus_map,
+ threads_per_subcore,
+ &nodesockets, &nodecores,
+ &nodethreads, &offline)) < 0)
+ goto cleanup;
+
+ VIR_FREE(sysfs_cpudir);
+
+ *cpus += nodecpus;
+
+ if (nodesockets > *sockets)
+ *sockets = nodesockets;
+
+ if (nodecores > *cores)
+ *cores = nodecores;
+
+ if (nodethreads > *threads)
+ *threads = nodethreads;
+ }
+
+ if (direrr < 0)
+ goto cleanup;
+
+ if (*cpus && *nodes)
+ goto done;
+
+ fallback:
+ VIR_FREE(sysfs_cpudir);
+
+ if (virAsprintf(&sysfs_cpudir, "%s/cpu", sysfs_system_path) < 0)
+ goto cleanup;
+
+ if ((nodecpus = virHostCPUParseNode(sysfs_cpudir, arch,
+ present_cpus_map,
+ online_cpus_map,
+ threads_per_subcore,
+ &nodesockets, &nodecores,
+ &nodethreads, &offline)) < 0)
+ goto cleanup;
+
+ *nodes = 1;
+ *cpus = nodecpus;
+ *sockets = nodesockets;
+ *cores = nodecores;
+ *threads = nodethreads;
+
+ done:
+ /* There should always be at least one cpu, socket, node, and thread. */
+ if (*cpus == 0) {
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("no CPUs found"));
+ goto cleanup;
+ }
+
+ if (*sockets == 0) {
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("no sockets found"));
+ goto cleanup;
+ }
+
+ if (*threads == 0) {
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("no threads found"));
+ goto cleanup;
+ }
+
+ /* Now check if the topology makes sense. There are machines that don't
+ * expose their real number of nodes or for example the AMD Bulldozer
+ * architecture that exposes their Clustered integer core modules as both
+ * threads and cores. This approach throws off our detection. Unfortunately
+ * the nodeinfo structure isn't designed to carry the full topology so
+ * we're going to lie about the detected topology to notify the user
+ * to check the host capabilities for the actual topology. */
+ if ((*nodes *
+ *sockets *
+ *cores *
+ *threads) != (*cpus + offline)) {
+ *nodes = 1;
+ *sockets = 1;
+ *cores = *cpus + offline;
+ *threads = 1;
+ }
+
+ ret = 0;
+
+ cleanup:
+ /* don't shadow a more serious error */
+ if (nodedir && closedir(nodedir) < 0 && ret >= 0) {
+ virReportSystemError(errno, _("problem closing %s"), sysfs_nodedir);
+ ret = -1;
+ }
+
+ virBitmapFree(present_cpus_map);
+ virBitmapFree(online_cpus_map);
+ VIR_FREE(sysfs_nodedir);
+ VIR_FREE(sysfs_cpudir);
+ return ret;
+}
+
+static int
+virHostCPUStatsAssign(virNodeCPUStatsPtr param,
+ const char *name,
+ unsigned long long value)
+{
+ if (virStrcpyStatic(param->field, name) == NULL) {
+ virReportError(VIR_ERR_INTERNAL_ERROR,
+ "%s", _("kernel cpu time field is too long"
+ " for the destination"));
+ return -1;
+ }
+ param->value = value;
+ return 0;
+}
+
+# define TICK_TO_NSEC (1000ull * 1000ull * 1000ull / sysconf(_SC_CLK_TCK))
+
+int
+virHostCPUGetStatsLinux(FILE *procstat,
+ int cpuNum,
+ virNodeCPUStatsPtr params,
+ int *nparams)
+{
+ int ret = -1;
+ char line[1024];
+ unsigned long long usr, ni, sys, idle, iowait;
+ unsigned long long irq, softirq, steal, guest, guest_nice;
+ char cpu_header[4 + INT_BUFSIZE_BOUND(cpuNum)];
+
+ if ((*nparams) == 0) {
+ /* Current number of cpu stats supported by linux */
+ *nparams = LINUX_NB_CPU_STATS;
+ ret = 0;
+ goto cleanup;
+ }
+
+ if ((*nparams) != LINUX_NB_CPU_STATS) {
+ virReportInvalidArg(*nparams,
+ _("nparams in %s must be equal to %d"),
+ __FUNCTION__, LINUX_NB_CPU_STATS);
+ goto cleanup;
+ }
+
+ if (cpuNum == VIR_NODE_CPU_STATS_ALL_CPUS) {
+ strcpy(cpu_header, "cpu ");
+ } else {
+ snprintf(cpu_header, sizeof(cpu_header), "cpu%d ", cpuNum);
+ }
+
+ while (fgets(line, sizeof(line), procstat) != NULL) {
+ char *buf = line;
+
+ if (STRPREFIX(buf, cpu_header)) { /* aka logical CPU time */
+ if (sscanf(buf,
+ "%*s %llu %llu %llu %llu %llu" // user ~ iowait
+ "%llu %llu %llu %llu %llu", // irq ~ guest_nice
+ &usr, &ni, &sys, &idle, &iowait,
+ &irq, &softirq, &steal, &guest, &guest_nice) < 4) {
+ continue;
+ }
+
+ if (virHostCPUStatsAssign(¶ms[0], VIR_NODE_CPU_STATS_KERNEL,
+ (sys + irq + softirq) * TICK_TO_NSEC) < 0)
+ goto cleanup;
+
+ if (virHostCPUStatsAssign(¶ms[1], VIR_NODE_CPU_STATS_USER,
+ (usr + ni) * TICK_TO_NSEC) < 0)
+ goto cleanup;
+
+ if (virHostCPUStatsAssign(¶ms[2], VIR_NODE_CPU_STATS_IDLE,
+ idle * TICK_TO_NSEC) < 0)
+ goto cleanup;
+
+ if (virHostCPUStatsAssign(¶ms[3], VIR_NODE_CPU_STATS_IOWAIT,
+ iowait * TICK_TO_NSEC) < 0)
+ goto cleanup;
+
+ ret = 0;
+ goto cleanup;
+ }
+ }
+
+ virReportInvalidArg(cpuNum,
+ _("Invalid cpuNum in %s"),
+ __FUNCTION__);
+
+ cleanup:
+ return ret;
+}
+
+
+static char *
+virHostCPUGetGlobalPathLinux(const char *file)
+{
+ char *path = NULL;
+
+ if (virAsprintf(&path, "%s/cpu/%s", sysfs_system_path, file) < 0)
+ return NULL;
+
+ return path;
+}
+
+static char *
+virHostCPUGetPresentPathLinux(void)
+{
+ return virHostCPUGetGlobalPathLinux("present");
+}
+
+static char *
+virHostCPUGetOnlinePathLinux(void)
+{
+ return virHostCPUGetGlobalPathLinux("online");
+}
+
+/* Determine the number of CPUs (maximum CPU id + 1) from a file containing
+ * a list of CPU ids, like the Linux sysfs cpu/present file */
+static int
+virHostCPUParseCountLinux(const char *path)
+{
+ char *str = NULL;
+ char *tmp;
+ int ret = -1;
+
+ if (virFileReadAll(path, 5 * VIR_HOST_CPU_MASK_LEN, &str) < 0)
+ goto cleanup;
+
+ tmp = str;
+ do {
+ if (virStrToLong_i(tmp, &tmp, 10, &ret) < 0 ||
+ !strchr(",-\n", *tmp)) {
+ virReportError(VIR_ERR_NO_SUPPORT,
+ _("failed to parse %s"), path);
+ ret = -1;
+ goto cleanup;
+ }
+ } while (*tmp++ != '\n');
+ ret++;
+
+ cleanup:
+ VIR_FREE(str);
+ return ret;
+}
+
+/*
+ * Linux maintains cpu bit map under cpu/online. For example, if
+ * cpuid=5's flag is not set and max cpu is 7, the map file shows
+ * 0-4,6-7. This function parses it and returns cpumap.
+ */
+static virBitmapPtr
+virHostCPUParseMapLinux(int max_cpuid, const char *path)
+{
+ virBitmapPtr map = NULL;
+ char *str = NULL;
+
+ if (virFileReadAll(path, 5 * VIR_HOST_CPU_MASK_LEN, &str) < 0)
+ goto error;
+
+ if (virBitmapParse(str, 0, &map, max_cpuid) < 0)
+ goto error;
+
+ VIR_FREE(str);
+ return map;
+
+ error:
+ VIR_FREE(str);
+ virBitmapFree(map);
+ return NULL;
+}
+#endif
+
+
+int
+virHostCPUGetInfo(virArch hostarch,
+ unsigned int *cpus,
+ unsigned int *mhz,
+ unsigned int *nodes,
+ unsigned int *sockets,
+ unsigned int *cores,
+ unsigned int *threads)
+{
+#ifdef __linux__
+ int ret = -1;
+ FILE *cpuinfo = fopen(CPUINFO_PATH, "r");
+
+ if (!cpuinfo) {
+ virReportSystemError(errno,
+ _("cannot open %s"), CPUINFO_PATH);
+ return -1;
+ }
+
+ ret = virHostCPUGetInfoPopulateLinux(cpuinfo, hostarch,
+ cpus, mhz, nodes,
+ sockets, cores, threads);
+ if (ret < 0)
+ goto cleanup;
+
+ cleanup:
+ VIR_FORCE_FCLOSE(cpuinfo);
+ return ret;
+#elif defined(__FreeBSD__) || defined(__APPLE__)
+ unsigned long cpu_freq;
+ size_t cpu_freq_len = sizeof(cpu_freq);
+
+ *cpus = virHostCPUGetCountAppleFreeBSD();
+ if (*cpus == -1)
+ return -1;
+
+ *nodes = 1;
+ *sockets = 1;
+ *cores = *cpus;
+ *threads = 1;
+
+# ifdef __FreeBSD__
+ if (sysctlbyname("dev.cpu.0.freq", &cpu_freq, &cpu_freq_len, NULL, 0) < 0) {
+ virReportSystemError(errno, "%s", _("cannot obtain CPU freq"));
+ return -1;
+ }
+
+ *mhz = cpu_freq;
+# else
+ if (sysctlbyname("hw.cpufrequency", &cpu_freq, &cpu_freq_len, NULL, 0) < 0) {
+ virReportSystemError(errno, "%s", _("cannot obtain CPU freq"));
+ return -1;
+ }
+
+ *mhz = cpu_freq / 1000000;
+# endif
+
+ return 0;
+#else
+ /* XXX Solaris will need an impl later if they port QEMU driver */
+ virReportError(VIR_ERR_NO_SUPPORT, "%s",
+ _("node info not implemented on this platform"));
+ return -1;
+#endif
+}
+
+
+int
+virHostCPUGetStats(int cpuNum ATTRIBUTE_UNUSED,
+ virNodeCPUStatsPtr params ATTRIBUTE_UNUSED,
+ int *nparams ATTRIBUTE_UNUSED,
+ unsigned int flags)
+{
+ virCheckFlags(0, -1);
+
+#ifdef __linux__
+ {
+ int ret;
+ FILE *procstat = fopen(PROCSTAT_PATH, "r");
+ if (!procstat) {
+ virReportSystemError(errno,
+ _("cannot open %s"), PROCSTAT_PATH);
+ return -1;
+ }
+ ret = virHostCPUGetStatsLinux(procstat, cpuNum, params, nparams);
+ VIR_FORCE_FCLOSE(procstat);
+
+ return ret;
+ }
+#elif defined(__FreeBSD__)
+ return virHostCPUGetStatsFreeBSD(cpuNum, params, nparams);
+#else
+ virReportError(VIR_ERR_NO_SUPPORT, "%s",
+ _("node CPU stats not implemented on this platform"));
+ return -1;
+#endif
+}
+
+
+int
+virHostCPUGetCount(void)
+{
+#if defined(__linux__)
+ /* To support older kernels that lack cpu/present, such as 2.6.18
+ * in RHEL5, we fall back to count cpu/cpuNN entries; this assumes
+ * that such kernels also lack hotplug, and therefore cpu/cpuNN
+ * will be consecutive.
+ */
+ char *present_path = NULL;
+ char *cpupath = NULL;
+ int ncpu = -1;
+
+ if (!(present_path = virHostCPUGetPresentPathLinux()))
+ return -1;
+
+ if (virFileExists(present_path)) {
+ ncpu = virHostCPUParseCountLinux(present_path);
+ goto cleanup;
+ }
+
+ if (virAsprintf(&cpupath, "%s/cpu/cpu0", sysfs_system_path) < 0)
+ goto cleanup;
+ if (virFileExists(cpupath)) {
+ ncpu = 0;
+ do {
+ ncpu++;
+ VIR_FREE(cpupath);
+ if (virAsprintf(&cpupath, "%s/cpu/cpu%d",
+ sysfs_system_path, ncpu) < 0) {
+ ncpu = -1;
+ goto cleanup;
+ }
+ } while (virFileExists(cpupath));
+ } else {
+ /* no cpu/cpu0: we give up */
+ virReportError(VIR_ERR_NO_SUPPORT, "%s",
+ _("host cpu counting not supported on this node"));
+ }
+
+ cleanup:
+ VIR_FREE(present_path);
+ VIR_FREE(cpupath);
+ return ncpu;
+#elif defined(__FreeBSD__) || defined(__APPLE__)
+ return virHostCPUGetCountAppleFreeBSD();
+#else
+ virReportError(VIR_ERR_NO_SUPPORT, "%s",
+ _("host cpu counting not implemented on this platform"));
+ return -1;
+#endif
+}
+
+virBitmapPtr
+virHostCPUGetPresentBitmap(void)
+{
+#ifdef __linux__
+ virBitmapPtr present_cpus = NULL;
+ char *present_path = NULL;
+ int npresent_cpus;
+
+ if ((npresent_cpus = virHostCPUGetCount()) < 0)
+ goto cleanup;
+
+ if (!(present_path = virHostCPUGetPresentPathLinux()))
+ goto cleanup;
+
+ /* If the cpu/present file is available, parse it and exit */
+ if (virFileExists(present_path)) {
+ present_cpus = virHostCPUParseMapLinux(npresent_cpus, present_path);
+ goto cleanup;
+ }
+
+ /* If the file is not available, we can assume that the kernel is
+ * too old to support non-consecutive CPU ids and just mark all
+ * possible CPUs as present */
+ if (!(present_cpus = virBitmapNew(npresent_cpus)))
+ goto cleanup;
+
+ virBitmapSetAll(present_cpus);
+
+ cleanup:
+ VIR_FREE(present_path);
+
+ return present_cpus;
+#endif
+ virReportError(VIR_ERR_NO_SUPPORT, "%s",
+ _("node present CPU map not implemented on this platform"));
+ return NULL;
+}
+
+virBitmapPtr
+virHostCPUGetOnlineBitmap(void)
+{
+#ifdef __linux__
+ char *online_path = NULL;
+ char *cpudir = NULL;
+ virBitmapPtr cpumap;
+ int present;
+
+ present = virHostCPUGetCount();
+ if (present < 0)
+ return NULL;
+
+ if (!(online_path = virHostCPUGetOnlinePathLinux()))
+ return NULL;
+ if (virFileExists(online_path)) {
+ cpumap = virHostCPUParseMapLinux(present, online_path);
+ } else {
+ size_t i;
+
+ cpumap = virBitmapNew(present);
+ if (!cpumap)
+ goto cleanup;
+
+ if (virAsprintf(&cpudir, "%s/cpu", sysfs_system_path) < 0)
+ goto cleanup;
+
+ for (i = 0; i < present; i++) {
+ int online = virHostCPUGetValue(cpudir, i, "online", 1);
+ if (online < 0) {
+ virBitmapFree(cpumap);
+ cpumap = NULL;
+ goto cleanup;
+ }
+ if (online)
+ ignore_value(virBitmapSetBit(cpumap, i));
+ }
+ }
+
+ cleanup:
+ VIR_FREE(online_path);
+ VIR_FREE(cpudir);
+ return cpumap;
+#else
+ virReportError(VIR_ERR_NO_SUPPORT, "%s",
+ _("node online CPU map not implemented on this platform"));
+ return NULL;
+#endif
+}
+
+
+int
+virHostCPUGetMap(unsigned char **cpumap,
+ unsigned int *online,
+ unsigned int flags)
+{
+ virBitmapPtr cpus = NULL;
+ int ret = -1;
+ int dummy;
+
+ virCheckFlags(0, -1);
+
+ if (!cpumap && !online)
+ return virHostCPUGetCount();
+
+ if (!(cpus = virHostCPUGetOnlineBitmap()))
+ goto cleanup;
+
+ if (cpumap && virBitmapToData(cpus, cpumap, &dummy) < 0)
+ goto cleanup;
+ if (online)
+ *online = virBitmapCountBits(cpus);
+
+ ret = virBitmapSize(cpus);
+
+ cleanup:
+ if (ret < 0 && cpumap)
+ VIR_FREE(*cpumap);
+ virBitmapFree(cpus);
+ return ret;
+}
+
+
+#if HAVE_LINUX_KVM_H && defined(KVM_CAP_PPC_SMT)
+
+/* Get the number of threads per subcore.
+ *
+ * This will be 2, 4 or 8 on POWER hosts, depending on the current
+ * micro-threading configuration, and 0 everywhere else.
+ *
+ * Returns the number of threads per subcore if subcores are in use, zero
+ * if subcores are not in use, and a negative value on error */
+int
+virHostCPUGetThreadsPerSubcore(virArch arch)
+{
+ int threads_per_subcore = 0;
+ const char *kvmpath = "/dev/kvm";
+ int kvmfd;
+
+ if (ARCH_IS_PPC64(arch)) {
+
+ /* It's okay if /dev/kvm doesn't exist, because
+ * a. we might be running in a guest
+ * b. the kvm module might not be installed or enabled
+ * In either case, falling back to the subcore-unaware thread
+ * counting logic is the right thing to do */
+ if (!virFileExists(kvmpath))
+ goto out;
+
+ if ((kvmfd = open(kvmpath, O_RDONLY)) < 0) {
+ /* This can happen when running as a regular user if
+ * permissions are tight enough, in which case erroring out
+ * is better than silently falling back and reporting
+ * different nodeinfo depending on the user */
+ virReportSystemError(errno,
+ _("Failed to open '%s'"),
+ kvmpath);
+ threads_per_subcore = -1;
+ goto out;
+ }
+
+ /* For Phyp and KVM based guests the ioctl for KVM_CAP_PPC_SMT
+ * returns zero and both primary and secondary threads will be
+ * online */
+ threads_per_subcore = ioctl(kvmfd,
+ KVM_CHECK_EXTENSION,
+ KVM_CAP_PPC_SMT);
+
+ VIR_FORCE_CLOSE(kvmfd);
+ }
+
+ out:
+ return threads_per_subcore;
+}
+
+#else
+
+/* Fallback for nodeGetThreadsPerSubcore() used when KVM headers
+ * are not available on the system */
+int
+virHostCPUGetThreadsPerSubcore(virArch arch ATTRIBUTE_UNUSED)
+{
+ return 0;
+}
+
+#endif /* HAVE_LINUX_KVM_H && defined(KVM_CAP_PPC_SMT) */
--- /dev/null
+/*
+ * virhostcpu.h: helper APIs for host CPU info
+ *
+ * Copyright (C) 2006-2016 Red Hat, Inc.
+ * Copyright (C) 2006 Daniel P. Berrange
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see
+ * <http://www.gnu.org/licenses/>.
+ *
+ * Author: Daniel P. Berrange <berrange@redhat.com>
+ */
+
+#ifndef __VIR_HOSTCPU_H__
+# define __VIR_HOSTCPU_H__
+
+# include "internal.h"
+# include "virarch.h"
+# include "virbitmap.h"
+
+# define VIR_HOST_CPU_MASK_LEN 1024
+
+int virHostCPUGetStats(int cpuNum,
+ virNodeCPUStatsPtr params,
+ int *nparams,
+ unsigned int flags);
+
+virBitmapPtr virHostCPUGetPresentBitmap(void);
+virBitmapPtr virHostCPUGetOnlineBitmap(void);
+int virHostCPUGetCount(void);
+int virHostCPUGetThreadsPerSubcore(virArch arch);
+
+int virHostCPUGetMap(unsigned char **cpumap,
+ unsigned int *online,
+ unsigned int flags);
+int virHostCPUGetInfo(virArch hostarch,
+ unsigned int *cpus,
+ unsigned int *mhz,
+ unsigned int *nodes,
+ unsigned int *sockets,
+ unsigned int *cores,
+ unsigned int *threads);
+
+#endif /* __VIR_HOSTCPU_H__*/
--- /dev/null
+/*
+ * virhostcpupriv.h: helper APIs for host CPU info
+ *
+ * Copyright (C) 2014-2016 Red Hat, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see
+ * <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#ifndef __VIR_HOSTCPU_PRIV_H__
+# define __VIR_HOSTCPU_PRIV_H__
+
+# include "virhostcpu.h"
+
+# ifdef __linux__
+void virHostCPUSetSysFSSystemPathLinux(const char *path);
+
+int virHostCPUGetInfoPopulateLinux(FILE *cpuinfo,
+ virArch arch,
+ unsigned int *cpus,
+ unsigned int *mhz,
+ unsigned int *nodes,
+ unsigned int *sockets,
+ unsigned int *cores,
+ unsigned int *threads);
+
+int virHostCPUGetStatsLinux(FILE *procstat,
+ int cpuNum,
+ virNodeCPUStatsPtr params,
+ int *nparams);
+# endif
+
+#endif /* __VIR_HOSTCPU_PRIV_H__ */
networkxml2xmlupdatein \
networkxml2xmlupdateout \
nodedevschemadata \
- nodeinfodata \
+ virhostcpudata \
nssdata \
nwfilterxml2firewalldata \
nwfilterxml2xmlin \
test_helpers = commandhelper ssh virconftest
test_programs = virshtest sockettest \
- nodeinfotest virbuftest \
+ virhostcputest virbuftest \
commandtest seclabeltest \
virhashtest \
viratomictest \
virpcimock.la \
virnetdevmock.la \
virrandommock.la \
- nodeinfomock.la \
+ virhostcpumock.la \
nssmock.la \
$(NULL)
if WITH_QEMU
virconftest.c
virconftest_LDADD = $(LDADDS)
-nodeinfotest_SOURCES = \
- nodeinfotest.c testutils.h testutils.c
-nodeinfotest_LDADD = $(LDADDS)
+virhostcputest_SOURCES = \
+ virhostcputest.c testutils.h testutils.c
+virhostcputest_LDADD = $(LDADDS)
commandtest_SOURCES = \
commandtest.c testutils.h testutils.c
virrandommock_la_LDFLAGS = $(MOCKLIBS_LDFLAGS)
virrandommock_la_LIBADD = $(MOCKLIBS_LIBS)
-nodeinfomock_la_SOURCES = \
- nodeinfomock.c
-nodeinfomock_la_CFLAGS = $(AM_CFLAGS)
-nodeinfomock_la_LDFLAGS = $(MOCKLIBS_LDFLAGS)
-nodeinfomock_la_LIBADD = $(MOCKLIBS_LIBS)
+virhostcpumock_la_SOURCES = \
+ virhostcpumock.c
+virhostcpumock_la_CFLAGS = $(AM_CFLAGS)
+virhostcpumock_la_LDFLAGS = $(MOCKLIBS_LDFLAGS)
+virhostcpumock_la_LIBADD = $(MOCKLIBS_LIBS)
nsstest_SOURCES = \
nsstest.c testutils.h testutils.c
+++ /dev/null
-Processor : AArch64 Processor rev 0 (aarch64)
-processor : 0
-processor : 1
-processor : 2
-processor : 3
-processor : 4
-processor : 5
-processor : 6
-processor : 7
-Features : fp asimd evtstrm
-CPU implementer : 0x50
-CPU architecture: AArch64
-CPU variant : 0x0
-CPU part : 0x000
-CPU revision : 0
-
-Hardware : APM X-Gene Mustang board
+++ /dev/null
-CPUs: 8/8, MHz: 0, Nodes: 1, Sockets: 4, Cores: 2, Threads: 1
+++ /dev/null
-CPUs: 8/8, MHz: 0, Nodes: 1, Sockets: 1, Cores: 8, Threads: 1
+++ /dev/null
-Processor : ARMv6-compatible processor rev 7 (v6l)
-BogoMIPS : 697.95
-Features : swp half thumb fastmult vfp edsp java tls
-CPU implementer : 0x41
-CPU architecture: 7
-CPU variant : 0x0
-CPU part : 0xb76
-CPU revision : 7
-
-Hardware : BCM2708
-Revision : 1000003
-Serial : 000000008fbfc895
+++ /dev/null
-CPUs: 1/1, MHz: 697, Nodes: 1, Sockets: 1, Cores: 1, Threads: 1
+++ /dev/null
-cpu:
-kernel: 8751170
-user: 14128079
-idle: 1816344522
-iowait: 81323
-
-cpu0:
-kernel: 447603
-user: 749021
-idle: 75399242
-iowait: 5295
-
-cpu1:
-kernel: 167215
-user: 337326
-idle: 76178612
-iowait: 1121
-
-cpu2:
-kernel: 308930
-user: 666889
-idle: 75649696
-iowait: 4298
-
-cpu3:
-kernel: 227674
-user: 328464
-idle: 76131634
-iowait: 1219
-
-cpu4:
-kernel: 299514
-user: 583915
-idle: 75746383
-iowait: 3997
-
-cpu5:
-kernel: 112287
-user: 231867
-idle: 76336319
-iowait: 798
-
-cpu6:
-kernel: 546590
-user: 896252
-idle: 75132665
-iowait: 7210
-
-cpu7:
-kernel: 177715
-user: 342337
-idle: 76154889
-iowait: 1933
-
-cpu8:
-kernel: 452773
-user: 772479
-idle: 75359327
-iowait: 5845
-
-cpu9:
-kernel: 1050230
-user: 1079258
-idle: 74532776
-iowait: 3340
-
-cpu10:
-kernel: 535495
-user: 847295
-idle: 75202362
-iowait: 4038
-
-cpu11:
-kernel: 171635
-user: 323891
-idle: 76181622
-iowait: 993
-
-cpu12:
-kernel: 331031
-user: 683257
-idle: 75587176
-iowait: 5174
-
-cpu13:
-kernel: 112686
-user: 230633
-idle: 76345295
-iowait: 1367
-
-cpu14:
-kernel: 251393
-user: 547599
-idle: 75824554
-iowait: 5195
-
-cpu15:
-kernel: 199044
-user: 260673
-idle: 76230586
-iowait: 1379
-
-cpu16:
-kernel: 244158
-user: 463357
-idle: 75923993
-iowait: 6211
-
-cpu17:
-kernel: 88571
-user: 189253
-idle: 76411610
-iowait: 1388
-
-cpu18:
-kernel: 546539
-user: 875655
-idle: 75096896
-iowait: 5756
-
-cpu19:
-kernel: 186366
-user: 348768
-idle: 76137323
-iowait: 1299
-
-cpu20:
-kernel: 449460
-user: 765202
-idle: 75348938
-iowait: 4389
-
-cpu21:
-kernel: 1045076
-user: 1116075
-idle: 74500557
-iowait: 2411
-
-cpu22:
-kernel: 534125
-user: 847779
-idle: 75178185
-iowait: 5632
-
-cpu23:
-kernel: 265029
-user: 640815
-idle: 75753872
-iowait: 1026
-
+++ /dev/null
-cpu 14126233 1846 7764352 1816344522 81323 395581 591237 0 5880634 0
-cpu0 748997 24 320851 75399242 5295 22050 104702 0 331814 0
-cpu1 337325 1 140909 76178612 1121 8962 17344 0 166726 0
-cpu2 666860 29 269302 75649696 4298 18473 21155 0 272094 0
-cpu3 328387 77 211400 76131634 1219 9701 6573 0 115551 0
-cpu4 583896 19 265185 75746383 3997 17525 16804 0 253387 0
-cpu5 231867 0 100660 76336319 798 6856 4771 0 118465 0
-cpu6 896023 229 472933 75132665 7210 25811 47846 0 410328 0
-cpu7 342336 1 159567 76154889 1933 8675 9473 0 204523 0
-cpu8 772415 64 382065 75359327 5845 22810 47898 0 347169 0
-cpu9 1078771 487 1007467 74532776 3340 28419 14344 0 150374 0
-cpu10 847174 121 461786 75202362 4038 25206 48503 0 370309 0
-cpu11 323890 1 153521 76181622 993 9462 8652 0 199566 0
-cpu12 683237 20 290483 75587176 5174 19287 21261 0 293663 0
-cpu13 230633 0 100001 76345295 1367 7171 5514 0 103907 0
-cpu14 547593 6 220118 75824554 5195 14963 16312 0 207464 0
-cpu15 260648 25 185128 76230586 1379 8448 5468 0 76655 0
-cpu16 463328 29 214199 75923993 6211 14403 15556 0 184943 0
-cpu17 189247 6 79317 76411610 1388 5455 3799 0 85456 0
-cpu18 875552 103 470237 75096896 5756 25159 51143 0 408446 0
-cpu19 348767 1 167550 76137323 1299 8813 10003 0 208604 0
-cpu20 765169 33 380697 75348938 4389 21782 46981 0 353323 0
-cpu21 1115675 400 1003579 74500557 2411 28146 13351 0 162678 0
-cpu22 847629 150 463239 75178185 5632 24933 45953 0 376150 0
-cpu23 640804 11 244148 75753872 1026 13061 7820 0 479032 0
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010100,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010100,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000101,01000000,00000000,00000000,00000000
+++ /dev/null
-120,128,136
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000101,01000000,00000000,00000000,00000000
+++ /dev/null
-120,128,136
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000101,01000000,00000000,00000000,00000000
+++ /dev/null
-120,128,136
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01010000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01010000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00010100,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00010100,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00010100,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000
+++ /dev/null
-0-15,17-23,25-39,41-47,49-71,73-103,105-111,113-119,121-127,129-135,137-159
+++ /dev/null
-16,24,40,48,72,104,112,120,128,136
+++ /dev/null
-16-31,40-55,72-79,104-143
+++ /dev/null
-../../cpu/cpu0
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu1
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu10
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu100
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu101
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu102
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu103
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu11
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu12
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu13
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu14
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu144
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu145
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu146
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu147
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu148
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu149
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu15
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu150
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu151
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu152
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu153
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu154
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu155
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu156
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu157
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu158
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu159
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu16
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu17
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu18
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu19
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu2
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu20
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu21
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu22
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu23
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu24
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu25
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu26
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu27
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu28
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu29
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu3
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu30
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu31
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu32
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu33
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu34
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu35
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu36
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu37
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu38
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu39
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu4
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu5
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu56
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu57
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu58
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu59
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu6
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu60
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu61
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu62
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu63
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu64
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu65
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu66
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu67
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu68
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu69
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu7
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu70
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu71
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu8
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu80
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu81
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu82
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu83
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu84
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu85
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu86
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu87
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu88
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu89
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu9
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu90
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu91
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu92
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu93
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu94
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu95
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu96
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu97
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu98
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu99
\ No newline at end of file
+++ /dev/null
-Node 0 MemTotal: 67108864 kB
-Node 0 MemFree: 61960640 kB
-Node 0 MemUsed: 5148224 kB
-Node 0 Active: 124864 kB
-Node 0 Inactive: 107584 kB
-Node 0 Active(anon): 83648 kB
-Node 0 Inactive(anon): 8768 kB
-Node 0 Active(file): 41216 kB
-Node 0 Inactive(file): 98816 kB
-Node 0 Unevictable: 0 kB
-Node 0 Mlocked: 0 kB
-Node 0 Dirty: 128 kB
-Node 0 Writeback: 0 kB
-Node 0 FilePages: 155008 kB
-Node 0 Mapped: 31552 kB
-Node 0 AnonPages: 77312 kB
-Node 0 Shmem: 15104 kB
-Node 0 KernelStack: 8992 kB
-Node 0 PageTables: 1728 kB
-Node 0 NFS_Unstable: 0 kB
-Node 0 Bounce: 0 kB
-Node 0 WritebackTmp: 0 kB
-Node 0 Slab: 151872 kB
-Node 0 SReclaimable: 27776 kB
-Node 0 SUnreclaim: 124096 kB
-Node 0 AnonHugePages: 0 kB
-Node 0 HugePages_Total: 0
-Node 0 HugePages_Free: 0
-Node 0 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu40
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu41
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu42
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu43
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu44
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu45
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu46
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu47
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu48
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu49
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu50
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu51
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu52
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu53
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu54
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu55
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu72
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu73
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu74
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu75
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu76
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu77
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu78
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu79
\ No newline at end of file
+++ /dev/null
-Node 1 MemTotal: 67108864 kB
-Node 1 MemFree: 66143552 kB
-Node 1 MemUsed: 965312 kB
-Node 1 Active: 125952 kB
-Node 1 Inactive: 255808 kB
-Node 1 Active(anon): 79808 kB
-Node 1 Inactive(anon): 448 kB
-Node 1 Active(file): 46144 kB
-Node 1 Inactive(file): 255360 kB
-Node 1 Unevictable: 0 kB
-Node 1 Mlocked: 0 kB
-Node 1 Dirty: 213760 kB
-Node 1 Writeback: 0 kB
-Node 1 FilePages: 310656 kB
-Node 1 Mapped: 27328 kB
-Node 1 AnonPages: 73856 kB
-Node 1 Shmem: 6336 kB
-Node 1 KernelStack: 4624 kB
-Node 1 PageTables: 512 kB
-Node 1 NFS_Unstable: 0 kB
-Node 1 Bounce: 0 kB
-Node 1 WritebackTmp: 0 kB
-Node 1 Slab: 130688 kB
-Node 1 SReclaimable: 21120 kB
-Node 1 SUnreclaim: 109568 kB
-Node 1 AnonHugePages: 0 kB
-Node 1 HugePages_Total: 0
-Node 1 HugePages_Free: 0
-Node 1 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu104
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu105
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu106
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu107
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu108
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu109
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu110
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu111
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu112
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu113
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu114
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu115
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu116
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu117
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu118
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu119
\ No newline at end of file
+++ /dev/null
-Node 16 MemTotal: 67108864 kB
-Node 16 MemFree: 66573952 kB
-Node 16 MemUsed: 534912 kB
-Node 16 Active: 14272 kB
-Node 16 Inactive: 16832 kB
-Node 16 Active(anon): 6272 kB
-Node 16 Inactive(anon): 64 kB
-Node 16 Active(file): 8000 kB
-Node 16 Inactive(file): 16768 kB
-Node 16 Unevictable: 0 kB
-Node 16 Mlocked: 0 kB
-Node 16 Dirty: 0 kB
-Node 16 Writeback: 0 kB
-Node 16 FilePages: 26176 kB
-Node 16 Mapped: 384 kB
-Node 16 AnonPages: 4928 kB
-Node 16 Shmem: 1408 kB
-Node 16 KernelStack: 1968 kB
-Node 16 PageTables: 192 kB
-Node 16 NFS_Unstable: 0 kB
-Node 16 Bounce: 0 kB
-Node 16 WritebackTmp: 0 kB
-Node 16 Slab: 46336 kB
-Node 16 SReclaimable: 2688 kB
-Node 16 SUnreclaim: 43648 kB
-Node 16 AnonHugePages: 0 kB
-Node 16 HugePages_Total: 0
-Node 16 HugePages_Free: 0
-Node 16 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu120
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu121
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu122
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu123
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu124
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu125
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu126
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu127
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu128
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu129
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu130
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu131
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu132
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu133
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu134
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu135
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu136
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu137
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu138
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu139
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu140
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu141
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu142
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu143
\ No newline at end of file
+++ /dev/null
-Node 17 MemTotal: 67108864 kB
-Node 17 MemFree: 66334656 kB
-Node 17 MemUsed: 774208 kB
-Node 17 Active: 15936 kB
-Node 17 Inactive: 12416 kB
-Node 17 Active(anon): 10944 kB
-Node 17 Inactive(anon): 64 kB
-Node 17 Active(file): 4992 kB
-Node 17 Inactive(file): 12352 kB
-Node 17 Unevictable: 0 kB
-Node 17 Mlocked: 0 kB
-Node 17 Dirty: 0 kB
-Node 17 Writeback: 0 kB
-Node 17 FilePages: 17600 kB
-Node 17 Mapped: 768 kB
-Node 17 AnonPages: 10752 kB
-Node 17 Shmem: 256 kB
-Node 17 KernelStack: 3808 kB
-Node 17 PageTables: 128 kB
-Node 17 NFS_Unstable: 0 kB
-Node 17 Bounce: 0 kB
-Node 17 WritebackTmp: 0 kB
-Node 17 Slab: 25792 kB
-Node 17 SReclaimable: 3840 kB
-Node 17 SUnreclaim: 21952 kB
-Node 17 AnonHugePages: 0 kB
-Node 17 HugePages_Total: 0
-Node 17 HugePages_Free: 0
-Node 17 HugePages_Surp: 0
+++ /dev/null
-processor : 0
-cpu : POWER7 (raw), altivec supported
-clock : 8.388608MHz
-revision : 2.3 (pvr 003f 0203)
-
-processor : 1
-cpu : POWER7 (raw), altivec supported
-clock : 8.388608MHz
-revision : 2.3 (pvr 003f 0203)
+++ /dev/null
-CPUs: 2/2, MHz: 8, Nodes: 1, Sockets: 1, Cores: 2, Threads: 1
+++ /dev/null
-processor : 16
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 24
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 40
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 48
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 72
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 104
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 112
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 120
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 128
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 136
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-timebase : 512000000
-platform : PowerNV
-model : 8247-22L
-machine : PowerNV 8247-22L
-firmware : OPAL v3
+++ /dev/null
-CPUs: 80/80, MHz: 3690, Nodes: 1, Sockets: 1, Cores: 80, Threads: 1
+++ /dev/null
-processor : 0
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 8
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 16
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 24
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 32
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 40
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 48
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 56
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 64
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 72
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 80
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 88
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 96
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 104
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 112
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 120
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 128
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 136
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 144
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 152
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-timebase : 512000000
-platform : PowerNV
-model : 8247-22L
-machine : PowerNV 8247-22L
-firmware : OPAL v3
+++ /dev/null
-CPUs: 160/160, MHz: 3690, Nodes: 4, Sockets: 1, Cores: 5, Threads: 8
+++ /dev/null
-processor : 0
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 8
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 16
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 24
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 32
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 48
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 96
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 136
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-timebase : 512000000
-platform : PowerNV
-model : 8247-22L
-machine : PowerNV 8247-22L
-firmware : OPAL v3
+++ /dev/null
-CPUs: 64/160, MHz: 3690, Nodes: 4, Sockets: 1, Cores: 5, Threads: 8
+++ /dev/null
-processor : 8
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 40
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 48
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 56
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 68
-cpu : POWER8E (raw), altivec supported
-clock : 2061.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 72
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 80
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 88
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 96
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 104
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 112
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 128
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 136
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 152
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 153
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 154
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 155
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 156
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 157
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 158
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-processor : 159
-cpu : POWER8E (raw), altivec supported
-clock : 3690.000000MHz
-revision : 2.1 (pvr 004b 0201)
-
-timebase : 512000000
-platform : PowerNV
-model : 8247-22L
-machine : PowerNV 8247-22L
-firmware : OPAL v3
+++ /dev/null
-CPUs: 21/160, MHz: 3690, Nodes: 4, Sockets: 1, Cores: 5, Threads: 8
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000ff
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000ff
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000ff
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000004
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000ff
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000008
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000ff
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000010
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000ff
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000020
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000ff
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000040
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000ff
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000080
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
+++ /dev/null
-0,8,16,24,32
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
+++ /dev/null
-80,88,96,104,112
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
+++ /dev/null
-80,88,96,104,112
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01010101,01000000,00000000,00000000,00000000
+++ /dev/null
-120,128,136,144,152
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01010101,01000000,00000000,00000000,00000000
+++ /dev/null
-120,128,136,144,152
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01010101,01000000,00000000,00000000,00000000
+++ /dev/null
-120,128,136,144,152
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01010101,01000000,00000000,00000000,00000000
+++ /dev/null
-120,128,136,144,152
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01010101,01000000,00000000,00000000,00000000
+++ /dev/null
-120,128,136,144,152
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
+++ /dev/null
-0,8,16,24,32
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
+++ /dev/null
-0,8,16,24,32
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
+++ /dev/null
-0,8,16,24,32
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000101,01010100,00000000
+++ /dev/null
-40,48,56,64,72
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000101,01010100,00000000
+++ /dev/null
-40,48,56,64,72
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000101,01010100,00000000
+++ /dev/null
-40,48,56,64,72
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000101,01010100,00000000
+++ /dev/null
-40,48,56,64,72
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000101,01010100,00000000
+++ /dev/null
-40,48,56,64,72
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
+++ /dev/null
-0,8,16,24,32
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
+++ /dev/null
-80,88,96,104,112
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
+++ /dev/null
-80,88,96,104,112
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
+++ /dev/null
-80,88,96,104,112
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000,00000000,00000000
+++ /dev/null
-1-7,9-15,17-23,25-31,33-39,41-47,49-55,57-63,65-71,73-79,81-87,89-95,97-103,105-111,113-119,121-127,129-135,137-143,145-151,153-159
+++ /dev/null
-0,8,16,24,32,40,48,56,64,72,80,88,96,104,112,120,128,136,144,152
+++ /dev/null
-../../cpu/cpu0
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu1
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu10
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu11
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu12
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu13
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu14
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu15
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu16
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu17
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu18
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu19
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu2
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu20
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu21
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu22
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu23
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu24
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu25
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu26
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu27
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu28
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu29
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu3
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu30
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu31
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu32
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu33
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu34
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu35
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu36
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu37
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu38
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu39
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu4
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu5
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu6
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu7
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu8
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu9
\ No newline at end of file
+++ /dev/null
-Node 0 MemTotal: 67108864 kB
-Node 0 MemFree: 61610496 kB
-Node 0 MemUsed: 5498368 kB
-Node 0 Active: 214080 kB
-Node 0 Inactive: 242560 kB
-Node 0 Active(anon): 144896 kB
-Node 0 Inactive(anon): 8960 kB
-Node 0 Active(file): 69184 kB
-Node 0 Inactive(file): 233600 kB
-Node 0 Unevictable: 0 kB
-Node 0 Mlocked: 0 kB
-Node 0 Dirty: 145024 kB
-Node 0 Writeback: 0 kB
-Node 0 FilePages: 337408 kB
-Node 0 Mapped: 49792 kB
-Node 0 AnonPages: 131584 kB
-Node 0 Shmem: 22272 kB
-Node 0 KernelStack: 11936 kB
-Node 0 PageTables: 2688 kB
-Node 0 NFS_Unstable: 0 kB
-Node 0 Bounce: 0 kB
-Node 0 WritebackTmp: 0 kB
-Node 0 Slab: 257536 kB
-Node 0 SReclaimable: 40832 kB
-Node 0 SUnreclaim: 216704 kB
-Node 0 AnonHugePages: 0 kB
-Node 0 HugePages_Total: 0
-Node 0 HugePages_Free: 0
-Node 0 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu40
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu41
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu42
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu43
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu44
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu45
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu46
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu47
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu48
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu49
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu50
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu51
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu52
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu53
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu54
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu55
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu56
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu57
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu58
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu59
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu60
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu61
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu62
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu63
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu64
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu65
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu66
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu67
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu68
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu69
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu70
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu71
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu72
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu73
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu74
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu75
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu76
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu77
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu78
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu79
\ No newline at end of file
+++ /dev/null
-Node 1 MemTotal: 67108864 kB
-Node 1 MemFree: 66559168 kB
-Node 1 MemUsed: 549696 kB
-Node 1 Active: 24192 kB
-Node 1 Inactive: 6016 kB
-Node 1 Active(anon): 21440 kB
-Node 1 Inactive(anon): 128 kB
-Node 1 Active(file): 2752 kB
-Node 1 Inactive(file): 5888 kB
-Node 1 Unevictable: 0 kB
-Node 1 Mlocked: 0 kB
-Node 1 Dirty: 0 kB
-Node 1 Writeback: 0 kB
-Node 1 FilePages: 9088 kB
-Node 1 Mapped: 5056 kB
-Node 1 AnonPages: 21120 kB
-Node 1 Shmem: 448 kB
-Node 1 KernelStack: 5472 kB
-Node 1 PageTables: 64 kB
-Node 1 NFS_Unstable: 0 kB
-Node 1 Bounce: 0 kB
-Node 1 WritebackTmp: 0 kB
-Node 1 Slab: 59712 kB
-Node 1 SReclaimable: 5952 kB
-Node 1 SUnreclaim: 53760 kB
-Node 1 AnonHugePages: 0 kB
-Node 1 HugePages_Total: 0
-Node 1 HugePages_Free: 0
-Node 1 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu100
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu101
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu102
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu103
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu104
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu105
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu106
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu107
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu108
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu109
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu110
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu111
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu112
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu113
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu114
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu115
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu116
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu117
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu118
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu119
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu80
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu81
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu82
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu83
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu84
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu85
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu86
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu87
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu88
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu89
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu90
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu91
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu92
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu93
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu94
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu95
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu96
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu97
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu98
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu99
\ No newline at end of file
+++ /dev/null
-Node 16 MemTotal: 67108864 kB
-Node 16 MemFree: 66459328 kB
-Node 16 MemUsed: 649536 kB
-Node 16 Active: 17920 kB
-Node 16 Inactive: 65600 kB
-Node 16 Active(anon): 9728 kB
-Node 16 Inactive(anon): 64 kB
-Node 16 Active(file): 8192 kB
-Node 16 Inactive(file): 65536 kB
-Node 16 Unevictable: 0 kB
-Node 16 Mlocked: 0 kB
-Node 16 Dirty: 0 kB
-Node 16 Writeback: 0 kB
-Node 16 FilePages: 73792 kB
-Node 16 Mapped: 4672 kB
-Node 16 AnonPages: 9664 kB
-Node 16 Shmem: 128 kB
-Node 16 KernelStack: 5072 kB
-Node 16 PageTables: 64 kB
-Node 16 NFS_Unstable: 0 kB
-Node 16 Bounce: 0 kB
-Node 16 WritebackTmp: 0 kB
-Node 16 Slab: 91968 kB
-Node 16 SReclaimable: 10944 kB
-Node 16 SUnreclaim: 81024 kB
-Node 16 AnonHugePages: 0 kB
-Node 16 HugePages_Total: 0
-Node 16 HugePages_Free: 0
-Node 16 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu120
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu121
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu122
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu123
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu124
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu125
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu126
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu127
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu128
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu129
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu130
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu131
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu132
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu133
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu134
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu135
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu136
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu137
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu138
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu139
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu140
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu141
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu142
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu143
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu144
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu145
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu146
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu147
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu148
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu149
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu150
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu151
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu152
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu153
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu154
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu155
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu156
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu157
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu158
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu159
\ No newline at end of file
+++ /dev/null
-Node 17 MemTotal: 67108864 kB
-Node 17 MemFree: 66328320 kB
-Node 17 MemUsed: 780544 kB
-Node 17 Active: 5440 kB
-Node 17 Inactive: 2560 kB
-Node 17 Active(anon): 4736 kB
-Node 17 Inactive(anon): 128 kB
-Node 17 Active(file): 704 kB
-Node 17 Inactive(file): 2432 kB
-Node 17 Unevictable: 0 kB
-Node 17 Mlocked: 0 kB
-Node 17 Dirty: 0 kB
-Node 17 Writeback: 0 kB
-Node 17 FilePages: 3392 kB
-Node 17 Mapped: 192 kB
-Node 17 AnonPages: 4672 kB
-Node 17 Shmem: 256 kB
-Node 17 KernelStack: 5488 kB
-Node 17 PageTables: 128 kB
-Node 17 NFS_Unstable: 0 kB
-Node 17 Bounce: 0 kB
-Node 17 WritebackTmp: 0 kB
-Node 17 Slab: 41536 kB
-Node 17 SReclaimable: 2496 kB
-Node 17 SUnreclaim: 39040 kB
-Node 17 AnonHugePages: 0 kB
-Node 17 HugePages_Total: 0
-Node 17 HugePages_Free: 0
-Node 17 HugePages_Surp: 0
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
+++ /dev/null
-0,8,16,24,32
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
+++ /dev/null
-80,88,96,104,112
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
+++ /dev/null
-80,88,96,104,112
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000101,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
+++ /dev/null
-0,8,16,24,32
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
+++ /dev/null
-0,8,16,24,32
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
+++ /dev/null
-0,8,16,24,32
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,01010100,00000000
+++ /dev/null
-40,48,56,72
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,01010100,00000000
+++ /dev/null
-40,48,56,72
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,01010100,00000000
+++ /dev/null
-40,48,56,72
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
+++ /dev/null
-0,8,16,24,32
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
+++ /dev/null
-80,88,96,104,112
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
+++ /dev/null
-80,88,96,104,112
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000,00000000,00000000
+++ /dev/null
-1-7,9-15,17-23,25-31,33-47,49-95,97-135,137-159
+++ /dev/null
-0,8,16,24,32,48,96,136
+++ /dev/null
-../../cpu/cpu0
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu1
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu10
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu11
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu12
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu13
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu14
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu15
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu16
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu17
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu18
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu19
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu2
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu20
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu21
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu22
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu23
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu24
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu25
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu26
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu27
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu28
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu29
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu3
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu30
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu31
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu32
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu33
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu34
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu35
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu36
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu37
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu38
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu39
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu4
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu5
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu6
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu7
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu8
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu9
\ No newline at end of file
+++ /dev/null
-Node 0 MemTotal: 67108864 kB
-Node 0 MemFree: 61653504 kB
-Node 0 MemUsed: 5455360 kB
-Node 0 Active: 221184 kB
-Node 0 Inactive: 212032 kB
-Node 0 Active(anon): 144576 kB
-Node 0 Inactive(anon): 8960 kB
-Node 0 Active(file): 76608 kB
-Node 0 Inactive(file): 203072 kB
-Node 0 Unevictable: 0 kB
-Node 0 Mlocked: 0 kB
-Node 0 Dirty: 92992 kB
-Node 0 Writeback: 0 kB
-Node 0 FilePages: 301504 kB
-Node 0 Mapped: 49792 kB
-Node 0 AnonPages: 131456 kB
-Node 0 Shmem: 22272 kB
-Node 0 KernelStack: 12016 kB
-Node 0 PageTables: 2048 kB
-Node 0 NFS_Unstable: 0 kB
-Node 0 Bounce: 0 kB
-Node 0 WritebackTmp: 0 kB
-Node 0 Slab: 249536 kB
-Node 0 SReclaimable: 44928 kB
-Node 0 SUnreclaim: 204608 kB
-Node 0 AnonHugePages: 0 kB
-Node 0 HugePages_Total: 0
-Node 0 HugePages_Free: 0
-Node 0 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu40
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu41
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu42
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu43
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu44
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu45
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu46
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu47
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu48
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu49
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu50
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu51
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu52
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu53
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu54
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu55
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu56
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu57
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu58
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu59
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu60
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu61
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu62
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu63
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu64
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu65
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu66
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu67
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu68
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu69
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu70
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu71
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu72
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu73
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu74
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu75
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu76
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu77
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu78
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu79
\ No newline at end of file
+++ /dev/null
-Node 1 MemTotal: 67108864 kB
-Node 1 MemFree: 66562176 kB
-Node 1 MemUsed: 546688 kB
-Node 1 Active: 24576 kB
-Node 1 Inactive: 6016 kB
-Node 1 Active(anon): 21824 kB
-Node 1 Inactive(anon): 128 kB
-Node 1 Active(file): 2752 kB
-Node 1 Inactive(file): 5888 kB
-Node 1 Unevictable: 0 kB
-Node 1 Mlocked: 0 kB
-Node 1 Dirty: 0 kB
-Node 1 Writeback: 0 kB
-Node 1 FilePages: 9088 kB
-Node 1 Mapped: 5056 kB
-Node 1 AnonPages: 21504 kB
-Node 1 Shmem: 448 kB
-Node 1 KernelStack: 5520 kB
-Node 1 PageTables: 64 kB
-Node 1 NFS_Unstable: 0 kB
-Node 1 Bounce: 0 kB
-Node 1 WritebackTmp: 0 kB
-Node 1 Slab: 58304 kB
-Node 1 SReclaimable: 5952 kB
-Node 1 SUnreclaim: 52352 kB
-Node 1 AnonHugePages: 0 kB
-Node 1 HugePages_Total: 0
-Node 1 HugePages_Free: 0
-Node 1 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu100
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu101
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu102
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu103
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu104
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu105
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu106
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu107
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu108
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu109
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu110
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu111
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu112
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu113
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu114
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu115
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu116
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu117
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu118
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu119
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu80
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu81
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu82
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu83
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu84
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu85
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu86
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu87
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu88
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu89
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu90
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu91
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu92
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu93
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu94
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu95
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu96
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu97
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu98
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu99
\ No newline at end of file
+++ /dev/null
-Node 16 MemTotal: 67108864 kB
-Node 16 MemFree: 66470528 kB
-Node 16 MemUsed: 638336 kB
-Node 16 Active: 17920 kB
-Node 16 Inactive: 65600 kB
-Node 16 Active(anon): 9728 kB
-Node 16 Inactive(anon): 64 kB
-Node 16 Active(file): 8192 kB
-Node 16 Inactive(file): 65536 kB
-Node 16 Unevictable: 0 kB
-Node 16 Mlocked: 0 kB
-Node 16 Dirty: 0 kB
-Node 16 Writeback: 0 kB
-Node 16 FilePages: 73792 kB
-Node 16 Mapped: 4672 kB
-Node 16 AnonPages: 9664 kB
-Node 16 Shmem: 128 kB
-Node 16 KernelStack: 5136 kB
-Node 16 PageTables: 64 kB
-Node 16 NFS_Unstable: 0 kB
-Node 16 Bounce: 0 kB
-Node 16 WritebackTmp: 0 kB
-Node 16 Slab: 82048 kB
-Node 16 SReclaimable: 9792 kB
-Node 16 SUnreclaim: 72256 kB
-Node 16 AnonHugePages: 0 kB
-Node 16 HugePages_Total: 0
-Node 16 HugePages_Free: 0
-Node 16 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu120
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu121
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu122
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu123
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu124
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu125
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu126
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu127
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu128
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu129
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu130
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu131
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu132
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu133
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu134
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu135
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu136
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu137
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu138
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu139
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu140
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu141
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu142
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu143
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu144
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu145
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu146
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu147
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu148
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu149
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu150
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu151
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu152
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu153
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu154
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu155
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu156
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu157
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu158
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu159
\ No newline at end of file
+++ /dev/null
-Node 17 MemTotal: 67108864 kB
-Node 17 MemFree: 66329472 kB
-Node 17 MemUsed: 779392 kB
-Node 17 Active: 5504 kB
-Node 17 Inactive: 2560 kB
-Node 17 Active(anon): 4800 kB
-Node 17 Inactive(anon): 128 kB
-Node 17 Active(file): 704 kB
-Node 17 Inactive(file): 2432 kB
-Node 17 Unevictable: 0 kB
-Node 17 Mlocked: 0 kB
-Node 17 Dirty: 0 kB
-Node 17 Writeback: 0 kB
-Node 17 FilePages: 3392 kB
-Node 17 Mapped: 192 kB
-Node 17 AnonPages: 4672 kB
-Node 17 Shmem: 256 kB
-Node 17 KernelStack: 5536 kB
-Node 17 PageTables: 128 kB
-Node 17 NFS_Unstable: 0 kB
-Node 17 Bounce: 0 kB
-Node 17 WritebackTmp: 0 kB
-Node 17 Slab: 41472 kB
-Node 17 SReclaimable: 2496 kB
-Node 17 SUnreclaim: 38976 kB
-Node 17 AnonHugePages: 0 kB
-Node 17 HugePages_Total: 0
-Node 17 HugePages_Free: 0
-Node 17 HugePages_Surp: 0
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
+++ /dev/null
-80,88,96,104,112
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
+++ /dev/null
-80,88,96,104,112
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
+++ /dev/null
-128,136,152-159
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
+++ /dev/null
-128,136,152-159
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
+++ /dev/null
-128,136,152-159
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000000,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
+++ /dev/null
-128,136,152-159
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000000,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
+++ /dev/null
-128,136,152-159
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000000,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
+++ /dev/null
-128,136,152-159
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000000,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
+++ /dev/null
-128,136,152-159
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000000,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
+++ /dev/null
-128,136,152-159
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000000,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
+++ /dev/null
-128,136,152-159
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000000,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
+++ /dev/null
-128,136,152-159
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000000,00000000,00000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000110,01010100,00000000
+++ /dev/null
-40,48,56,68,72
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000110,01010100,00000000
+++ /dev/null
-40,48,56,68,72
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000110,01010100,00000000
+++ /dev/null
-40,48,56,68,72
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000110,01010100,00000000
+++ /dev/null
-40,48,56,68,72
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000010,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000110,01010100,00000000
+++ /dev/null
-40,48,56,68,72
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
+++ /dev/null
-80,88,96,104,112
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
+++ /dev/null
-80,88,96,104,112
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000,00000000,00000000
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
+++ /dev/null
-80,88,96,104,112
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000,00000000,00000000
+++ /dev/null
-0-7,9-39,41-47,49-55,57-67,69-71,73-79,81-87,89-95,97-103,105-111,113-127,129-135,137-151
+++ /dev/null
-8,40,48,56,68,72,80,88,96,104,112,128,136,152-159
+++ /dev/null
-../../cpu/cpu0
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu1
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu10
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu11
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu12
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu13
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu14
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu15
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu16
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu17
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu18
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu19
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu2
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu20
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu21
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu22
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu23
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu24
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu25
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu26
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu27
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu28
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu29
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu3
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu30
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu31
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu32
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu33
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu34
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu35
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu36
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu37
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu38
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu39
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu4
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu5
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu6
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu7
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu8
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu9
\ No newline at end of file
+++ /dev/null
-Node 0 MemTotal: 67108864 kB
-Node 0 MemFree: 61482624 kB
-Node 0 MemUsed: 5626240 kB
-Node 0 Active: 298304 kB
-Node 0 Inactive: 314368 kB
-Node 0 Active(anon): 200192 kB
-Node 0 Inactive(anon): 9024 kB
-Node 0 Active(file): 98112 kB
-Node 0 Inactive(file): 305344 kB
-Node 0 Unevictable: 0 kB
-Node 0 Mlocked: 0 kB
-Node 0 Dirty: 145024 kB
-Node 0 Writeback: 0 kB
-Node 0 FilePages: 428480 kB
-Node 0 Mapped: 65408 kB
-Node 0 AnonPages: 186880 kB
-Node 0 Shmem: 22336 kB
-Node 0 KernelStack: 12336 kB
-Node 0 PageTables: 2496 kB
-Node 0 NFS_Unstable: 0 kB
-Node 0 Bounce: 0 kB
-Node 0 WritebackTmp: 0 kB
-Node 0 Slab: 237632 kB
-Node 0 SReclaimable: 46784 kB
-Node 0 SUnreclaim: 190848 kB
-Node 0 AnonHugePages: 0 kB
-Node 0 HugePages_Total: 0
-Node 0 HugePages_Free: 0
-Node 0 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu40
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu41
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu42
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu43
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu44
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu45
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu46
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu47
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu48
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu49
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu50
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu51
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu52
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu53
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu54
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu55
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu56
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu57
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu58
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu59
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu60
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu61
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu62
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu63
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu64
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu65
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu66
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu67
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu68
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu69
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu70
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu71
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu72
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu73
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu74
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu75
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu76
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu77
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu78
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu79
\ No newline at end of file
+++ /dev/null
-Node 1 MemTotal: 67108864 kB
-Node 1 MemFree: 66551040 kB
-Node 1 MemUsed: 557824 kB
-Node 1 Active: 33152 kB
-Node 1 Inactive: 6080 kB
-Node 1 Active(anon): 30400 kB
-Node 1 Inactive(anon): 192 kB
-Node 1 Active(file): 2752 kB
-Node 1 Inactive(file): 5888 kB
-Node 1 Unevictable: 0 kB
-Node 1 Mlocked: 0 kB
-Node 1 Dirty: 0 kB
-Node 1 Writeback: 0 kB
-Node 1 FilePages: 9472 kB
-Node 1 Mapped: 5120 kB
-Node 1 AnonPages: 30144 kB
-Node 1 Shmem: 832 kB
-Node 1 KernelStack: 5584 kB
-Node 1 PageTables: 192 kB
-Node 1 NFS_Unstable: 0 kB
-Node 1 Bounce: 0 kB
-Node 1 WritebackTmp: 0 kB
-Node 1 Slab: 58304 kB
-Node 1 SReclaimable: 5952 kB
-Node 1 SUnreclaim: 52352 kB
-Node 1 AnonHugePages: 0 kB
-Node 1 HugePages_Total: 0
-Node 1 HugePages_Free: 0
-Node 1 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu100
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu101
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu102
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu103
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu104
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu105
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu106
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu107
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu108
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu109
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu110
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu111
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu112
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu113
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu114
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu115
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu116
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu117
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu118
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu119
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu80
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu81
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu82
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu83
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu84
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu85
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu86
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu87
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu88
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu89
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu90
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu91
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu92
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu93
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu94
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu95
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu96
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu97
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu98
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu99
\ No newline at end of file
+++ /dev/null
-Node 16 MemTotal: 67108864 kB
-Node 16 MemFree: 66472768 kB
-Node 16 MemUsed: 636096 kB
-Node 16 Active: 16320 kB
-Node 16 Inactive: 65600 kB
-Node 16 Active(anon): 8128 kB
-Node 16 Inactive(anon): 64 kB
-Node 16 Active(file): 8192 kB
-Node 16 Inactive(file): 65536 kB
-Node 16 Unevictable: 0 kB
-Node 16 Mlocked: 0 kB
-Node 16 Dirty: 0 kB
-Node 16 Writeback: 0 kB
-Node 16 FilePages: 73792 kB
-Node 16 Mapped: 4672 kB
-Node 16 AnonPages: 8064 kB
-Node 16 Shmem: 128 kB
-Node 16 KernelStack: 5136 kB
-Node 16 PageTables: 64 kB
-Node 16 NFS_Unstable: 0 kB
-Node 16 Bounce: 0 kB
-Node 16 WritebackTmp: 0 kB
-Node 16 Slab: 81408 kB
-Node 16 SReclaimable: 9600 kB
-Node 16 SUnreclaim: 71808 kB
-Node 16 AnonHugePages: 0 kB
-Node 16 HugePages_Total: 0
-Node 16 HugePages_Free: 0
-Node 16 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu120
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu121
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu122
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu123
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu124
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu125
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu126
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu127
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu128
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu129
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu130
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu131
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu132
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu133
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu134
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu135
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu136
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu137
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu138
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu139
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu140
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu141
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu142
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu143
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu144
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu145
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu146
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu147
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu148
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu149
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu150
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu151
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu152
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu153
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu154
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu155
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu156
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu157
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu158
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu159
\ No newline at end of file
+++ /dev/null
-Node 17 MemTotal: 67108864 kB
-Node 17 MemFree: 66329280 kB
-Node 17 MemUsed: 779584 kB
-Node 17 Active: 5568 kB
-Node 17 Inactive: 2688 kB
-Node 17 Active(anon): 4800 kB
-Node 17 Inactive(anon): 256 kB
-Node 17 Active(file): 768 kB
-Node 17 Inactive(file): 2432 kB
-Node 17 Unevictable: 0 kB
-Node 17 Mlocked: 0 kB
-Node 17 Dirty: 0 kB
-Node 17 Writeback: 0 kB
-Node 17 FilePages: 3584 kB
-Node 17 Mapped: 192 kB
-Node 17 AnonPages: 4672 kB
-Node 17 Shmem: 384 kB
-Node 17 KernelStack: 5536 kB
-Node 17 PageTables: 128 kB
-Node 17 NFS_Unstable: 0 kB
-Node 17 Bounce: 0 kB
-Node 17 WritebackTmp: 0 kB
-Node 17 Slab: 41472 kB
-Node 17 SReclaimable: 2496 kB
-Node 17 SUnreclaim: 38976 kB
-Node 17 AnonHugePages: 0 kB
-Node 17 HugePages_Total: 0
-Node 17 HugePages_Free: 0
-Node 17 HugePages_Surp: 0
+++ /dev/null
-Node 0 MemTotal: 33554432 kB
-Node 0 MemFree: 12351744 kB
-Node 0 MemUsed: 21202688 kB
-Node 0 Active: 2086528 kB
-Node 0 Inactive: 1816512 kB
-Node 0 Active(anon): 174208 kB
-Node 0 Inactive(anon): 3840 kB
-Node 0 Active(file): 1912320 kB
-Node 0 Inactive(file): 1812672 kB
-Node 0 Unevictable: 0 kB
-Node 0 Mlocked: 0 kB
-Node 0 Dirty: 0 kB
-Node 0 Writeback: 0 kB
-Node 0 FilePages: 3758976 kB
-Node 0 Mapped: 13440 kB
-Node 0 AnonPages: 160704 kB
-Node 0 Shmem: 17664 kB
-Node 0 KernelStack: 2944 kB
-Node 0 PageTables: 12032 kB
-Node 0 NFS_Unstable: 0 kB
-Node 0 Bounce: 0 kB
-Node 0 WritebackTmp: 0 kB
-Node 0 Slab: 315904 kB
-Node 0 SReclaimable: 197824 kB
-Node 0 SUnreclaim: 118080 kB
-Node 0 HugePages_Total: 1024
-Node 0 HugePages_Free: 768
-Node 0 HugePages_Surp: 0
+++ /dev/null
-Node 1 MemTotal: 33554432 kB
-Node 1 MemFree: 11934016 kB
-Node 1 MemUsed: 21620416 kB
-Node 1 Active: 3225728 kB
-Node 1 Inactive: 1057536 kB
-Node 1 Active(anon): 154752 kB
-Node 1 Inactive(anon): 80320 kB
-Node 1 Active(file): 3070976 kB
-Node 1 Inactive(file): 977216 kB
-Node 1 Unevictable: 0 kB
-Node 1 Mlocked: 0 kB
-Node 1 Dirty: 192 kB
-Node 1 Writeback: 0 kB
-Node 1 FilePages: 4165696 kB
-Node 1 Mapped: 36416 kB
-Node 1 AnonPages: 117248 kB
-Node 1 Shmem: 117760 kB
-Node 1 KernelStack: 2144 kB
-Node 1 PageTables: 10368 kB
-Node 1 NFS_Unstable: 0 kB
-Node 1 Bounce: 0 kB
-Node 1 WritebackTmp: 0 kB
-Node 1 Slab: 277888 kB
-Node 1 SReclaimable: 175744 kB
-Node 1 SUnreclaim: 102144 kB
-Node 1 HugePages_Total: 1024
-Node 1 HugePages_Free: 1024
-Node 1 HugePages_Surp: 0
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003
+++ /dev/null
-00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002
+++ /dev/null
-../../cpu/cpu0
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu1
\ No newline at end of file
+++ /dev/null
-Node 0 MemTotal: 4085724 kB
-Node 0 MemFree: 291364 kB
-Node 0 MemUsed: 3794360 kB
-Node 0 Active: 2048032 kB
-Node 0 Inactive: 1218340 kB
-Node 0 Active(anon): 1420080 kB
-Node 0 Inactive(anon): 716324 kB
-Node 0 Active(file): 627952 kB
-Node 0 Inactive(file): 502016 kB
-Node 0 Unevictable: 3536 kB
-Node 0 Mlocked: 3536 kB
-Node 0 Dirty: 1192 kB
-Node 0 Writeback: 0 kB
-Node 0 FilePages: 1338636 kB
-Node 0 Mapped: 109700 kB
-Node 0 AnonPages: 1979864 kB
-Node 0 Shmem: 86764 kB
-Node 0 KernelStack: 4432 kB
-Node 0 PageTables: 34328 kB
-Node 0 NFS_Unstable: 0 kB
-Node 0 Bounce: 0 kB
-Node 0 WritebackTmp: 0 kB
-Node 0 Slab: 141504 kB
-Node 0 SReclaimable: 84436 kB
-Node 0 SUnreclaim: 57068 kB
-Node 0 AnonHugePages: 268288 kB
-Node 0 HugePages_Total: 0
-Node 0 HugePages_Free: 0
-Node 0 HugePages_Surp: 0
+++ /dev/null
-00000000,00000001
+++ /dev/null
-00000000,00000002
+++ /dev/null
-00000000,00000400
+++ /dev/null
-00000000,00000800
+++ /dev/null
-00000000,00001000
+++ /dev/null
-00000000,00002000
+++ /dev/null
-00000000,00004000
+++ /dev/null
-00000000,00008000
+++ /dev/null
-00000000,00010000
+++ /dev/null
-00000000,00020000
+++ /dev/null
-00000000,00040000
+++ /dev/null
-00000000,00080000
+++ /dev/null
-00000000,00000004
+++ /dev/null
-00000000,00100000
+++ /dev/null
-00000000,00200000
+++ /dev/null
-00000000,00400000
+++ /dev/null
-00000000,00800000
+++ /dev/null
-00000000,01000000
+++ /dev/null
-00000000,02000000
+++ /dev/null
-00000000,04000000
+++ /dev/null
-00000000,08000000
+++ /dev/null
-00000000,10000000
+++ /dev/null
-00000000,20000000
+++ /dev/null
-00000000,00000008
+++ /dev/null
-00000000,40000000
+++ /dev/null
-00000000,80000000
+++ /dev/null
-00000001,00000000
+++ /dev/null
-00000002,00000000
+++ /dev/null
-00000004,00000000
+++ /dev/null
-00000008,00000000
+++ /dev/null
-00000010,00000000
+++ /dev/null
-00000020,00000000
+++ /dev/null
-00000040,00000000
+++ /dev/null
-00000080,00000000
+++ /dev/null
-00000000,00000010
+++ /dev/null
-00000100,00000000
+++ /dev/null
-00000200,00000000
+++ /dev/null
-00000400,00000000
+++ /dev/null
-00000800,00000000
+++ /dev/null
-00001000,00000000
+++ /dev/null
-00002000,00000000
+++ /dev/null
-00004000,00000000
+++ /dev/null
-00008000,00000000
+++ /dev/null
-00000000,00000020
+++ /dev/null
-00000000,00000040
+++ /dev/null
-00000000,00000080
+++ /dev/null
-00000000,00000100
+++ /dev/null
-00000000,00000200
+++ /dev/null
-../../cpu/cpu0
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu12
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu16
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu20
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu4
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu8
\ No newline at end of file
+++ /dev/null
-Node 0 MemTotal: 67098848 kB
-Node 0 MemFree: 64989968 kB
-Node 0 MemUsed: 2108880 kB
-Node 0 Active: 136532 kB
-Node 0 Inactive: 146228 kB
-Node 0 Active(anon): 28124 kB
-Node 0 Inactive(anon): 160 kB
-Node 0 Active(file): 108408 kB
-Node 0 Inactive(file): 146068 kB
-Node 0 Unevictable: 0 kB
-Node 0 Mlocked: 0 kB
-Node 0 Dirty: 0 kB
-Node 0 Writeback: 0 kB
-Node 0 FilePages: 254676 kB
-Node 0 Mapped: 7284 kB
-Node 0 AnonPages: 15816 kB
-Node 0 Shmem: 200 kB
-Node 0 KernelStack: 5904 kB
-Node 0 PageTables: 2328 kB
-Node 0 NFS_Unstable: 0 kB
-Node 0 Bounce: 0 kB
-Node 0 WritebackTmp: 0 kB
-Node 0 Slab: 53304 kB
-Node 0 SReclaimable: 16580 kB
-Node 0 SUnreclaim: 36724 kB
-Node 0 HugePages_Total: 0
-Node 0 HugePages_Free: 0
-Node 0 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu24
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu28
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu32
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu36
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu40
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu44
\ No newline at end of file
+++ /dev/null
-Node 1 MemTotal: 67108864 kB
-Node 1 MemFree: 65361692 kB
-Node 1 MemUsed: 1747172 kB
-Node 1 Active: 41004 kB
-Node 1 Inactive: 108288 kB
-Node 1 Active(anon): 14656 kB
-Node 1 Inactive(anon): 292 kB
-Node 1 Active(file): 26348 kB
-Node 1 Inactive(file): 107996 kB
-Node 1 Unevictable: 0 kB
-Node 1 Mlocked: 0 kB
-Node 1 Dirty: 0 kB
-Node 1 Writeback: 0 kB
-Node 1 FilePages: 134664 kB
-Node 1 Mapped: 7012 kB
-Node 1 AnonPages: 14624 kB
-Node 1 Shmem: 324 kB
-Node 1 KernelStack: 176 kB
-Node 1 PageTables: 2488 kB
-Node 1 NFS_Unstable: 0 kB
-Node 1 Bounce: 0 kB
-Node 1 WritebackTmp: 0 kB
-Node 1 Slab: 47096 kB
-Node 1 SReclaimable: 13716 kB
-Node 1 SUnreclaim: 33380 kB
-Node 1 HugePages_Total: 0
-Node 1 HugePages_Free: 0
-Node 1 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu11
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu15
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu19
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu23
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu3
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu7
\ No newline at end of file
+++ /dev/null
-Node 2 MemTotal: 67108864 kB
-Node 2 MemFree: 64350240 kB
-Node 2 MemUsed: 2758624 kB
-Node 2 Active: 1049208 kB
-Node 2 Inactive: 121980 kB
-Node 2 Active(anon): 944424 kB
-Node 2 Inactive(anon): 668 kB
-Node 2 Active(file): 104784 kB
-Node 2 Inactive(file): 121312 kB
-Node 2 Unevictable: 0 kB
-Node 2 Mlocked: 0 kB
-Node 2 Dirty: 0 kB
-Node 2 Writeback: 0 kB
-Node 2 FilePages: 226784 kB
-Node 2 Mapped: 10920 kB
-Node 2 AnonPages: 35148 kB
-Node 2 Shmem: 684 kB
-Node 2 KernelStack: 1400 kB
-Node 2 PageTables: 6228 kB
-Node 2 NFS_Unstable: 0 kB
-Node 2 Bounce: 0 kB
-Node 2 WritebackTmp: 0 kB
-Node 2 Slab: 24700 kB
-Node 2 SReclaimable: 15072 kB
-Node 2 SUnreclaim: 9628 kB
-Node 2 HugePages_Total: 0
-Node 2 HugePages_Free: 0
-Node 2 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu27
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu31
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu35
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu39
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu43
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu47
\ No newline at end of file
+++ /dev/null
-Node 3 MemTotal: 67108864 kB
-Node 3 MemFree: 65372380 kB
-Node 3 MemUsed: 1736484 kB
-Node 3 Active: 87008 kB
-Node 3 Inactive: 71908 kB
-Node 3 Active(anon): 25684 kB
-Node 3 Inactive(anon): 444 kB
-Node 3 Active(file): 61324 kB
-Node 3 Inactive(file): 71464 kB
-Node 3 Unevictable: 0 kB
-Node 3 Mlocked: 0 kB
-Node 3 Dirty: 0 kB
-Node 3 Writeback: 0 kB
-Node 3 FilePages: 133260 kB
-Node 3 Mapped: 13668 kB
-Node 3 AnonPages: 21560 kB
-Node 3 Shmem: 472 kB
-Node 3 KernelStack: 680 kB
-Node 3 PageTables: 2392 kB
-Node 3 NFS_Unstable: 0 kB
-Node 3 Bounce: 0 kB
-Node 3 WritebackTmp: 0 kB
-Node 3 Slab: 26296 kB
-Node 3 SReclaimable: 18312 kB
-Node 3 SUnreclaim: 7984 kB
-Node 3 HugePages_Total: 0
-Node 3 HugePages_Free: 0
-Node 3 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu10
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu14
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu18
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu2
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu22
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu6
\ No newline at end of file
+++ /dev/null
-Node 4 MemTotal: 67108864 kB
-Node 4 MemFree: 64730416 kB
-Node 4 MemUsed: 2378448 kB
-Node 4 Active: 522732 kB
-Node 4 Inactive: 205384 kB
-Node 4 Active(anon): 411816 kB
-Node 4 Inactive(anon): 384 kB
-Node 4 Active(file): 110916 kB
-Node 4 Inactive(file): 205000 kB
-Node 4 Unevictable: 0 kB
-Node 4 Mlocked: 0 kB
-Node 4 Dirty: 0 kB
-Node 4 Writeback: 0 kB
-Node 4 FilePages: 316320 kB
-Node 4 Mapped: 10220 kB
-Node 4 AnonPages: 129184 kB
-Node 4 Shmem: 408 kB
-Node 4 KernelStack: 336 kB
-Node 4 PageTables: 2732 kB
-Node 4 NFS_Unstable: 0 kB
-Node 4 Bounce: 0 kB
-Node 4 WritebackTmp: 0 kB
-Node 4 Slab: 54172 kB
-Node 4 SReclaimable: 41160 kB
-Node 4 SUnreclaim: 13012 kB
-Node 4 HugePages_Total: 0
-Node 4 HugePages_Free: 0
-Node 4 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu26
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu30
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu34
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu38
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu42
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu46
\ No newline at end of file
+++ /dev/null
-Node 5 MemTotal: 67108864 kB
-Node 5 MemFree: 65315792 kB
-Node 5 MemUsed: 1793072 kB
-Node 5 Active: 92864 kB
-Node 5 Inactive: 118500 kB
-Node 5 Active(anon): 17360 kB
-Node 5 Inactive(anon): 280 kB
-Node 5 Active(file): 75504 kB
-Node 5 Inactive(file): 118220 kB
-Node 5 Unevictable: 0 kB
-Node 5 Mlocked: 0 kB
-Node 5 Dirty: 0 kB
-Node 5 Writeback: 0 kB
-Node 5 FilePages: 194028 kB
-Node 5 Mapped: 7680 kB
-Node 5 AnonPages: 13240 kB
-Node 5 Shmem: 304 kB
-Node 5 KernelStack: 160 kB
-Node 5 PageTables: 1756 kB
-Node 5 NFS_Unstable: 0 kB
-Node 5 Bounce: 0 kB
-Node 5 WritebackTmp: 0 kB
-Node 5 Slab: 30128 kB
-Node 5 SReclaimable: 21380 kB
-Node 5 SUnreclaim: 8748 kB
-Node 5 HugePages_Total: 0
-Node 5 HugePages_Free: 0
-Node 5 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu1
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu13
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu17
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu21
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu5
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu9
\ No newline at end of file
+++ /dev/null
-Node 6 MemTotal: 67108864 kB
-Node 6 MemFree: 65259848 kB
-Node 6 MemUsed: 1849016 kB
-Node 6 Active: 105044 kB
-Node 6 Inactive: 164968 kB
-Node 6 Active(anon): 13332 kB
-Node 6 Inactive(anon): 368 kB
-Node 6 Active(file): 91712 kB
-Node 6 Inactive(file): 164600 kB
-Node 6 Unevictable: 0 kB
-Node 6 Mlocked: 0 kB
-Node 6 Dirty: 0 kB
-Node 6 Writeback: 0 kB
-Node 6 FilePages: 256704 kB
-Node 6 Mapped: 3704 kB
-Node 6 AnonPages: 13324 kB
-Node 6 Shmem: 392 kB
-Node 6 KernelStack: 216 kB
-Node 6 PageTables: 1964 kB
-Node 6 NFS_Unstable: 0 kB
-Node 6 Bounce: 0 kB
-Node 6 WritebackTmp: 0 kB
-Node 6 Slab: 28548 kB
-Node 6 SReclaimable: 19596 kB
-Node 6 SUnreclaim: 8952 kB
-Node 6 HugePages_Total: 0
-Node 6 HugePages_Free: 0
-Node 6 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu25
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu29
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu33
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu37
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu41
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu45
\ No newline at end of file
+++ /dev/null
-Node 7 MemTotal: 67108864 kB
-Node 7 MemFree: 65303740 kB
-Node 7 MemUsed: 1805124 kB
-Node 7 Active: 60264 kB
-Node 7 Inactive: 77164 kB
-Node 7 Active(anon): 27672 kB
-Node 7 Inactive(anon): 632 kB
-Node 7 Active(file): 32592 kB
-Node 7 Inactive(file): 76532 kB
-Node 7 Unevictable: 0 kB
-Node 7 Mlocked: 0 kB
-Node 7 Dirty: 0 kB
-Node 7 Writeback: 0 kB
-Node 7 FilePages: 109772 kB
-Node 7 Mapped: 5508 kB
-Node 7 AnonPages: 27668 kB
-Node 7 Shmem: 648 kB
-Node 7 KernelStack: 208 kB
-Node 7 PageTables: 1820 kB
-Node 7 NFS_Unstable: 0 kB
-Node 7 Bounce: 0 kB
-Node 7 WritebackTmp: 0 kB
-Node 7 Slab: 19372 kB
-Node 7 SReclaimable: 11024 kB
-Node 7 SUnreclaim: 8348 kB
-Node 7 HugePages_Total: 0
-Node 7 HugePages_Free: 0
-Node 7 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu0
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu1
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu2
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu3
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu4
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu5
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu6
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu7
\ No newline at end of file
+++ /dev/null
-Node 0 MemTotal: 67002564 kB
-Node 0 MemFree: 63623272 kB
-Node 0 MemUsed: 3379292 kB
-Node 0 Active: 1335192 kB
-Node 0 Inactive: 157792 kB
-Node 0 Active(anon): 1170928 kB
-Node 0 Inactive(anon): 1168 kB
-Node 0 Active(file): 164264 kB
-Node 0 Inactive(file): 156624 kB
-Node 0 Unevictable: 0 kB
-Node 0 Mlocked: 0 kB
-Node 0 Dirty: 56 kB
-Node 0 Writeback: 0 kB
-Node 0 FilePages: 322312 kB
-Node 0 Mapped: 29584 kB
-Node 0 AnonPages: 111848 kB
-Node 0 Shmem: 1432 kB
-Node 0 KernelStack: 3712 kB
-Node 0 PageTables: 12024 kB
-Node 0 NFS_Unstable: 0 kB
-Node 0 Bounce: 0 kB
-Node 0 WritebackTmp: 0 kB
-Node 0 Slab: 88028 kB
-Node 0 SReclaimable: 50972 kB
-Node 0 SUnreclaim: 37056 kB
-Node 0 HugePages_Total: 0
-Node 0 HugePages_Free: 0
-Node 0 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu10
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu11
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu12
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu13
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu14
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu15
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu8
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu9
\ No newline at end of file
+++ /dev/null
-Node 1 MemTotal: 67108864 kB
-Node 1 MemFree: 61752192 kB
-Node 1 MemUsed: 5356672 kB
-Node 1 Active: 3325724 kB
-Node 1 Inactive: 206476 kB
-Node 1 Active(anon): 3124584 kB
-Node 1 Inactive(anon): 4348 kB
-Node 1 Active(file): 201140 kB
-Node 1 Inactive(file): 202128 kB
-Node 1 Unevictable: 0 kB
-Node 1 Mlocked: 0 kB
-Node 1 Dirty: 25996 kB
-Node 1 Writeback: 0 kB
-Node 1 FilePages: 408200 kB
-Node 1 Mapped: 28620 kB
-Node 1 AnonPages: 112092 kB
-Node 1 Shmem: 4432 kB
-Node 1 KernelStack: 1184 kB
-Node 1 PageTables: 15848 kB
-Node 1 NFS_Unstable: 0 kB
-Node 1 Bounce: 0 kB
-Node 1 WritebackTmp: 0 kB
-Node 1 Slab: 126440 kB
-Node 1 SReclaimable: 52996 kB
-Node 1 SUnreclaim: 73444 kB
-Node 1 HugePages_Total: 0
-Node 1 HugePages_Free: 0
-Node 1 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu0
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu1
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu2
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu3
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu4
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu5
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu6
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu7
\ No newline at end of file
+++ /dev/null
-Node 0 MemTotal: 8379620 kB
-Node 0 MemFree: 2971308 kB
-Node 0 MemUsed: 5408312 kB
-Node 0 Active: 3795016 kB
-Node 0 Inactive: 869528 kB
-Node 0 Active(anon): 3081132 kB
-Node 0 Inactive(anon): 13352 kB
-Node 0 Active(file): 713884 kB
-Node 0 Inactive(file): 856176 kB
-Node 0 Unevictable: 48324 kB
-Node 0 Mlocked: 13580 kB
-Node 0 Dirty: 84 kB
-Node 0 Writeback: 0 kB
-Node 0 FilePages: 1585776 kB
-Node 0 Mapped: 134048 kB
-Node 0 AnonPages: 866116 kB
-Node 0 Shmem: 13512 kB
-Node 0 KernelStack: 3904 kB
-Node 0 PageTables: 40664 kB
-Node 0 NFS_Unstable: 0 kB
-Node 0 Bounce: 0 kB
-Node 0 WritebackTmp: 0 kB
-Node 0 Slab: 244404 kB
-Node 0 SReclaimable: 161784 kB
-Node 0 SUnreclaim: 82620 kB
-Node 0 HugePages_Total: 0
-Node 0 HugePages_Free: 0
-Node 0 HugePages_Surp: 0
+++ /dev/null
-00000000,00000000,00000000,00000001
+++ /dev/null
-00000000,00000000,00000000,00000002
+++ /dev/null
-00000000,00000000,00000000,00000400
+++ /dev/null
-00000000,00000000,00000000,00000800
+++ /dev/null
-00000000,00000000,00000000,00001000
+++ /dev/null
-00000000,00000000,00000000,00002000
+++ /dev/null
-00000000,00000000,00000000,00004000
+++ /dev/null
-00000000,00000000,00000000,00008000
+++ /dev/null
-00000000,00000000,00000000,00010000
+++ /dev/null
-00000000,00000000,00000000,00020000
+++ /dev/null
-00000000,00000000,00000000,00040000
+++ /dev/null
-00000000,00000000,00000000,00080000
+++ /dev/null
-00000000,00000000,00000000,00000004
+++ /dev/null
-00000000,00000000,00000000,00100000
+++ /dev/null
-00000000,00000000,00000000,00200000
+++ /dev/null
-00000000,00000000,00000000,00400000
+++ /dev/null
-00000000,00000000,00000000,00800000
+++ /dev/null
-00000000,00000000,00000000,00000008
+++ /dev/null
-00000000,00000000,00000000,00000010
+++ /dev/null
-00000000,00000000,00000000,00000020
+++ /dev/null
-00000000,00000000,00000000,00000040
+++ /dev/null
-00000000,00000000,00000000,00000080
+++ /dev/null
-00000000,00000000,00000000,00000100
+++ /dev/null
-00000000,00000000,00000000,00000200
+++ /dev/null
-../../cpu/cpu0
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu1
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu10
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu11
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu12
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu13
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu14
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu15
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu16
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu17
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu18
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu19
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu2
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu20
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu21
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu22
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu23
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu3
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu4
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu5
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu6
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu7
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu8
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu9
\ No newline at end of file
+++ /dev/null
-Node 0 MemTotal: 134215764 kB
-Node 0 MemFree: 4659184 kB
-Node 0 MemUsed: 129556580 kB
-Node 0 Active: 57038240 kB
-Node 0 Inactive: 50860308 kB
-Node 0 Active(anon): 7992112 kB
-Node 0 Inactive(anon): 2321780 kB
-Node 0 Active(file): 49046128 kB
-Node 0 Inactive(file): 48538528 kB
-Node 0 Unevictable: 3492 kB
-Node 0 Mlocked: 3492 kB
-Node 0 Dirty: 7736 kB
-Node 0 Writeback: 0 kB
-Node 0 FilePages: 97948672 kB
-Node 0 Mapped: 39292 kB
-Node 0 AnonPages: 9953768 kB
-Node 0 Shmem: 361396 kB
-Node 0 KernelStack: 4792 kB
-Node 0 PageTables: 48328 kB
-Node 0 NFS_Unstable: 0 kB
-Node 0 Bounce: 0 kB
-Node 0 WritebackTmp: 0 kB
-Node 0 Slab: 1572840 kB
-Node 0 SReclaimable: 1463196 kB
-Node 0 SUnreclaim: 109644 kB
-Node 0 AnonHugePages: 9218048 kB
-Node 0 HugePages_Total: 8192
-Node 0 HugePages_Free: 4466
-Node 0 HugePages_Surp: 0
+++ /dev/null
-00000000,00000011
+++ /dev/null
-00000000,00000022
+++ /dev/null
-00000000,00004400
+++ /dev/null
-00000000,00008800
+++ /dev/null
-00000000,00001100
+++ /dev/null
-00000000,00002200
+++ /dev/null
-00000000,00004400
+++ /dev/null
-00000000,00008800
+++ /dev/null
-00000000,00110000
+++ /dev/null
-00000000,00220000
+++ /dev/null
-00000000,00440000
+++ /dev/null
-00000000,00880000
+++ /dev/null
-00000000,00000044
+++ /dev/null
-00000000,00110000
+++ /dev/null
-00000000,00220000
+++ /dev/null
-00000000,00440000
+++ /dev/null
-00000000,00880000
+++ /dev/null
-00000000,11000000
+++ /dev/null
-00000000,22000000
+++ /dev/null
-00000000,44000000
+++ /dev/null
-00000000,88000000
+++ /dev/null
-00000000,11000000
+++ /dev/null
-00000000,22000000
+++ /dev/null
-00000000,00000088
+++ /dev/null
-00000000,44000000
+++ /dev/null
-00000000,88000000
+++ /dev/null
-00000011,00000000
+++ /dev/null
-00000022,00000000
+++ /dev/null
-00000044,00000000
+++ /dev/null
-00000088,00000000
+++ /dev/null
-00000011,00000000
+++ /dev/null
-00000022,00000000
+++ /dev/null
-00000044,00000000
+++ /dev/null
-00000088,00000000
+++ /dev/null
-00000000,00000011
+++ /dev/null
-00001100,00000000
+++ /dev/null
-00002200,00000000
+++ /dev/null
-00004400,00000000
+++ /dev/null
-00008800,00000000
+++ /dev/null
-00001100,00000000
+++ /dev/null
-00002200,00000000
+++ /dev/null
-00004400,00000000
+++ /dev/null
-00008800,00000000
+++ /dev/null
-00110000,00000000
+++ /dev/null
-00220000,00000000
+++ /dev/null
-00000000,00000022
+++ /dev/null
-00440000,00000000
+++ /dev/null
-00880000,00000000
+++ /dev/null
-00110000,00000000
+++ /dev/null
-00220000,00000000
+++ /dev/null
-00440000,00000000
+++ /dev/null
-00880000,00000000
+++ /dev/null
-11000000,00000000
+++ /dev/null
-22000000,00000000
+++ /dev/null
-44000000,00000000
+++ /dev/null
-88000000,00000000
+++ /dev/null
-00000000,00000044
+++ /dev/null
-11000000,00000000
+++ /dev/null
-22000000,00000000
+++ /dev/null
-44000000,00000000
+++ /dev/null
-88000000,00000000
+++ /dev/null
-00000000,00000088
+++ /dev/null
-00000000,00001100
+++ /dev/null
-00000000,00002200
+++ /dev/null
-../../cpu/cpu0
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu12
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu16
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu20
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu24
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu28
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu4
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu8
\ No newline at end of file
+++ /dev/null
-Node 0 MemTotal: 16742060 kB
-Node 0 MemFree: 15971440 kB
-Node 0 MemUsed: 770620 kB
-Node 0 Active: 49680 kB
-Node 0 Inactive: 57844 kB
-Node 0 Active(anon): 9596 kB
-Node 0 Inactive(anon): 0 kB
-Node 0 Active(file): 40084 kB
-Node 0 Inactive(file): 57844 kB
-Node 0 Unevictable: 0 kB
-Node 0 Mlocked: 0 kB
-Node 0 Dirty: 20 kB
-Node 0 Writeback: 0 kB
-Node 0 FilePages: 97964 kB
-Node 0 Mapped: 1640 kB
-Node 0 AnonPages: 9560 kB
-Node 0 Shmem: 36 kB
-Node 0 KernelStack: 7144 kB
-Node 0 PageTables: 1392 kB
-Node 0 NFS_Unstable: 0 kB
-Node 0 Bounce: 0 kB
-Node 0 WritebackTmp: 0 kB
-Node 0 Slab: 34856 kB
-Node 0 SReclaimable: 12724 kB
-Node 0 SUnreclaim: 22132 kB
-Node 0 HugePages_Total: 0
-Node 0 HugePages_Free: 0
-Node 0 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu32
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu36
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu40
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu44
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu48
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu52
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu56
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu60
\ No newline at end of file
+++ /dev/null
-Node 1 MemTotal: 16777216 kB
-Node 1 MemFree: 16315188 kB
-Node 1 MemUsed: 462028 kB
-Node 1 Active: 15624 kB
-Node 1 Inactive: 23488 kB
-Node 1 Active(anon): 9088 kB
-Node 1 Inactive(anon): 0 kB
-Node 1 Active(file): 6536 kB
-Node 1 Inactive(file): 23488 kB
-Node 1 Unevictable: 0 kB
-Node 1 Mlocked: 0 kB
-Node 1 Dirty: 0 kB
-Node 1 Writeback: 0 kB
-Node 1 FilePages: 30068 kB
-Node 1 Mapped: 2628 kB
-Node 1 AnonPages: 9044 kB
-Node 1 Shmem: 44 kB
-Node 1 KernelStack: 152 kB
-Node 1 PageTables: 1016 kB
-Node 1 NFS_Unstable: 0 kB
-Node 1 Bounce: 0 kB
-Node 1 WritebackTmp: 0 kB
-Node 1 Slab: 26748 kB
-Node 1 SReclaimable: 10424 kB
-Node 1 SUnreclaim: 16324 kB
-Node 1 HugePages_Total: 0
-Node 1 HugePages_Free: 0
-Node 1 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu1
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu13
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu17
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu21
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu25
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu29
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu5
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu9
\ No newline at end of file
+++ /dev/null
-Node 2 MemTotal: 16777216 kB
-Node 2 MemFree: 16253184 kB
-Node 2 MemUsed: 524032 kB
-Node 2 Active: 37548 kB
-Node 2 Inactive: 74344 kB
-Node 2 Active(anon): 14780 kB
-Node 2 Inactive(anon): 388 kB
-Node 2 Active(file): 22768 kB
-Node 2 Inactive(file): 73956 kB
-Node 2 Unevictable: 0 kB
-Node 2 Mlocked: 0 kB
-Node 2 Dirty: 4 kB
-Node 2 Writeback: 0 kB
-Node 2 FilePages: 97148 kB
-Node 2 Mapped: 3112 kB
-Node 2 AnonPages: 12704 kB
-Node 2 Shmem: 416 kB
-Node 2 KernelStack: 648 kB
-Node 2 PageTables: 1300 kB
-Node 2 NFS_Unstable: 0 kB
-Node 2 Bounce: 0 kB
-Node 2 WritebackTmp: 0 kB
-Node 2 Slab: 16488 kB
-Node 2 SReclaimable: 9576 kB
-Node 2 SUnreclaim: 6912 kB
-Node 2 HugePages_Total: 0
-Node 2 HugePages_Free: 0
-Node 2 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu33
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu37
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu41
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu45
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu49
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu53
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu57
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu61
\ No newline at end of file
+++ /dev/null
-Node 3 MemTotal: 16777216 kB
-Node 3 MemFree: 16226124 kB
-Node 3 MemUsed: 551092 kB
-Node 3 Active: 37368 kB
-Node 3 Inactive: 96052 kB
-Node 3 Active(anon): 8160 kB
-Node 3 Inactive(anon): 0 kB
-Node 3 Active(file): 29208 kB
-Node 3 Inactive(file): 96052 kB
-Node 3 Unevictable: 0 kB
-Node 3 Mlocked: 0 kB
-Node 3 Dirty: 0 kB
-Node 3 Writeback: 0 kB
-Node 3 FilePages: 125276 kB
-Node 3 Mapped: 24824 kB
-Node 3 AnonPages: 6096 kB
-Node 3 Shmem: 16 kB
-Node 3 KernelStack: 176 kB
-Node 3 PageTables: 1460 kB
-Node 3 NFS_Unstable: 0 kB
-Node 3 Bounce: 0 kB
-Node 3 WritebackTmp: 0 kB
-Node 3 Slab: 21952 kB
-Node 3 SReclaimable: 14064 kB
-Node 3 SUnreclaim: 7888 kB
-Node 3 HugePages_Total: 0
-Node 3 HugePages_Free: 0
-Node 3 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu10
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu14
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu18
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu2
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu22
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu26
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu30
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu6
\ No newline at end of file
+++ /dev/null
-Node 4 MemTotal: 16777216 kB
-Node 4 MemFree: 16200584 kB
-Node 4 MemUsed: 576632 kB
-Node 4 Active: 29276 kB
-Node 4 Inactive: 89948 kB
-Node 4 Active(anon): 8824 kB
-Node 4 Inactive(anon): 4 kB
-Node 4 Active(file): 20452 kB
-Node 4 Inactive(file): 89944 kB
-Node 4 Unevictable: 0 kB
-Node 4 Mlocked: 0 kB
-Node 4 Dirty: 37856 kB
-Node 4 Writeback: 0 kB
-Node 4 FilePages: 110968 kB
-Node 4 Mapped: 956 kB
-Node 4 AnonPages: 6748 kB
-Node 4 Shmem: 32 kB
-Node 4 KernelStack: 1752 kB
-Node 4 PageTables: 1044 kB
-Node 4 NFS_Unstable: 0 kB
-Node 4 Bounce: 0 kB
-Node 4 WritebackTmp: 0 kB
-Node 4 Slab: 53532 kB
-Node 4 SReclaimable: 39732 kB
-Node 4 SUnreclaim: 13800 kB
-Node 4 HugePages_Total: 0
-Node 4 HugePages_Free: 0
-Node 4 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu34
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu38
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu42
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu46
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu50
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu54
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu58
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu62
\ No newline at end of file
+++ /dev/null
-Node 5 MemTotal: 16777216 kB
-Node 5 MemFree: 16301072 kB
-Node 5 MemUsed: 476144 kB
-Node 5 Active: 12240 kB
-Node 5 Inactive: 32252 kB
-Node 5 Active(anon): 4608 kB
-Node 5 Inactive(anon): 0 kB
-Node 5 Active(file): 7632 kB
-Node 5 Inactive(file): 32252 kB
-Node 5 Unevictable: 0 kB
-Node 5 Mlocked: 0 kB
-Node 5 Dirty: 0 kB
-Node 5 Writeback: 0 kB
-Node 5 FilePages: 39952 kB
-Node 5 Mapped: 2144 kB
-Node 5 AnonPages: 4580 kB
-Node 5 Shmem: 28 kB
-Node 5 KernelStack: 704 kB
-Node 5 PageTables: 756 kB
-Node 5 NFS_Unstable: 0 kB
-Node 5 Bounce: 0 kB
-Node 5 WritebackTmp: 0 kB
-Node 5 Slab: 36752 kB
-Node 5 SReclaimable: 5352 kB
-Node 5 SUnreclaim: 31400 kB
-Node 5 HugePages_Total: 0
-Node 5 HugePages_Free: 0
-Node 5 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu35
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu39
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu43
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu47
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu51
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu55
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu59
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu63
\ No newline at end of file
+++ /dev/null
-Node 6 MemTotal: 16777216 kB
-Node 6 MemFree: 16237116 kB
-Node 6 MemUsed: 540100 kB
-Node 6 Active: 30924 kB
-Node 6 Inactive: 80304 kB
-Node 6 Active(anon): 4124 kB
-Node 6 Inactive(anon): 4 kB
-Node 6 Active(file): 26800 kB
-Node 6 Inactive(file): 80300 kB
-Node 6 Unevictable: 0 kB
-Node 6 Mlocked: 0 kB
-Node 6 Dirty: 0 kB
-Node 6 Writeback: 0 kB
-Node 6 FilePages: 107124 kB
-Node 6 Mapped: 2436 kB
-Node 6 AnonPages: 4100 kB
-Node 6 Shmem: 28 kB
-Node 6 KernelStack: 120 kB
-Node 6 PageTables: 560 kB
-Node 6 NFS_Unstable: 0 kB
-Node 6 Bounce: 0 kB
-Node 6 WritebackTmp: 0 kB
-Node 6 Slab: 34468 kB
-Node 6 SReclaimable: 9848 kB
-Node 6 SUnreclaim: 24620 kB
-Node 6 HugePages_Total: 0
-Node 6 HugePages_Free: 0
-Node 6 HugePages_Surp: 0
+++ /dev/null
-../../cpu/cpu11
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu15
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu19
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu23
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu27
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu3
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu31
\ No newline at end of file
+++ /dev/null
-../../cpu/cpu7
\ No newline at end of file
+++ /dev/null
-Node 7 MemTotal: 16760828 kB
-Node 7 MemFree: 16251136 kB
-Node 7 MemUsed: 509692 kB
-Node 7 Active: 28108 kB
-Node 7 Inactive: 25936 kB
-Node 7 Active(anon): 18672 kB
-Node 7 Inactive(anon): 832 kB
-Node 7 Active(file): 9436 kB
-Node 7 Inactive(file): 25104 kB
-Node 7 Unevictable: 0 kB
-Node 7 Mlocked: 0 kB
-Node 7 Dirty: 12 kB
-Node 7 Writeback: 0 kB
-Node 7 FilePages: 35412 kB
-Node 7 Mapped: 1000 kB
-Node 7 AnonPages: 14544 kB
-Node 7 Shmem: 872 kB
-Node 7 KernelStack: 176 kB
-Node 7 PageTables: 1536 kB
-Node 7 NFS_Unstable: 0 kB
-Node 7 Bounce: 0 kB
-Node 7 WritebackTmp: 0 kB
-Node 7 Slab: 58400 kB
-Node 7 SReclaimable: 11476 kB
-Node 7 SUnreclaim: 46924 kB
-Node 7 HugePages_Total: 0
-Node 7 HugePages_Free: 0
-Node 7 HugePages_Surp: 0
+++ /dev/null
-processor : 0
-vendor_id : GenuineIntel
-cpu family : 15
-model : 4
-model name : Intel(R) Xeon(TM) CPU 2.80GHz
-stepping : 8
-cpu MHz : 2800.000
-cache size : 2048 KB
-physical id : 0
-siblings : 2
-core id : 0
-cpu cores : 2
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm constant_tsc pni monitor ds_cpl est cid cx16 xtpr lahf_lm
-bogomips : 5590.67
-clflush size : 64
-cache_alignment : 128
-address sizes : 36 bits physical, 48 bits virtual
-power management:
-
-processor : 1
-vendor_id : GenuineIntel
-cpu family : 15
-model : 4
-model name : Intel(R) Xeon(TM) CPU 2.80GHz
-stepping : 8
-cpu MHz : 2800.000
-cache size : 2048 KB
-physical id : 0
-siblings : 2
-core id : 1
-cpu cores : 2
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm constant_tsc pni monitor ds_cpl est cid cx16 xtpr lahf_lm
-bogomips : 5586.49
-clflush size : 64
-cache_alignment : 128
-address sizes : 36 bits physical, 48 bits virtual
-power management:
+++ /dev/null
-CPUs: 2/2, MHz: 2800, Nodes: 1, Sockets: 1, Cores: 2, Threads: 1
+++ /dev/null
-processor : 0
-vendor_id : GenuineIntel
-cpu family : 6
-model : 23
-model name : Intel(R) Core(TM)2 Duo CPU T9600 @ 2.80GHz
-stepping : 10
-microcode : 0xa0b
-cpu MHz : 800.000
-cache size : 6144 KB
-physical id : 0
-siblings : 2
-core id : 0
-cpu cores : 2
-apicid : 0
-initial apicid : 0
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts nopl aperfmperf pni dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 xsave lahf_lm ida dts tpr_shadow vnmi flexpriority
-bogomips : 5586.29
-clflush size : 64
-cache_alignment : 64
-address sizes : 36 bits physical, 48 bits virtual
-power management:
-
-processor : 1
-vendor_id : GenuineIntel
-cpu family : 6
-model : 23
-model name : Intel(R) Core(TM)2 Duo CPU T9600 @ 2.80GHz
-stepping : 10
-microcode : 0xa0b
-cpu MHz : 800.000
-cache size : 6144 KB
-physical id : 0
-siblings : 2
-core id : 1
-cpu cores : 2
-apicid : 1
-initial apicid : 1
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts nopl aperfmperf pni dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 xsave lahf_lm ida dts tpr_shadow vnmi flexpriority
-bogomips : 5586.29
-clflush size : 64
-cache_alignment : 64
-address sizes : 36 bits physical, 48 bits virtual
-power management:
-
+++ /dev/null
-CPUs: 2/2, MHz: 800, Nodes: 1, Sockets: 1, Cores: 2, Threads: 1
+++ /dev/null
-processor : 0
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 0
-cpu cores : 12
-apicid : 0
-initial apicid : 0
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.14
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 1
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 3
-siblings : 12
-core id : 0
-cpu cores : 12
-apicid : 48
-initial apicid : 48
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 2
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 2
-siblings : 12
-core id : 0
-cpu cores : 12
-apicid : 32
-initial apicid : 32
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 3
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 0
-cpu cores : 12
-apicid : 16
-initial apicid : 16
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.43
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 4
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 1
-cpu cores : 12
-apicid : 1
-initial apicid : 1
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.14
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 5
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 3
-siblings : 12
-core id : 1
-cpu cores : 12
-apicid : 49
-initial apicid : 49
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 6
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 2
-siblings : 12
-core id : 1
-cpu cores : 12
-apicid : 33
-initial apicid : 33
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 7
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 1
-cpu cores : 12
-apicid : 17
-initial apicid : 17
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.43
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 8
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 2
-cpu cores : 12
-apicid : 2
-initial apicid : 2
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.14
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 9
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 3
-siblings : 12
-core id : 2
-cpu cores : 12
-apicid : 50
-initial apicid : 50
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 10
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 2
-siblings : 12
-core id : 2
-cpu cores : 12
-apicid : 34
-initial apicid : 34
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 11
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 2
-cpu cores : 12
-apicid : 18
-initial apicid : 18
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.43
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 12
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 3
-cpu cores : 12
-apicid : 3
-initial apicid : 3
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.14
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 13
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 3
-siblings : 12
-core id : 3
-cpu cores : 12
-apicid : 51
-initial apicid : 51
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 14
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 2
-siblings : 12
-core id : 3
-cpu cores : 12
-apicid : 35
-initial apicid : 35
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 15
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 3
-cpu cores : 12
-apicid : 19
-initial apicid : 19
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.43
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 16
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 4
-cpu cores : 12
-apicid : 4
-initial apicid : 4
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.14
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 17
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 3
-siblings : 12
-core id : 4
-cpu cores : 12
-apicid : 52
-initial apicid : 52
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 18
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 2
-siblings : 12
-core id : 4
-cpu cores : 12
-apicid : 36
-initial apicid : 36
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 19
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 4
-cpu cores : 12
-apicid : 20
-initial apicid : 20
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.43
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 20
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 5
-cpu cores : 12
-apicid : 5
-initial apicid : 5
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.14
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 21
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 3
-siblings : 12
-core id : 5
-cpu cores : 12
-apicid : 53
-initial apicid : 53
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 22
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 2
-siblings : 12
-core id : 5
-cpu cores : 12
-apicid : 37
-initial apicid : 37
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 23
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 5
-cpu cores : 12
-apicid : 21
-initial apicid : 21
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.43
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 24
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 0
-cpu cores : 12
-apicid : 6
-initial apicid : 6
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.14
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 25
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 3
-siblings : 12
-core id : 0
-cpu cores : 12
-apicid : 54
-initial apicid : 54
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 26
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 2
-siblings : 12
-core id : 0
-cpu cores : 12
-apicid : 38
-initial apicid : 38
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 27
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 0
-cpu cores : 12
-apicid : 22
-initial apicid : 22
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.43
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 28
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 1
-cpu cores : 12
-apicid : 7
-initial apicid : 7
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.14
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 29
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 3
-siblings : 12
-core id : 1
-cpu cores : 12
-apicid : 55
-initial apicid : 55
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 30
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 2
-siblings : 12
-core id : 1
-cpu cores : 12
-apicid : 39
-initial apicid : 39
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 31
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 1
-cpu cores : 12
-apicid : 23
-initial apicid : 23
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.43
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 32
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 2
-cpu cores : 12
-apicid : 8
-initial apicid : 8
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.14
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 33
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 3
-siblings : 12
-core id : 2
-cpu cores : 12
-apicid : 56
-initial apicid : 56
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 34
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 2
-siblings : 12
-core id : 2
-cpu cores : 12
-apicid : 40
-initial apicid : 40
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 35
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 2
-cpu cores : 12
-apicid : 24
-initial apicid : 24
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.43
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 36
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 3
-cpu cores : 12
-apicid : 9
-initial apicid : 9
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.14
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 37
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 3
-siblings : 12
-core id : 3
-cpu cores : 12
-apicid : 57
-initial apicid : 57
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 38
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 2
-siblings : 12
-core id : 3
-cpu cores : 12
-apicid : 41
-initial apicid : 41
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 39
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 3
-cpu cores : 12
-apicid : 25
-initial apicid : 25
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.43
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 40
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 4
-cpu cores : 12
-apicid : 10
-initial apicid : 10
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.14
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 41
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 3
-siblings : 12
-core id : 4
-cpu cores : 12
-apicid : 58
-initial apicid : 58
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 42
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 2
-siblings : 12
-core id : 4
-cpu cores : 12
-apicid : 42
-initial apicid : 42
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 43
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 4
-cpu cores : 12
-apicid : 26
-initial apicid : 26
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.43
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 44
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 5
-cpu cores : 12
-apicid : 11
-initial apicid : 11
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.14
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 45
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 3
-siblings : 12
-core id : 5
-cpu cores : 12
-apicid : 59
-initial apicid : 59
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 46
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 2
-siblings : 12
-core id : 5
-cpu cores : 12
-apicid : 43
-initial apicid : 43
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.42
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 47
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6172
-stepping : 1
-cpu MHz : 2100.073
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 5
-cpu cores : 12
-apicid : 27
-initial apicid : 27
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4200.43
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
+++ /dev/null
-CPUs: 48/48, MHz: 2100, Nodes: 8, Sockets: 1, Cores: 6, Threads: 1
+++ /dev/null
-processor : 0
-vendor_id : GenuineIntel
-cpu family : 6
-model : 47
-model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
-stepping : 2
-cpu MHz : 1064.000
-cache size : 24576 KB
-physical id : 0
-siblings : 8
-core id : 1
-cpu cores : 8
-apicid : 2
-initial apicid : 2
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5320.10
-clflush size : 64
-cache_alignment : 64
-address sizes : 44 bits physical, 48 bits virtual
-power management:
-
-processor : 1
-vendor_id : GenuineIntel
-cpu family : 6
-model : 47
-model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
-stepping : 2
-cpu MHz : 1064.000
-cache size : 24576 KB
-physical id : 0
-siblings : 8
-core id : 2
-cpu cores : 8
-apicid : 4
-initial apicid : 4
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5320.10
-clflush size : 64
-cache_alignment : 64
-address sizes : 44 bits physical, 48 bits virtual
-power management:
-
-processor : 2
-vendor_id : GenuineIntel
-cpu family : 6
-model : 47
-model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
-stepping : 2
-cpu MHz : 1064.000
-cache size : 24576 KB
-physical id : 0
-siblings : 8
-core id : 8
-cpu cores : 8
-apicid : 16
-initial apicid : 16
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5320.10
-clflush size : 64
-cache_alignment : 64
-address sizes : 44 bits physical, 48 bits virtual
-power management:
-
-processor : 3
-vendor_id : GenuineIntel
-cpu family : 6
-model : 47
-model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
-stepping : 2
-cpu MHz : 1064.000
-cache size : 24576 KB
-physical id : 0
-siblings : 8
-core id : 9
-cpu cores : 8
-apicid : 18
-initial apicid : 18
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5320.10
-clflush size : 64
-cache_alignment : 64
-address sizes : 44 bits physical, 48 bits virtual
-power management:
-
-processor : 4
-vendor_id : GenuineIntel
-cpu family : 6
-model : 47
-model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
-stepping : 2
-cpu MHz : 1064.000
-cache size : 24576 KB
-physical id : 0
-siblings : 8
-core id : 16
-cpu cores : 8
-apicid : 32
-initial apicid : 32
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5320.10
-clflush size : 64
-cache_alignment : 64
-address sizes : 44 bits physical, 48 bits virtual
-power management:
-
-processor : 5
-vendor_id : GenuineIntel
-cpu family : 6
-model : 47
-model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
-stepping : 2
-cpu MHz : 1064.000
-cache size : 24576 KB
-physical id : 0
-siblings : 8
-core id : 17
-cpu cores : 8
-apicid : 34
-initial apicid : 34
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5320.10
-clflush size : 64
-cache_alignment : 64
-address sizes : 44 bits physical, 48 bits virtual
-power management:
-
-processor : 6
-vendor_id : GenuineIntel
-cpu family : 6
-model : 47
-model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
-stepping : 2
-cpu MHz : 1064.000
-cache size : 24576 KB
-physical id : 0
-siblings : 8
-core id : 18
-cpu cores : 8
-apicid : 36
-initial apicid : 36
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5320.10
-clflush size : 64
-cache_alignment : 64
-address sizes : 44 bits physical, 48 bits virtual
-power management:
-
-processor : 7
-vendor_id : GenuineIntel
-cpu family : 6
-model : 47
-model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
-stepping : 2
-cpu MHz : 1064.000
-cache size : 24576 KB
-physical id : 0
-siblings : 8
-core id : 24
-cpu cores : 8
-apicid : 48
-initial apicid : 48
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5320.10
-clflush size : 64
-cache_alignment : 64
-address sizes : 44 bits physical, 48 bits virtual
-power management:
-
-processor : 8
-vendor_id : GenuineIntel
-cpu family : 6
-model : 47
-model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
-stepping : 2
-cpu MHz : 1064.000
-cache size : 24576 KB
-physical id : 1
-siblings : 8
-core id : 0
-cpu cores : 8
-apicid : 64
-initial apicid : 64
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5319.83
-clflush size : 64
-cache_alignment : 64
-address sizes : 44 bits physical, 48 bits virtual
-power management:
-
-processor : 9
-vendor_id : GenuineIntel
-cpu family : 6
-model : 47
-model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
-stepping : 2
-cpu MHz : 1064.000
-cache size : 24576 KB
-physical id : 1
-siblings : 8
-core id : 2
-cpu cores : 8
-apicid : 68
-initial apicid : 68
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5319.83
-clflush size : 64
-cache_alignment : 64
-address sizes : 44 bits physical, 48 bits virtual
-power management:
-
-processor : 10
-vendor_id : GenuineIntel
-cpu family : 6
-model : 47
-model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
-stepping : 2
-cpu MHz : 1064.000
-cache size : 24576 KB
-physical id : 1
-siblings : 8
-core id : 8
-cpu cores : 8
-apicid : 80
-initial apicid : 80
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5319.83
-clflush size : 64
-cache_alignment : 64
-address sizes : 44 bits physical, 48 bits virtual
-power management:
-
-processor : 11
-vendor_id : GenuineIntel
-cpu family : 6
-model : 47
-model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
-stepping : 2
-cpu MHz : 1064.000
-cache size : 24576 KB
-physical id : 1
-siblings : 8
-core id : 9
-cpu cores : 8
-apicid : 82
-initial apicid : 82
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5319.83
-clflush size : 64
-cache_alignment : 64
-address sizes : 44 bits physical, 48 bits virtual
-power management:
-
-processor : 12
-vendor_id : GenuineIntel
-cpu family : 6
-model : 47
-model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
-stepping : 2
-cpu MHz : 1064.000
-cache size : 24576 KB
-physical id : 1
-siblings : 8
-core id : 16
-cpu cores : 8
-apicid : 96
-initial apicid : 96
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5319.83
-clflush size : 64
-cache_alignment : 64
-address sizes : 44 bits physical, 48 bits virtual
-power management:
-
-processor : 13
-vendor_id : GenuineIntel
-cpu family : 6
-model : 47
-model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
-stepping : 2
-cpu MHz : 1064.000
-cache size : 24576 KB
-physical id : 1
-siblings : 8
-core id : 17
-cpu cores : 8
-apicid : 98
-initial apicid : 98
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5319.83
-clflush size : 64
-cache_alignment : 64
-address sizes : 44 bits physical, 48 bits virtual
-power management:
-
-processor : 14
-vendor_id : GenuineIntel
-cpu family : 6
-model : 47
-model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
-stepping : 2
-cpu MHz : 1064.000
-cache size : 24576 KB
-physical id : 1
-siblings : 8
-core id : 18
-cpu cores : 8
-apicid : 100
-initial apicid : 100
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5319.83
-clflush size : 64
-cache_alignment : 64
-address sizes : 44 bits physical, 48 bits virtual
-power management:
-
-processor : 15
-vendor_id : GenuineIntel
-cpu family : 6
-model : 47
-model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
-stepping : 2
-cpu MHz : 1064.000
-cache size : 24576 KB
-physical id : 1
-siblings : 8
-core id : 25
-cpu cores : 8
-apicid : 114
-initial apicid : 114
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5319.83
-clflush size : 64
-cache_alignment : 64
-address sizes : 44 bits physical, 48 bits virtual
-power management:
-
+++ /dev/null
-CPUs: 16/16, MHz: 1064, Nodes: 2, Sockets: 1, Cores: 8, Threads: 1
+++ /dev/null
-processor : 0
-vendor_id : GenuineIntel
-cpu family : 6
-model : 15
-model name : Intel(R) Xeon(R) CPU E5320 @ 1.86GHz
-stepping : 7
-cpu MHz : 1861.965
-cache size : 4096 KB
-physical id : 0
-siblings : 4
-core id : 0
-cpu cores : 4
-apicid : 0
-initial apicid : 0
-fpu : yes
-fpu_exception : yes
-cpuid level : 10
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca lahf_lm tpr_shadow
-bogomips : 3723.93
-clflush size : 64
-cache_alignment : 64
-address sizes : 36 bits physical, 48 bits virtual
-power management:
-
-processor : 1
-vendor_id : GenuineIntel
-cpu family : 6
-model : 15
-model name : Intel(R) Xeon(R) CPU E5320 @ 1.86GHz
-stepping : 7
-cpu MHz : 1861.965
-cache size : 4096 KB
-physical id : 0
-siblings : 4
-core id : 2
-cpu cores : 4
-apicid : 2
-initial apicid : 2
-fpu : yes
-fpu_exception : yes
-cpuid level : 10
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca lahf_lm tpr_shadow
-bogomips : 3723.85
-clflush size : 64
-cache_alignment : 64
-address sizes : 36 bits physical, 48 bits virtual
-power management:
-
-processor : 2
-vendor_id : GenuineIntel
-cpu family : 6
-model : 15
-model name : Intel(R) Xeon(R) CPU E5320 @ 1.86GHz
-stepping : 7
-cpu MHz : 1861.965
-cache size : 4096 KB
-physical id : 0
-siblings : 4
-core id : 1
-cpu cores : 4
-apicid : 1
-initial apicid : 1
-fpu : yes
-fpu_exception : yes
-cpuid level : 10
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca lahf_lm tpr_shadow
-bogomips : 3723.86
-clflush size : 64
-cache_alignment : 64
-address sizes : 36 bits physical, 48 bits virtual
-power management:
-
-processor : 3
-vendor_id : GenuineIntel
-cpu family : 6
-model : 15
-model name : Intel(R) Xeon(R) CPU E5320 @ 1.86GHz
-stepping : 7
-cpu MHz : 1861.965
-cache size : 4096 KB
-physical id : 0
-siblings : 4
-core id : 3
-cpu cores : 4
-apicid : 3
-initial apicid : 3
-fpu : yes
-fpu_exception : yes
-cpuid level : 10
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca lahf_lm tpr_shadow
-bogomips : 3723.85
-clflush size : 64
-cache_alignment : 64
-address sizes : 36 bits physical, 48 bits virtual
-power management:
-
+++ /dev/null
-CPUs: 4/4, MHz: 1861, Nodes: 1, Sockets: 1, Cores: 4, Threads: 1
+++ /dev/null
-processor : 0
-vendor_id : GenuineIntel
-cpu family : 6
-model : 44
-model name : Intel(R) Xeon(R) CPU E5640 @ 2.67GHz
-stepping : 2
-cpu MHz : 1596.000
-cache size : 12288 KB
-physical id : 0
-siblings : 6
-core id : 0
-cpu cores : 4
-apicid : 0
-initial apicid : 0
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5333.90
-clflush size : 64
-cache_alignment : 64
-address sizes : 40 bits physical, 48 bits virtual
-power management:
-
-processor : 1
-vendor_id : GenuineIntel
-cpu family : 6
-model : 44
-model name : Intel(R) Xeon(R) CPU E5640 @ 2.67GHz
-stepping : 2
-cpu MHz : 1596.000
-cache size : 12288 KB
-physical id : 0
-siblings : 6
-core id : 1
-cpu cores : 4
-apicid : 2
-initial apicid : 2
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5333.90
-clflush size : 64
-cache_alignment : 64
-address sizes : 40 bits physical, 48 bits virtual
-power management:
-
-processor : 2
-vendor_id : GenuineIntel
-cpu family : 6
-model : 44
-model name : Intel(R) Xeon(R) CPU E5640 @ 2.67GHz
-stepping : 2
-cpu MHz : 1596.000
-cache size : 12288 KB
-physical id : 0
-siblings : 6
-core id : 9
-cpu cores : 4
-apicid : 18
-initial apicid : 18
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5333.90
-clflush size : 64
-cache_alignment : 64
-address sizes : 40 bits physical, 48 bits virtual
-power management:
-
-processor : 3
-vendor_id : GenuineIntel
-cpu family : 6
-model : 44
-model name : Intel(R) Xeon(R) CPU E5640 @ 2.67GHz
-stepping : 2
-cpu MHz : 1596.000
-cache size : 12288 KB
-physical id : 0
-siblings : 6
-core id : 10
-cpu cores : 4
-apicid : 20
-initial apicid : 20
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5333.90
-clflush size : 64
-cache_alignment : 64
-address sizes : 40 bits physical, 48 bits virtual
-power management:
-
-processor : 4
-vendor_id : GenuineIntel
-cpu family : 6
-model : 44
-model name : Intel(R) Xeon(R) CPU E5640 @ 2.67GHz
-stepping : 2
-cpu MHz : 1596.000
-cache size : 12288 KB
-physical id : 0
-siblings : 6
-core id : 0
-cpu cores : 4
-apicid : 1
-initial apicid : 1
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5333.90
-clflush size : 64
-cache_alignment : 64
-address sizes : 40 bits physical, 48 bits virtual
-power management:
-
-processor : 6
-vendor_id : GenuineIntel
-cpu family : 6
-model : 44
-model name : Intel(R) Xeon(R) CPU E5640 @ 2.67GHz
-stepping : 2
-cpu MHz : 1596.000
-cache size : 12288 KB
-physical id : 0
-siblings : 6
-core id : 9
-cpu cores : 4
-apicid : 19
-initial apicid : 19
-fpu : yes
-fpu_exception : yes
-cpuid level : 11
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
-bogomips : 5333.90
-clflush size : 64
-cache_alignment : 64
-address sizes : 40 bits physical, 48 bits virtual
-power management:
-
+++ /dev/null
-CPUs: 6/8, MHz: 1596, Nodes: 1, Sockets: 1, Cores: 4, Threads: 2
+++ /dev/null
-processor : 0
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 0
-cpu cores : 12
-apicid : 16
-initial apicid : 0
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.30
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 1
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 1
-cpu cores : 12
-apicid : 17
-initial apicid : 1
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.30
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 2
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 2
-cpu cores : 12
-apicid : 18
-initial apicid : 2
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.30
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 3
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 3
-cpu cores : 12
-apicid : 19
-initial apicid : 3
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.30
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 4
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 4
-cpu cores : 12
-apicid : 20
-initial apicid : 4
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.30
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 5
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 5
-cpu cores : 12
-apicid : 21
-initial apicid : 5
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.30
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 6
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 0
-cpu cores : 12
-apicid : 22
-initial apicid : 6
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.30
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 7
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 1
-cpu cores : 12
-apicid : 23
-initial apicid : 7
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.30
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 8
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 2
-cpu cores : 12
-apicid : 24
-initial apicid : 8
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.30
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 9
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 3
-cpu cores : 12
-apicid : 25
-initial apicid : 9
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.30
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 10
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 4
-cpu cores : 12
-apicid : 26
-initial apicid : 10
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.30
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 11
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 0
-siblings : 12
-core id : 5
-cpu cores : 12
-apicid : 27
-initial apicid : 11
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.30
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 12
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 0
-cpu cores : 12
-apicid : 32
-initial apicid : 16
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.52
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 13
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 1
-cpu cores : 12
-apicid : 33
-initial apicid : 17
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.52
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 14
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 2
-cpu cores : 12
-apicid : 34
-initial apicid : 18
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.52
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 15
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 3
-cpu cores : 12
-apicid : 35
-initial apicid : 19
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.52
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 16
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 4
-cpu cores : 12
-apicid : 36
-initial apicid : 20
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.52
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 17
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 5
-cpu cores : 12
-apicid : 37
-initial apicid : 21
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.52
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 18
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 0
-cpu cores : 12
-apicid : 38
-initial apicid : 22
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.52
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 19
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 1
-cpu cores : 12
-apicid : 39
-initial apicid : 23
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.52
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 20
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 2
-cpu cores : 12
-apicid : 40
-initial apicid : 24
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.52
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 21
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 3
-cpu cores : 12
-apicid : 41
-initial apicid : 25
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.52
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 22
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 4
-cpu cores : 12
-apicid : 42
-initial apicid : 26
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.52
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
-processor : 23
-vendor_id : AuthenticAMD
-cpu family : 16
-model : 9
-model name : AMD Opteron(tm) Processor 6174
-stepping : 1
-microcode : 0x10000d4
-cpu MHz : 2200.000
-cache size : 512 KB
-physical id : 1
-siblings : 12
-core id : 5
-cpu cores : 12
-apicid : 43
-initial apicid : 27
-fpu : yes
-fpu_exception : yes
-cpuid level : 5
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
-bogomips : 4390.52
-TLB size : 1024 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm stc 100mhzsteps hwpstate
-
+++ /dev/null
-CPUs: 24/24, MHz: 2200, Nodes: 1, Sockets: 1, Cores: 24, Threads: 1
+++ /dev/null
-processor : 0
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 0
-siblings : 16
-core id : 0
-cpu cores : 8
-apicid : 32
-initial apicid : 0
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5187.31
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 1
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 1
-siblings : 16
-core id : 0
-cpu cores : 8
-apicid : 64
-initial apicid : 32
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 2
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 2
-siblings : 16
-core id : 0
-cpu cores : 8
-apicid : 96
-initial apicid : 64
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 3
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 3
-siblings : 16
-core id : 0
-cpu cores : 8
-apicid : 128
-initial apicid : 96
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.44
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 4
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 0
-siblings : 16
-core id : 1
-cpu cores : 8
-apicid : 33
-initial apicid : 1
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5187.31
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 5
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 1
-siblings : 16
-core id : 1
-cpu cores : 8
-apicid : 65
-initial apicid : 33
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 6
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 2
-siblings : 16
-core id : 1
-cpu cores : 8
-apicid : 97
-initial apicid : 65
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 7
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 3
-siblings : 16
-core id : 1
-cpu cores : 8
-apicid : 129
-initial apicid : 97
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.44
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 8
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 0
-siblings : 16
-core id : 2
-cpu cores : 8
-apicid : 34
-initial apicid : 2
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5187.31
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 9
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 1
-siblings : 16
-core id : 2
-cpu cores : 8
-apicid : 66
-initial apicid : 34
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 10
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 2
-siblings : 16
-core id : 2
-cpu cores : 8
-apicid : 98
-initial apicid : 66
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 11
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 3
-siblings : 16
-core id : 2
-cpu cores : 8
-apicid : 130
-initial apicid : 98
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.44
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 12
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 0
-siblings : 16
-core id : 3
-cpu cores : 8
-apicid : 35
-initial apicid : 3
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5187.31
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 13
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 1
-siblings : 16
-core id : 3
-cpu cores : 8
-apicid : 67
-initial apicid : 35
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 14
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 2
-siblings : 16
-core id : 3
-cpu cores : 8
-apicid : 99
-initial apicid : 67
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 15
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 3
-siblings : 16
-core id : 3
-cpu cores : 8
-apicid : 131
-initial apicid : 99
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.44
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 16
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 0
-siblings : 16
-core id : 4
-cpu cores : 8
-apicid : 36
-initial apicid : 4
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5187.31
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 17
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 1
-siblings : 16
-core id : 4
-cpu cores : 8
-apicid : 68
-initial apicid : 36
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 18
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 2
-siblings : 16
-core id : 4
-cpu cores : 8
-apicid : 100
-initial apicid : 68
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 19
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 3
-siblings : 16
-core id : 4
-cpu cores : 8
-apicid : 132
-initial apicid : 100
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.44
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 20
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 0
-siblings : 16
-core id : 5
-cpu cores : 8
-apicid : 37
-initial apicid : 5
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5187.31
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 21
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 1
-siblings : 16
-core id : 5
-cpu cores : 8
-apicid : 69
-initial apicid : 37
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 22
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 2
-siblings : 16
-core id : 5
-cpu cores : 8
-apicid : 101
-initial apicid : 69
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 23
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 3
-siblings : 16
-core id : 5
-cpu cores : 8
-apicid : 133
-initial apicid : 101
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.44
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 24
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 0
-siblings : 16
-core id : 6
-cpu cores : 8
-apicid : 38
-initial apicid : 6
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5187.31
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 25
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 1
-siblings : 16
-core id : 6
-cpu cores : 8
-apicid : 70
-initial apicid : 38
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 26
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 2
-siblings : 16
-core id : 6
-cpu cores : 8
-apicid : 102
-initial apicid : 70
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 27
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 3
-siblings : 16
-core id : 6
-cpu cores : 8
-apicid : 134
-initial apicid : 102
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.44
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 28
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 0
-siblings : 16
-core id : 7
-cpu cores : 8
-apicid : 39
-initial apicid : 7
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5187.31
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 29
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 1
-siblings : 16
-core id : 7
-cpu cores : 8
-apicid : 71
-initial apicid : 39
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 30
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 2
-siblings : 16
-core id : 7
-cpu cores : 8
-apicid : 103
-initial apicid : 71
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 31
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 3
-siblings : 16
-core id : 7
-cpu cores : 8
-apicid : 135
-initial apicid : 103
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.44
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 32
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 0
-siblings : 16
-core id : 0
-cpu cores : 8
-apicid : 40
-initial apicid : 8
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5187.31
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 33
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 1
-siblings : 16
-core id : 0
-cpu cores : 8
-apicid : 72
-initial apicid : 40
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 34
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 2
-siblings : 16
-core id : 0
-cpu cores : 8
-apicid : 104
-initial apicid : 72
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 35
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 3
-siblings : 16
-core id : 0
-cpu cores : 8
-apicid : 136
-initial apicid : 104
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.44
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 36
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 0
-siblings : 16
-core id : 1
-cpu cores : 8
-apicid : 41
-initial apicid : 9
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5187.31
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 37
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 1
-siblings : 16
-core id : 1
-cpu cores : 8
-apicid : 73
-initial apicid : 41
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 38
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 2
-siblings : 16
-core id : 1
-cpu cores : 8
-apicid : 105
-initial apicid : 73
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 39
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 3
-siblings : 16
-core id : 1
-cpu cores : 8
-apicid : 137
-initial apicid : 105
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.44
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 40
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 0
-siblings : 16
-core id : 2
-cpu cores : 8
-apicid : 42
-initial apicid : 10
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5187.31
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 41
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 1
-siblings : 16
-core id : 2
-cpu cores : 8
-apicid : 74
-initial apicid : 42
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 42
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 2
-siblings : 16
-core id : 2
-cpu cores : 8
-apicid : 106
-initial apicid : 74
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 43
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 3
-siblings : 16
-core id : 2
-cpu cores : 8
-apicid : 138
-initial apicid : 106
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.44
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 44
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 0
-siblings : 16
-core id : 3
-cpu cores : 8
-apicid : 43
-initial apicid : 11
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5187.31
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 45
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 1
-siblings : 16
-core id : 3
-cpu cores : 8
-apicid : 75
-initial apicid : 43
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 46
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 2
-siblings : 16
-core id : 3
-cpu cores : 8
-apicid : 107
-initial apicid : 75
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 47
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 3
-siblings : 16
-core id : 3
-cpu cores : 8
-apicid : 139
-initial apicid : 107
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.44
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 48
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 0
-siblings : 16
-core id : 4
-cpu cores : 8
-apicid : 44
-initial apicid : 12
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5187.31
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 49
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 1
-siblings : 16
-core id : 4
-cpu cores : 8
-apicid : 76
-initial apicid : 44
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 50
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 2
-siblings : 16
-core id : 4
-cpu cores : 8
-apicid : 108
-initial apicid : 76
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 51
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 3
-siblings : 16
-core id : 4
-cpu cores : 8
-apicid : 140
-initial apicid : 108
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.44
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 52
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 0
-siblings : 16
-core id : 5
-cpu cores : 8
-apicid : 45
-initial apicid : 13
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5187.31
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 53
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 1
-siblings : 16
-core id : 5
-cpu cores : 8
-apicid : 77
-initial apicid : 45
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 54
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 2
-siblings : 16
-core id : 5
-cpu cores : 8
-apicid : 109
-initial apicid : 77
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 55
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 3
-siblings : 16
-core id : 5
-cpu cores : 8
-apicid : 141
-initial apicid : 109
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.44
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 56
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 0
-siblings : 16
-core id : 6
-cpu cores : 8
-apicid : 46
-initial apicid : 14
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5187.31
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 57
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 1
-siblings : 16
-core id : 6
-cpu cores : 8
-apicid : 78
-initial apicid : 46
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 58
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 2
-siblings : 16
-core id : 6
-cpu cores : 8
-apicid : 110
-initial apicid : 78
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 59
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 3
-siblings : 16
-core id : 6
-cpu cores : 8
-apicid : 142
-initial apicid : 110
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.44
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 60
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 0
-siblings : 16
-core id : 7
-cpu cores : 8
-apicid : 47
-initial apicid : 15
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5187.31
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 61
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 1
-siblings : 16
-core id : 7
-cpu cores : 8
-apicid : 79
-initial apicid : 47
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 62
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 2
-siblings : 16
-core id : 7
-cpu cores : 8
-apicid : 111
-initial apicid : 79
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.41
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
-processor : 63
-vendor_id : AuthenticAMD
-cpu family : 21
-model : 1
-model name : AMD Opteron(tm) Processor 6282 SE
-stepping : 2
-cpu MHz : 2593.658
-cache size : 2048 KB
-physical id : 3
-siblings : 16
-core id : 7
-cpu cores : 8
-apicid : 143
-initial apicid : 111
-fpu : yes
-fpu_exception : yes
-cpuid level : 13
-wp : yes
-flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
-bogomips : 5186.44
-TLB size : 1536 4K pages
-clflush size : 64
-cache_alignment : 64
-address sizes : 48 bits physical, 48 bits virtual
-power management: ts ttp tm 100mhzsteps hwpstate cpb
-
+++ /dev/null
-CPUs: 64/64, MHz: 2593, Nodes: 1, Sockets: 1, Cores: 64, Threads: 1
+++ /dev/null
-/*
- * Copyright (C) 2015 Red Hat, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library. If not, see
- * <http://www.gnu.org/licenses/>.
- *
- */
-
-#include <config.h>
-
-#include "internal.h"
-#include "nodeinfo.h"
-
-int
-virHostCPUGetThreadsPerSubcore(virArch arch)
-{
- int threads_per_subcore = 0;
-
- // Emulate SMT=8 on POWER hardware
- if (ARCH_IS_PPC64(arch))
- threads_per_subcore = 8;
-
- return threads_per_subcore;
-}
+++ /dev/null
-#include <config.h>
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <unistd.h>
-
-#include "testutils.h"
-#include "internal.h"
-#include "nodeinfopriv.h"
-#include "virfile.h"
-#include "virstring.h"
-
-#define VIR_FROM_THIS VIR_FROM_NONE
-
-#if !(defined __linux__)
-
-int
-main(void)
-{
- return EXIT_AM_SKIP;
-}
-
-#else
-
-static int
-linuxTestCompareFiles(const char *cpuinfofile,
- virArch arch,
- const char *outputfile)
-{
- int ret = -1;
- char *actualData = NULL;
- virNodeInfo nodeinfo;
- FILE *cpuinfo;
-
- cpuinfo = fopen(cpuinfofile, "r");
- if (!cpuinfo) {
- fprintf(stderr, "unable to open: %s : %s\n",
- cpuinfofile, strerror(errno));
- goto fail;
- }
-
- memset(&nodeinfo, 0, sizeof(nodeinfo));
- if (virHostCPUGetInfoPopulateLinux(cpuinfo, arch,
- &nodeinfo.cpus, &nodeinfo.mhz,
- &nodeinfo.nodes, &nodeinfo.sockets,
- &nodeinfo.cores, &nodeinfo.threads) < 0) {
- if (virTestGetDebug()) {
- if (virGetLastError())
- VIR_TEST_DEBUG("\n%s\n", virGetLastErrorMessage());
- }
- VIR_FORCE_FCLOSE(cpuinfo);
- goto fail;
- }
- VIR_FORCE_FCLOSE(cpuinfo);
-
- if (virAsprintf(&actualData,
- "CPUs: %u/%u, MHz: %u, Nodes: %u, Sockets: %u, "
- "Cores: %u, Threads: %u\n",
- nodeinfo.cpus, VIR_NODEINFO_MAXCPUS(nodeinfo),
- nodeinfo.mhz, nodeinfo.nodes, nodeinfo.sockets,
- nodeinfo.cores, nodeinfo.threads) < 0)
- goto fail;
-
- if (virTestCompareToFile(actualData, outputfile) < 0)
- goto fail;
-
- ret = 0;
-
- fail:
- VIR_FREE(actualData);
- return ret;
-}
-
-# define TICK_TO_NSEC (1000ull * 1000ull * 1000ull / sysconf(_SC_CLK_TCK))
-
-static int
-linuxCPUStatsToBuf(virBufferPtr buf,
- int cpu,
- virNodeCPUStatsPtr param,
- size_t nparams)
-{
- size_t i = 0;
-
- if (cpu < 0)
- virBufferAddLit(buf, "cpu:\n");
- else
- virBufferAsprintf(buf, "cpu%d:\n", cpu);
-
- for (i = 0; i < nparams; i++)
- virBufferAsprintf(buf, "%s: %llu\n", param[i].field,
- param[i].value / TICK_TO_NSEC);
-
- virBufferAddChar(buf, '\n');
- return 0;
-}
-
-static int
-linuxCPUStatsCompareFiles(const char *cpustatfile,
- size_t ncpus,
- const char *outfile)
-{
- int ret = -1;
- char *actualData = NULL;
- FILE *cpustat = NULL;
- virNodeCPUStatsPtr params = NULL;
- virBuffer buf = VIR_BUFFER_INITIALIZER;
- size_t i;
- int nparams = 0;
-
- if (!(cpustat = fopen(cpustatfile, "r"))) {
- virReportSystemError(errno, "failed to open '%s': ", cpustatfile);
- goto fail;
- }
-
- if (virHostCPUGetStatsLinux(NULL, 0, NULL, &nparams) < 0)
- goto fail;
-
- if (VIR_ALLOC_N(params, nparams) < 0)
- goto fail;
-
- if (virHostCPUGetStatsLinux(cpustat, VIR_NODE_CPU_STATS_ALL_CPUS, params,
- &nparams) < 0)
- goto fail;
-
- if (linuxCPUStatsToBuf(&buf, VIR_NODE_CPU_STATS_ALL_CPUS,
- params, nparams) < 0)
- goto fail;
-
- for (i = 0; i < ncpus; i++) {
- if (virHostCPUGetStatsLinux(cpustat, i, params, &nparams) < 0)
- goto fail;
- if (linuxCPUStatsToBuf(&buf, i, params, nparams) < 0)
- goto fail;
- }
-
- if (!(actualData = virBufferContentAndReset(&buf))) {
- virReportOOMError();
- goto fail;
- }
-
- if (virTestCompareToFile(actualData, outfile) < 0)
- goto fail;
-
- ret = 0;
-
- fail:
- virBufferFreeAndReset(&buf);
- VIR_FORCE_FCLOSE(cpustat);
- VIR_FREE(actualData);
- VIR_FREE(params);
- return ret;
-}
-
-
-struct linuxTestNodeInfoData {
- const char *testName;
- virArch arch;
-};
-
-static int
-linuxTestNodeInfo(const void *opaque)
-{
- int result = -1;
- char *cpuinfo = NULL;
- char *sysfs_prefix = NULL;
- char *output = NULL;
- struct linuxTestNodeInfoData *data = (struct linuxTestNodeInfoData *) opaque;
- const char *archStr = virArchToString(data->arch);
-
- if (virAsprintf(&sysfs_prefix, "%s/nodeinfodata/linux-%s",
- abs_srcdir, data->testName) < 0 ||
- virAsprintf(&cpuinfo, "%s/nodeinfodata/linux-%s-%s.cpuinfo",
- abs_srcdir, archStr, data->testName) < 0 ||
- virAsprintf(&output, "%s/nodeinfodata/linux-%s-%s.expected",
- abs_srcdir, archStr, data->testName) < 0) {
- goto cleanup;
- }
-
- virHostCPUSetSysFSSystemPathLinux(sysfs_prefix);
- result = linuxTestCompareFiles(cpuinfo, data->arch, output);
- virHostCPUSetSysFSSystemPathLinux(NULL);
-
- cleanup:
- VIR_FREE(cpuinfo);
- VIR_FREE(output);
- VIR_FREE(sysfs_prefix);
-
- return result;
-}
-
-struct nodeCPUStatsData {
- const char *name;
- int ncpus;
-};
-
-static int
-linuxTestNodeCPUStats(const void *data)
-{
- const struct nodeCPUStatsData *testData = data;
- int result = -1;
- char *cpustatfile = NULL;
- char *outfile = NULL;
-
- if (virAsprintf(&cpustatfile, "%s/nodeinfodata/linux-cpustat-%s.stat",
- abs_srcdir, testData->name) < 0 ||
- virAsprintf(&outfile, "%s/nodeinfodata/linux-cpustat-%s.out",
- abs_srcdir, testData->name) < 0)
- goto fail;
-
- result = linuxCPUStatsCompareFiles(cpustatfile,
- testData->ncpus,
- outfile);
- fail:
- VIR_FREE(cpustatfile);
- VIR_FREE(outfile);
- return result;
-}
-
-
-static int
-mymain(void)
-{
- int ret = 0;
- size_t i;
- const struct linuxTestNodeInfoData nodeData[] = {
- {"test1", VIR_ARCH_X86_64},
- {"test1", VIR_ARCH_PPC},
- {"test2", VIR_ARCH_X86_64},
- {"test3", VIR_ARCH_X86_64},
- {"test4", VIR_ARCH_X86_64},
- {"test5", VIR_ARCH_X86_64},
- {"test6", VIR_ARCH_X86_64},
- {"test7", VIR_ARCH_X86_64},
- {"test8", VIR_ARCH_X86_64},
- {"raspberrypi", VIR_ARCH_ARMV6L},
- {"f21-mustang", VIR_ARCH_AARCH64},
- {"rhelsa-3.19.0-mustang", VIR_ARCH_AARCH64},
- {"deconf-cpus", VIR_ARCH_PPC64},
- /* subcores, default configuration */
- {"subcores1", VIR_ARCH_PPC64},
- /* subcores, some of the cores are offline */
- {"subcores2", VIR_ARCH_PPC64},
- /* subcores, invalid configuration */
- {"subcores3", VIR_ARCH_PPC64},
- };
-
- if (virInitialize() < 0)
- return EXIT_FAILURE;
-
- for (i = 0; i < ARRAY_CARDINALITY(nodeData); i++)
- if (virTestRun(nodeData[i].testName, linuxTestNodeInfo, &nodeData[i]) != 0)
- ret = -1;
-
-# define DO_TEST_CPU_STATS(name, ncpus) \
- do { \
- static struct nodeCPUStatsData data = { name, ncpus }; \
- if (virTestRun("CPU stats " name, linuxTestNodeCPUStats, &data) < 0) \
- ret = -1; \
- } while (0)
-
- DO_TEST_CPU_STATS("24cpu", 24);
-
- return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
-}
-
-VIRT_TEST_MAIN_PRELOAD(mymain, abs_builddir "/.libs/nodeinfomock.so")
-
-#endif /* __linux__ */
# include "virfile.h"
# include "virbuffer.h"
# include "testutilslxc.h"
-# include "nodeinfo.h"
+# include "virhostcpu.h"
# define VIR_FROM_THIS VIR_FROM_NONE
--- /dev/null
+Processor : AArch64 Processor rev 0 (aarch64)
+processor : 0
+processor : 1
+processor : 2
+processor : 3
+processor : 4
+processor : 5
+processor : 6
+processor : 7
+Features : fp asimd evtstrm
+CPU implementer : 0x50
+CPU architecture: AArch64
+CPU variant : 0x0
+CPU part : 0x000
+CPU revision : 0
+
+Hardware : APM X-Gene Mustang board
--- /dev/null
+CPUs: 8/8, MHz: 0, Nodes: 1, Sockets: 4, Cores: 2, Threads: 1
--- /dev/null
+CPUs: 8/8, MHz: 0, Nodes: 1, Sockets: 1, Cores: 8, Threads: 1
--- /dev/null
+Processor : ARMv6-compatible processor rev 7 (v6l)
+BogoMIPS : 697.95
+Features : swp half thumb fastmult vfp edsp java tls
+CPU implementer : 0x41
+CPU architecture: 7
+CPU variant : 0x0
+CPU part : 0xb76
+CPU revision : 7
+
+Hardware : BCM2708
+Revision : 1000003
+Serial : 000000008fbfc895
--- /dev/null
+CPUs: 1/1, MHz: 697, Nodes: 1, Sockets: 1, Cores: 1, Threads: 1
--- /dev/null
+cpu:
+kernel: 8751170
+user: 14128079
+idle: 1816344522
+iowait: 81323
+
+cpu0:
+kernel: 447603
+user: 749021
+idle: 75399242
+iowait: 5295
+
+cpu1:
+kernel: 167215
+user: 337326
+idle: 76178612
+iowait: 1121
+
+cpu2:
+kernel: 308930
+user: 666889
+idle: 75649696
+iowait: 4298
+
+cpu3:
+kernel: 227674
+user: 328464
+idle: 76131634
+iowait: 1219
+
+cpu4:
+kernel: 299514
+user: 583915
+idle: 75746383
+iowait: 3997
+
+cpu5:
+kernel: 112287
+user: 231867
+idle: 76336319
+iowait: 798
+
+cpu6:
+kernel: 546590
+user: 896252
+idle: 75132665
+iowait: 7210
+
+cpu7:
+kernel: 177715
+user: 342337
+idle: 76154889
+iowait: 1933
+
+cpu8:
+kernel: 452773
+user: 772479
+idle: 75359327
+iowait: 5845
+
+cpu9:
+kernel: 1050230
+user: 1079258
+idle: 74532776
+iowait: 3340
+
+cpu10:
+kernel: 535495
+user: 847295
+idle: 75202362
+iowait: 4038
+
+cpu11:
+kernel: 171635
+user: 323891
+idle: 76181622
+iowait: 993
+
+cpu12:
+kernel: 331031
+user: 683257
+idle: 75587176
+iowait: 5174
+
+cpu13:
+kernel: 112686
+user: 230633
+idle: 76345295
+iowait: 1367
+
+cpu14:
+kernel: 251393
+user: 547599
+idle: 75824554
+iowait: 5195
+
+cpu15:
+kernel: 199044
+user: 260673
+idle: 76230586
+iowait: 1379
+
+cpu16:
+kernel: 244158
+user: 463357
+idle: 75923993
+iowait: 6211
+
+cpu17:
+kernel: 88571
+user: 189253
+idle: 76411610
+iowait: 1388
+
+cpu18:
+kernel: 546539
+user: 875655
+idle: 75096896
+iowait: 5756
+
+cpu19:
+kernel: 186366
+user: 348768
+idle: 76137323
+iowait: 1299
+
+cpu20:
+kernel: 449460
+user: 765202
+idle: 75348938
+iowait: 4389
+
+cpu21:
+kernel: 1045076
+user: 1116075
+idle: 74500557
+iowait: 2411
+
+cpu22:
+kernel: 534125
+user: 847779
+idle: 75178185
+iowait: 5632
+
+cpu23:
+kernel: 265029
+user: 640815
+idle: 75753872
+iowait: 1026
+
--- /dev/null
+cpu 14126233 1846 7764352 1816344522 81323 395581 591237 0 5880634 0
+cpu0 748997 24 320851 75399242 5295 22050 104702 0 331814 0
+cpu1 337325 1 140909 76178612 1121 8962 17344 0 166726 0
+cpu2 666860 29 269302 75649696 4298 18473 21155 0 272094 0
+cpu3 328387 77 211400 76131634 1219 9701 6573 0 115551 0
+cpu4 583896 19 265185 75746383 3997 17525 16804 0 253387 0
+cpu5 231867 0 100660 76336319 798 6856 4771 0 118465 0
+cpu6 896023 229 472933 75132665 7210 25811 47846 0 410328 0
+cpu7 342336 1 159567 76154889 1933 8675 9473 0 204523 0
+cpu8 772415 64 382065 75359327 5845 22810 47898 0 347169 0
+cpu9 1078771 487 1007467 74532776 3340 28419 14344 0 150374 0
+cpu10 847174 121 461786 75202362 4038 25206 48503 0 370309 0
+cpu11 323890 1 153521 76181622 993 9462 8652 0 199566 0
+cpu12 683237 20 290483 75587176 5174 19287 21261 0 293663 0
+cpu13 230633 0 100001 76345295 1367 7171 5514 0 103907 0
+cpu14 547593 6 220118 75824554 5195 14963 16312 0 207464 0
+cpu15 260648 25 185128 76230586 1379 8448 5468 0 76655 0
+cpu16 463328 29 214199 75923993 6211 14403 15556 0 184943 0
+cpu17 189247 6 79317 76411610 1388 5455 3799 0 85456 0
+cpu18 875552 103 470237 75096896 5756 25159 51143 0 408446 0
+cpu19 348767 1 167550 76137323 1299 8813 10003 0 208604 0
+cpu20 765169 33 380697 75348938 4389 21782 46981 0 353323 0
+cpu21 1115675 400 1003579 74500557 2411 28146 13351 0 162678 0
+cpu22 847629 150 463239 75178185 5632 24933 45953 0 376150 0
+cpu23 640804 11 244148 75753872 1026 13061 7820 0 479032 0
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010100,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010100,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000101,01000000,00000000,00000000,00000000
--- /dev/null
+120,128,136
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000101,01000000,00000000,00000000,00000000
--- /dev/null
+120,128,136
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000101,01000000,00000000,00000000,00000000
--- /dev/null
+120,128,136
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01010000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01010000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00010100,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00010100,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00010100,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000
--- /dev/null
+0-15,17-23,25-39,41-47,49-71,73-103,105-111,113-119,121-127,129-135,137-159
--- /dev/null
+16,24,40,48,72,104,112,120,128,136
--- /dev/null
+16-31,40-55,72-79,104-143
--- /dev/null
+../../cpu/cpu0
\ No newline at end of file
--- /dev/null
+../../cpu/cpu1
\ No newline at end of file
--- /dev/null
+../../cpu/cpu10
\ No newline at end of file
--- /dev/null
+../../cpu/cpu100
\ No newline at end of file
--- /dev/null
+../../cpu/cpu101
\ No newline at end of file
--- /dev/null
+../../cpu/cpu102
\ No newline at end of file
--- /dev/null
+../../cpu/cpu103
\ No newline at end of file
--- /dev/null
+../../cpu/cpu11
\ No newline at end of file
--- /dev/null
+../../cpu/cpu12
\ No newline at end of file
--- /dev/null
+../../cpu/cpu13
\ No newline at end of file
--- /dev/null
+../../cpu/cpu14
\ No newline at end of file
--- /dev/null
+../../cpu/cpu144
\ No newline at end of file
--- /dev/null
+../../cpu/cpu145
\ No newline at end of file
--- /dev/null
+../../cpu/cpu146
\ No newline at end of file
--- /dev/null
+../../cpu/cpu147
\ No newline at end of file
--- /dev/null
+../../cpu/cpu148
\ No newline at end of file
--- /dev/null
+../../cpu/cpu149
\ No newline at end of file
--- /dev/null
+../../cpu/cpu15
\ No newline at end of file
--- /dev/null
+../../cpu/cpu150
\ No newline at end of file
--- /dev/null
+../../cpu/cpu151
\ No newline at end of file
--- /dev/null
+../../cpu/cpu152
\ No newline at end of file
--- /dev/null
+../../cpu/cpu153
\ No newline at end of file
--- /dev/null
+../../cpu/cpu154
\ No newline at end of file
--- /dev/null
+../../cpu/cpu155
\ No newline at end of file
--- /dev/null
+../../cpu/cpu156
\ No newline at end of file
--- /dev/null
+../../cpu/cpu157
\ No newline at end of file
--- /dev/null
+../../cpu/cpu158
\ No newline at end of file
--- /dev/null
+../../cpu/cpu159
\ No newline at end of file
--- /dev/null
+../../cpu/cpu16
\ No newline at end of file
--- /dev/null
+../../cpu/cpu17
\ No newline at end of file
--- /dev/null
+../../cpu/cpu18
\ No newline at end of file
--- /dev/null
+../../cpu/cpu19
\ No newline at end of file
--- /dev/null
+../../cpu/cpu2
\ No newline at end of file
--- /dev/null
+../../cpu/cpu20
\ No newline at end of file
--- /dev/null
+../../cpu/cpu21
\ No newline at end of file
--- /dev/null
+../../cpu/cpu22
\ No newline at end of file
--- /dev/null
+../../cpu/cpu23
\ No newline at end of file
--- /dev/null
+../../cpu/cpu24
\ No newline at end of file
--- /dev/null
+../../cpu/cpu25
\ No newline at end of file
--- /dev/null
+../../cpu/cpu26
\ No newline at end of file
--- /dev/null
+../../cpu/cpu27
\ No newline at end of file
--- /dev/null
+../../cpu/cpu28
\ No newline at end of file
--- /dev/null
+../../cpu/cpu29
\ No newline at end of file
--- /dev/null
+../../cpu/cpu3
\ No newline at end of file
--- /dev/null
+../../cpu/cpu30
\ No newline at end of file
--- /dev/null
+../../cpu/cpu31
\ No newline at end of file
--- /dev/null
+../../cpu/cpu32
\ No newline at end of file
--- /dev/null
+../../cpu/cpu33
\ No newline at end of file
--- /dev/null
+../../cpu/cpu34
\ No newline at end of file
--- /dev/null
+../../cpu/cpu35
\ No newline at end of file
--- /dev/null
+../../cpu/cpu36
\ No newline at end of file
--- /dev/null
+../../cpu/cpu37
\ No newline at end of file
--- /dev/null
+../../cpu/cpu38
\ No newline at end of file
--- /dev/null
+../../cpu/cpu39
\ No newline at end of file
--- /dev/null
+../../cpu/cpu4
\ No newline at end of file
--- /dev/null
+../../cpu/cpu5
\ No newline at end of file
--- /dev/null
+../../cpu/cpu56
\ No newline at end of file
--- /dev/null
+../../cpu/cpu57
\ No newline at end of file
--- /dev/null
+../../cpu/cpu58
\ No newline at end of file
--- /dev/null
+../../cpu/cpu59
\ No newline at end of file
--- /dev/null
+../../cpu/cpu6
\ No newline at end of file
--- /dev/null
+../../cpu/cpu60
\ No newline at end of file
--- /dev/null
+../../cpu/cpu61
\ No newline at end of file
--- /dev/null
+../../cpu/cpu62
\ No newline at end of file
--- /dev/null
+../../cpu/cpu63
\ No newline at end of file
--- /dev/null
+../../cpu/cpu64
\ No newline at end of file
--- /dev/null
+../../cpu/cpu65
\ No newline at end of file
--- /dev/null
+../../cpu/cpu66
\ No newline at end of file
--- /dev/null
+../../cpu/cpu67
\ No newline at end of file
--- /dev/null
+../../cpu/cpu68
\ No newline at end of file
--- /dev/null
+../../cpu/cpu69
\ No newline at end of file
--- /dev/null
+../../cpu/cpu7
\ No newline at end of file
--- /dev/null
+../../cpu/cpu70
\ No newline at end of file
--- /dev/null
+../../cpu/cpu71
\ No newline at end of file
--- /dev/null
+../../cpu/cpu8
\ No newline at end of file
--- /dev/null
+../../cpu/cpu80
\ No newline at end of file
--- /dev/null
+../../cpu/cpu81
\ No newline at end of file
--- /dev/null
+../../cpu/cpu82
\ No newline at end of file
--- /dev/null
+../../cpu/cpu83
\ No newline at end of file
--- /dev/null
+../../cpu/cpu84
\ No newline at end of file
--- /dev/null
+../../cpu/cpu85
\ No newline at end of file
--- /dev/null
+../../cpu/cpu86
\ No newline at end of file
--- /dev/null
+../../cpu/cpu87
\ No newline at end of file
--- /dev/null
+../../cpu/cpu88
\ No newline at end of file
--- /dev/null
+../../cpu/cpu89
\ No newline at end of file
--- /dev/null
+../../cpu/cpu9
\ No newline at end of file
--- /dev/null
+../../cpu/cpu90
\ No newline at end of file
--- /dev/null
+../../cpu/cpu91
\ No newline at end of file
--- /dev/null
+../../cpu/cpu92
\ No newline at end of file
--- /dev/null
+../../cpu/cpu93
\ No newline at end of file
--- /dev/null
+../../cpu/cpu94
\ No newline at end of file
--- /dev/null
+../../cpu/cpu95
\ No newline at end of file
--- /dev/null
+../../cpu/cpu96
\ No newline at end of file
--- /dev/null
+../../cpu/cpu97
\ No newline at end of file
--- /dev/null
+../../cpu/cpu98
\ No newline at end of file
--- /dev/null
+../../cpu/cpu99
\ No newline at end of file
--- /dev/null
+Node 0 MemTotal: 67108864 kB
+Node 0 MemFree: 61960640 kB
+Node 0 MemUsed: 5148224 kB
+Node 0 Active: 124864 kB
+Node 0 Inactive: 107584 kB
+Node 0 Active(anon): 83648 kB
+Node 0 Inactive(anon): 8768 kB
+Node 0 Active(file): 41216 kB
+Node 0 Inactive(file): 98816 kB
+Node 0 Unevictable: 0 kB
+Node 0 Mlocked: 0 kB
+Node 0 Dirty: 128 kB
+Node 0 Writeback: 0 kB
+Node 0 FilePages: 155008 kB
+Node 0 Mapped: 31552 kB
+Node 0 AnonPages: 77312 kB
+Node 0 Shmem: 15104 kB
+Node 0 KernelStack: 8992 kB
+Node 0 PageTables: 1728 kB
+Node 0 NFS_Unstable: 0 kB
+Node 0 Bounce: 0 kB
+Node 0 WritebackTmp: 0 kB
+Node 0 Slab: 151872 kB
+Node 0 SReclaimable: 27776 kB
+Node 0 SUnreclaim: 124096 kB
+Node 0 AnonHugePages: 0 kB
+Node 0 HugePages_Total: 0
+Node 0 HugePages_Free: 0
+Node 0 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu40
\ No newline at end of file
--- /dev/null
+../../cpu/cpu41
\ No newline at end of file
--- /dev/null
+../../cpu/cpu42
\ No newline at end of file
--- /dev/null
+../../cpu/cpu43
\ No newline at end of file
--- /dev/null
+../../cpu/cpu44
\ No newline at end of file
--- /dev/null
+../../cpu/cpu45
\ No newline at end of file
--- /dev/null
+../../cpu/cpu46
\ No newline at end of file
--- /dev/null
+../../cpu/cpu47
\ No newline at end of file
--- /dev/null
+../../cpu/cpu48
\ No newline at end of file
--- /dev/null
+../../cpu/cpu49
\ No newline at end of file
--- /dev/null
+../../cpu/cpu50
\ No newline at end of file
--- /dev/null
+../../cpu/cpu51
\ No newline at end of file
--- /dev/null
+../../cpu/cpu52
\ No newline at end of file
--- /dev/null
+../../cpu/cpu53
\ No newline at end of file
--- /dev/null
+../../cpu/cpu54
\ No newline at end of file
--- /dev/null
+../../cpu/cpu55
\ No newline at end of file
--- /dev/null
+../../cpu/cpu72
\ No newline at end of file
--- /dev/null
+../../cpu/cpu73
\ No newline at end of file
--- /dev/null
+../../cpu/cpu74
\ No newline at end of file
--- /dev/null
+../../cpu/cpu75
\ No newline at end of file
--- /dev/null
+../../cpu/cpu76
\ No newline at end of file
--- /dev/null
+../../cpu/cpu77
\ No newline at end of file
--- /dev/null
+../../cpu/cpu78
\ No newline at end of file
--- /dev/null
+../../cpu/cpu79
\ No newline at end of file
--- /dev/null
+Node 1 MemTotal: 67108864 kB
+Node 1 MemFree: 66143552 kB
+Node 1 MemUsed: 965312 kB
+Node 1 Active: 125952 kB
+Node 1 Inactive: 255808 kB
+Node 1 Active(anon): 79808 kB
+Node 1 Inactive(anon): 448 kB
+Node 1 Active(file): 46144 kB
+Node 1 Inactive(file): 255360 kB
+Node 1 Unevictable: 0 kB
+Node 1 Mlocked: 0 kB
+Node 1 Dirty: 213760 kB
+Node 1 Writeback: 0 kB
+Node 1 FilePages: 310656 kB
+Node 1 Mapped: 27328 kB
+Node 1 AnonPages: 73856 kB
+Node 1 Shmem: 6336 kB
+Node 1 KernelStack: 4624 kB
+Node 1 PageTables: 512 kB
+Node 1 NFS_Unstable: 0 kB
+Node 1 Bounce: 0 kB
+Node 1 WritebackTmp: 0 kB
+Node 1 Slab: 130688 kB
+Node 1 SReclaimable: 21120 kB
+Node 1 SUnreclaim: 109568 kB
+Node 1 AnonHugePages: 0 kB
+Node 1 HugePages_Total: 0
+Node 1 HugePages_Free: 0
+Node 1 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu104
\ No newline at end of file
--- /dev/null
+../../cpu/cpu105
\ No newline at end of file
--- /dev/null
+../../cpu/cpu106
\ No newline at end of file
--- /dev/null
+../../cpu/cpu107
\ No newline at end of file
--- /dev/null
+../../cpu/cpu108
\ No newline at end of file
--- /dev/null
+../../cpu/cpu109
\ No newline at end of file
--- /dev/null
+../../cpu/cpu110
\ No newline at end of file
--- /dev/null
+../../cpu/cpu111
\ No newline at end of file
--- /dev/null
+../../cpu/cpu112
\ No newline at end of file
--- /dev/null
+../../cpu/cpu113
\ No newline at end of file
--- /dev/null
+../../cpu/cpu114
\ No newline at end of file
--- /dev/null
+../../cpu/cpu115
\ No newline at end of file
--- /dev/null
+../../cpu/cpu116
\ No newline at end of file
--- /dev/null
+../../cpu/cpu117
\ No newline at end of file
--- /dev/null
+../../cpu/cpu118
\ No newline at end of file
--- /dev/null
+../../cpu/cpu119
\ No newline at end of file
--- /dev/null
+Node 16 MemTotal: 67108864 kB
+Node 16 MemFree: 66573952 kB
+Node 16 MemUsed: 534912 kB
+Node 16 Active: 14272 kB
+Node 16 Inactive: 16832 kB
+Node 16 Active(anon): 6272 kB
+Node 16 Inactive(anon): 64 kB
+Node 16 Active(file): 8000 kB
+Node 16 Inactive(file): 16768 kB
+Node 16 Unevictable: 0 kB
+Node 16 Mlocked: 0 kB
+Node 16 Dirty: 0 kB
+Node 16 Writeback: 0 kB
+Node 16 FilePages: 26176 kB
+Node 16 Mapped: 384 kB
+Node 16 AnonPages: 4928 kB
+Node 16 Shmem: 1408 kB
+Node 16 KernelStack: 1968 kB
+Node 16 PageTables: 192 kB
+Node 16 NFS_Unstable: 0 kB
+Node 16 Bounce: 0 kB
+Node 16 WritebackTmp: 0 kB
+Node 16 Slab: 46336 kB
+Node 16 SReclaimable: 2688 kB
+Node 16 SUnreclaim: 43648 kB
+Node 16 AnonHugePages: 0 kB
+Node 16 HugePages_Total: 0
+Node 16 HugePages_Free: 0
+Node 16 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu120
\ No newline at end of file
--- /dev/null
+../../cpu/cpu121
\ No newline at end of file
--- /dev/null
+../../cpu/cpu122
\ No newline at end of file
--- /dev/null
+../../cpu/cpu123
\ No newline at end of file
--- /dev/null
+../../cpu/cpu124
\ No newline at end of file
--- /dev/null
+../../cpu/cpu125
\ No newline at end of file
--- /dev/null
+../../cpu/cpu126
\ No newline at end of file
--- /dev/null
+../../cpu/cpu127
\ No newline at end of file
--- /dev/null
+../../cpu/cpu128
\ No newline at end of file
--- /dev/null
+../../cpu/cpu129
\ No newline at end of file
--- /dev/null
+../../cpu/cpu130
\ No newline at end of file
--- /dev/null
+../../cpu/cpu131
\ No newline at end of file
--- /dev/null
+../../cpu/cpu132
\ No newline at end of file
--- /dev/null
+../../cpu/cpu133
\ No newline at end of file
--- /dev/null
+../../cpu/cpu134
\ No newline at end of file
--- /dev/null
+../../cpu/cpu135
\ No newline at end of file
--- /dev/null
+../../cpu/cpu136
\ No newline at end of file
--- /dev/null
+../../cpu/cpu137
\ No newline at end of file
--- /dev/null
+../../cpu/cpu138
\ No newline at end of file
--- /dev/null
+../../cpu/cpu139
\ No newline at end of file
--- /dev/null
+../../cpu/cpu140
\ No newline at end of file
--- /dev/null
+../../cpu/cpu141
\ No newline at end of file
--- /dev/null
+../../cpu/cpu142
\ No newline at end of file
--- /dev/null
+../../cpu/cpu143
\ No newline at end of file
--- /dev/null
+Node 17 MemTotal: 67108864 kB
+Node 17 MemFree: 66334656 kB
+Node 17 MemUsed: 774208 kB
+Node 17 Active: 15936 kB
+Node 17 Inactive: 12416 kB
+Node 17 Active(anon): 10944 kB
+Node 17 Inactive(anon): 64 kB
+Node 17 Active(file): 4992 kB
+Node 17 Inactive(file): 12352 kB
+Node 17 Unevictable: 0 kB
+Node 17 Mlocked: 0 kB
+Node 17 Dirty: 0 kB
+Node 17 Writeback: 0 kB
+Node 17 FilePages: 17600 kB
+Node 17 Mapped: 768 kB
+Node 17 AnonPages: 10752 kB
+Node 17 Shmem: 256 kB
+Node 17 KernelStack: 3808 kB
+Node 17 PageTables: 128 kB
+Node 17 NFS_Unstable: 0 kB
+Node 17 Bounce: 0 kB
+Node 17 WritebackTmp: 0 kB
+Node 17 Slab: 25792 kB
+Node 17 SReclaimable: 3840 kB
+Node 17 SUnreclaim: 21952 kB
+Node 17 AnonHugePages: 0 kB
+Node 17 HugePages_Total: 0
+Node 17 HugePages_Free: 0
+Node 17 HugePages_Surp: 0
--- /dev/null
+processor : 0
+cpu : POWER7 (raw), altivec supported
+clock : 8.388608MHz
+revision : 2.3 (pvr 003f 0203)
+
+processor : 1
+cpu : POWER7 (raw), altivec supported
+clock : 8.388608MHz
+revision : 2.3 (pvr 003f 0203)
--- /dev/null
+CPUs: 2/2, MHz: 8, Nodes: 1, Sockets: 1, Cores: 2, Threads: 1
--- /dev/null
+processor : 16
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 24
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 40
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 48
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 72
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 104
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 112
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 120
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 128
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 136
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+timebase : 512000000
+platform : PowerNV
+model : 8247-22L
+machine : PowerNV 8247-22L
+firmware : OPAL v3
--- /dev/null
+CPUs: 80/80, MHz: 3690, Nodes: 1, Sockets: 1, Cores: 80, Threads: 1
--- /dev/null
+processor : 0
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 8
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 16
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 24
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 32
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 40
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 48
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 56
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 64
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 72
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 80
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 88
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 96
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 104
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 112
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 120
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 128
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 136
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 144
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 152
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+timebase : 512000000
+platform : PowerNV
+model : 8247-22L
+machine : PowerNV 8247-22L
+firmware : OPAL v3
--- /dev/null
+CPUs: 160/160, MHz: 3690, Nodes: 4, Sockets: 1, Cores: 5, Threads: 8
--- /dev/null
+processor : 0
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 8
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 16
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 24
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 32
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 48
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 96
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 136
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+timebase : 512000000
+platform : PowerNV
+model : 8247-22L
+machine : PowerNV 8247-22L
+firmware : OPAL v3
--- /dev/null
+CPUs: 64/160, MHz: 3690, Nodes: 4, Sockets: 1, Cores: 5, Threads: 8
--- /dev/null
+processor : 8
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 40
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 48
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 56
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 68
+cpu : POWER8E (raw), altivec supported
+clock : 2061.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 72
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 80
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 88
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 96
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 104
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 112
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 128
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 136
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 152
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 153
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 154
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 155
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 156
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 157
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 158
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+processor : 159
+cpu : POWER8E (raw), altivec supported
+clock : 3690.000000MHz
+revision : 2.1 (pvr 004b 0201)
+
+timebase : 512000000
+platform : PowerNV
+model : 8247-22L
+machine : PowerNV 8247-22L
+firmware : OPAL v3
--- /dev/null
+CPUs: 21/160, MHz: 3690, Nodes: 4, Sockets: 1, Cores: 5, Threads: 8
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000ff
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000ff
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000ff
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000004
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000ff
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000008
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000ff
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000010
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000ff
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000020
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000ff
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000040
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,000000ff
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000080
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
--- /dev/null
+0,8,16,24,32
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
--- /dev/null
+80,88,96,104,112
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
--- /dev/null
+80,88,96,104,112
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01010101,01000000,00000000,00000000,00000000
--- /dev/null
+120,128,136,144,152
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01010101,01000000,00000000,00000000,00000000
--- /dev/null
+120,128,136,144,152
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01010101,01000000,00000000,00000000,00000000
--- /dev/null
+120,128,136,144,152
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01010101,01000000,00000000,00000000,00000000
--- /dev/null
+120,128,136,144,152
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01010101,01000000,00000000,00000000,00000000
--- /dev/null
+120,128,136,144,152
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
--- /dev/null
+0,8,16,24,32
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
--- /dev/null
+0,8,16,24,32
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
--- /dev/null
+0,8,16,24,32
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000101,01010100,00000000
--- /dev/null
+40,48,56,64,72
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000101,01010100,00000000
--- /dev/null
+40,48,56,64,72
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000101,01010100,00000000
--- /dev/null
+40,48,56,64,72
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000101,01010100,00000000
--- /dev/null
+40,48,56,64,72
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000101,01010100,00000000
--- /dev/null
+40,48,56,64,72
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
--- /dev/null
+0,8,16,24,32
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
--- /dev/null
+80,88,96,104,112
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
--- /dev/null
+80,88,96,104,112
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
--- /dev/null
+80,88,96,104,112
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000,00000000,00000000
--- /dev/null
+1-7,9-15,17-23,25-31,33-39,41-47,49-55,57-63,65-71,73-79,81-87,89-95,97-103,105-111,113-119,121-127,129-135,137-143,145-151,153-159
--- /dev/null
+0,8,16,24,32,40,48,56,64,72,80,88,96,104,112,120,128,136,144,152
--- /dev/null
+../../cpu/cpu0
\ No newline at end of file
--- /dev/null
+../../cpu/cpu1
\ No newline at end of file
--- /dev/null
+../../cpu/cpu10
\ No newline at end of file
--- /dev/null
+../../cpu/cpu11
\ No newline at end of file
--- /dev/null
+../../cpu/cpu12
\ No newline at end of file
--- /dev/null
+../../cpu/cpu13
\ No newline at end of file
--- /dev/null
+../../cpu/cpu14
\ No newline at end of file
--- /dev/null
+../../cpu/cpu15
\ No newline at end of file
--- /dev/null
+../../cpu/cpu16
\ No newline at end of file
--- /dev/null
+../../cpu/cpu17
\ No newline at end of file
--- /dev/null
+../../cpu/cpu18
\ No newline at end of file
--- /dev/null
+../../cpu/cpu19
\ No newline at end of file
--- /dev/null
+../../cpu/cpu2
\ No newline at end of file
--- /dev/null
+../../cpu/cpu20
\ No newline at end of file
--- /dev/null
+../../cpu/cpu21
\ No newline at end of file
--- /dev/null
+../../cpu/cpu22
\ No newline at end of file
--- /dev/null
+../../cpu/cpu23
\ No newline at end of file
--- /dev/null
+../../cpu/cpu24
\ No newline at end of file
--- /dev/null
+../../cpu/cpu25
\ No newline at end of file
--- /dev/null
+../../cpu/cpu26
\ No newline at end of file
--- /dev/null
+../../cpu/cpu27
\ No newline at end of file
--- /dev/null
+../../cpu/cpu28
\ No newline at end of file
--- /dev/null
+../../cpu/cpu29
\ No newline at end of file
--- /dev/null
+../../cpu/cpu3
\ No newline at end of file
--- /dev/null
+../../cpu/cpu30
\ No newline at end of file
--- /dev/null
+../../cpu/cpu31
\ No newline at end of file
--- /dev/null
+../../cpu/cpu32
\ No newline at end of file
--- /dev/null
+../../cpu/cpu33
\ No newline at end of file
--- /dev/null
+../../cpu/cpu34
\ No newline at end of file
--- /dev/null
+../../cpu/cpu35
\ No newline at end of file
--- /dev/null
+../../cpu/cpu36
\ No newline at end of file
--- /dev/null
+../../cpu/cpu37
\ No newline at end of file
--- /dev/null
+../../cpu/cpu38
\ No newline at end of file
--- /dev/null
+../../cpu/cpu39
\ No newline at end of file
--- /dev/null
+../../cpu/cpu4
\ No newline at end of file
--- /dev/null
+../../cpu/cpu5
\ No newline at end of file
--- /dev/null
+../../cpu/cpu6
\ No newline at end of file
--- /dev/null
+../../cpu/cpu7
\ No newline at end of file
--- /dev/null
+../../cpu/cpu8
\ No newline at end of file
--- /dev/null
+../../cpu/cpu9
\ No newline at end of file
--- /dev/null
+Node 0 MemTotal: 67108864 kB
+Node 0 MemFree: 61610496 kB
+Node 0 MemUsed: 5498368 kB
+Node 0 Active: 214080 kB
+Node 0 Inactive: 242560 kB
+Node 0 Active(anon): 144896 kB
+Node 0 Inactive(anon): 8960 kB
+Node 0 Active(file): 69184 kB
+Node 0 Inactive(file): 233600 kB
+Node 0 Unevictable: 0 kB
+Node 0 Mlocked: 0 kB
+Node 0 Dirty: 145024 kB
+Node 0 Writeback: 0 kB
+Node 0 FilePages: 337408 kB
+Node 0 Mapped: 49792 kB
+Node 0 AnonPages: 131584 kB
+Node 0 Shmem: 22272 kB
+Node 0 KernelStack: 11936 kB
+Node 0 PageTables: 2688 kB
+Node 0 NFS_Unstable: 0 kB
+Node 0 Bounce: 0 kB
+Node 0 WritebackTmp: 0 kB
+Node 0 Slab: 257536 kB
+Node 0 SReclaimable: 40832 kB
+Node 0 SUnreclaim: 216704 kB
+Node 0 AnonHugePages: 0 kB
+Node 0 HugePages_Total: 0
+Node 0 HugePages_Free: 0
+Node 0 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu40
\ No newline at end of file
--- /dev/null
+../../cpu/cpu41
\ No newline at end of file
--- /dev/null
+../../cpu/cpu42
\ No newline at end of file
--- /dev/null
+../../cpu/cpu43
\ No newline at end of file
--- /dev/null
+../../cpu/cpu44
\ No newline at end of file
--- /dev/null
+../../cpu/cpu45
\ No newline at end of file
--- /dev/null
+../../cpu/cpu46
\ No newline at end of file
--- /dev/null
+../../cpu/cpu47
\ No newline at end of file
--- /dev/null
+../../cpu/cpu48
\ No newline at end of file
--- /dev/null
+../../cpu/cpu49
\ No newline at end of file
--- /dev/null
+../../cpu/cpu50
\ No newline at end of file
--- /dev/null
+../../cpu/cpu51
\ No newline at end of file
--- /dev/null
+../../cpu/cpu52
\ No newline at end of file
--- /dev/null
+../../cpu/cpu53
\ No newline at end of file
--- /dev/null
+../../cpu/cpu54
\ No newline at end of file
--- /dev/null
+../../cpu/cpu55
\ No newline at end of file
--- /dev/null
+../../cpu/cpu56
\ No newline at end of file
--- /dev/null
+../../cpu/cpu57
\ No newline at end of file
--- /dev/null
+../../cpu/cpu58
\ No newline at end of file
--- /dev/null
+../../cpu/cpu59
\ No newline at end of file
--- /dev/null
+../../cpu/cpu60
\ No newline at end of file
--- /dev/null
+../../cpu/cpu61
\ No newline at end of file
--- /dev/null
+../../cpu/cpu62
\ No newline at end of file
--- /dev/null
+../../cpu/cpu63
\ No newline at end of file
--- /dev/null
+../../cpu/cpu64
\ No newline at end of file
--- /dev/null
+../../cpu/cpu65
\ No newline at end of file
--- /dev/null
+../../cpu/cpu66
\ No newline at end of file
--- /dev/null
+../../cpu/cpu67
\ No newline at end of file
--- /dev/null
+../../cpu/cpu68
\ No newline at end of file
--- /dev/null
+../../cpu/cpu69
\ No newline at end of file
--- /dev/null
+../../cpu/cpu70
\ No newline at end of file
--- /dev/null
+../../cpu/cpu71
\ No newline at end of file
--- /dev/null
+../../cpu/cpu72
\ No newline at end of file
--- /dev/null
+../../cpu/cpu73
\ No newline at end of file
--- /dev/null
+../../cpu/cpu74
\ No newline at end of file
--- /dev/null
+../../cpu/cpu75
\ No newline at end of file
--- /dev/null
+../../cpu/cpu76
\ No newline at end of file
--- /dev/null
+../../cpu/cpu77
\ No newline at end of file
--- /dev/null
+../../cpu/cpu78
\ No newline at end of file
--- /dev/null
+../../cpu/cpu79
\ No newline at end of file
--- /dev/null
+Node 1 MemTotal: 67108864 kB
+Node 1 MemFree: 66559168 kB
+Node 1 MemUsed: 549696 kB
+Node 1 Active: 24192 kB
+Node 1 Inactive: 6016 kB
+Node 1 Active(anon): 21440 kB
+Node 1 Inactive(anon): 128 kB
+Node 1 Active(file): 2752 kB
+Node 1 Inactive(file): 5888 kB
+Node 1 Unevictable: 0 kB
+Node 1 Mlocked: 0 kB
+Node 1 Dirty: 0 kB
+Node 1 Writeback: 0 kB
+Node 1 FilePages: 9088 kB
+Node 1 Mapped: 5056 kB
+Node 1 AnonPages: 21120 kB
+Node 1 Shmem: 448 kB
+Node 1 KernelStack: 5472 kB
+Node 1 PageTables: 64 kB
+Node 1 NFS_Unstable: 0 kB
+Node 1 Bounce: 0 kB
+Node 1 WritebackTmp: 0 kB
+Node 1 Slab: 59712 kB
+Node 1 SReclaimable: 5952 kB
+Node 1 SUnreclaim: 53760 kB
+Node 1 AnonHugePages: 0 kB
+Node 1 HugePages_Total: 0
+Node 1 HugePages_Free: 0
+Node 1 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu100
\ No newline at end of file
--- /dev/null
+../../cpu/cpu101
\ No newline at end of file
--- /dev/null
+../../cpu/cpu102
\ No newline at end of file
--- /dev/null
+../../cpu/cpu103
\ No newline at end of file
--- /dev/null
+../../cpu/cpu104
\ No newline at end of file
--- /dev/null
+../../cpu/cpu105
\ No newline at end of file
--- /dev/null
+../../cpu/cpu106
\ No newline at end of file
--- /dev/null
+../../cpu/cpu107
\ No newline at end of file
--- /dev/null
+../../cpu/cpu108
\ No newline at end of file
--- /dev/null
+../../cpu/cpu109
\ No newline at end of file
--- /dev/null
+../../cpu/cpu110
\ No newline at end of file
--- /dev/null
+../../cpu/cpu111
\ No newline at end of file
--- /dev/null
+../../cpu/cpu112
\ No newline at end of file
--- /dev/null
+../../cpu/cpu113
\ No newline at end of file
--- /dev/null
+../../cpu/cpu114
\ No newline at end of file
--- /dev/null
+../../cpu/cpu115
\ No newline at end of file
--- /dev/null
+../../cpu/cpu116
\ No newline at end of file
--- /dev/null
+../../cpu/cpu117
\ No newline at end of file
--- /dev/null
+../../cpu/cpu118
\ No newline at end of file
--- /dev/null
+../../cpu/cpu119
\ No newline at end of file
--- /dev/null
+../../cpu/cpu80
\ No newline at end of file
--- /dev/null
+../../cpu/cpu81
\ No newline at end of file
--- /dev/null
+../../cpu/cpu82
\ No newline at end of file
--- /dev/null
+../../cpu/cpu83
\ No newline at end of file
--- /dev/null
+../../cpu/cpu84
\ No newline at end of file
--- /dev/null
+../../cpu/cpu85
\ No newline at end of file
--- /dev/null
+../../cpu/cpu86
\ No newline at end of file
--- /dev/null
+../../cpu/cpu87
\ No newline at end of file
--- /dev/null
+../../cpu/cpu88
\ No newline at end of file
--- /dev/null
+../../cpu/cpu89
\ No newline at end of file
--- /dev/null
+../../cpu/cpu90
\ No newline at end of file
--- /dev/null
+../../cpu/cpu91
\ No newline at end of file
--- /dev/null
+../../cpu/cpu92
\ No newline at end of file
--- /dev/null
+../../cpu/cpu93
\ No newline at end of file
--- /dev/null
+../../cpu/cpu94
\ No newline at end of file
--- /dev/null
+../../cpu/cpu95
\ No newline at end of file
--- /dev/null
+../../cpu/cpu96
\ No newline at end of file
--- /dev/null
+../../cpu/cpu97
\ No newline at end of file
--- /dev/null
+../../cpu/cpu98
\ No newline at end of file
--- /dev/null
+../../cpu/cpu99
\ No newline at end of file
--- /dev/null
+Node 16 MemTotal: 67108864 kB
+Node 16 MemFree: 66459328 kB
+Node 16 MemUsed: 649536 kB
+Node 16 Active: 17920 kB
+Node 16 Inactive: 65600 kB
+Node 16 Active(anon): 9728 kB
+Node 16 Inactive(anon): 64 kB
+Node 16 Active(file): 8192 kB
+Node 16 Inactive(file): 65536 kB
+Node 16 Unevictable: 0 kB
+Node 16 Mlocked: 0 kB
+Node 16 Dirty: 0 kB
+Node 16 Writeback: 0 kB
+Node 16 FilePages: 73792 kB
+Node 16 Mapped: 4672 kB
+Node 16 AnonPages: 9664 kB
+Node 16 Shmem: 128 kB
+Node 16 KernelStack: 5072 kB
+Node 16 PageTables: 64 kB
+Node 16 NFS_Unstable: 0 kB
+Node 16 Bounce: 0 kB
+Node 16 WritebackTmp: 0 kB
+Node 16 Slab: 91968 kB
+Node 16 SReclaimable: 10944 kB
+Node 16 SUnreclaim: 81024 kB
+Node 16 AnonHugePages: 0 kB
+Node 16 HugePages_Total: 0
+Node 16 HugePages_Free: 0
+Node 16 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu120
\ No newline at end of file
--- /dev/null
+../../cpu/cpu121
\ No newline at end of file
--- /dev/null
+../../cpu/cpu122
\ No newline at end of file
--- /dev/null
+../../cpu/cpu123
\ No newline at end of file
--- /dev/null
+../../cpu/cpu124
\ No newline at end of file
--- /dev/null
+../../cpu/cpu125
\ No newline at end of file
--- /dev/null
+../../cpu/cpu126
\ No newline at end of file
--- /dev/null
+../../cpu/cpu127
\ No newline at end of file
--- /dev/null
+../../cpu/cpu128
\ No newline at end of file
--- /dev/null
+../../cpu/cpu129
\ No newline at end of file
--- /dev/null
+../../cpu/cpu130
\ No newline at end of file
--- /dev/null
+../../cpu/cpu131
\ No newline at end of file
--- /dev/null
+../../cpu/cpu132
\ No newline at end of file
--- /dev/null
+../../cpu/cpu133
\ No newline at end of file
--- /dev/null
+../../cpu/cpu134
\ No newline at end of file
--- /dev/null
+../../cpu/cpu135
\ No newline at end of file
--- /dev/null
+../../cpu/cpu136
\ No newline at end of file
--- /dev/null
+../../cpu/cpu137
\ No newline at end of file
--- /dev/null
+../../cpu/cpu138
\ No newline at end of file
--- /dev/null
+../../cpu/cpu139
\ No newline at end of file
--- /dev/null
+../../cpu/cpu140
\ No newline at end of file
--- /dev/null
+../../cpu/cpu141
\ No newline at end of file
--- /dev/null
+../../cpu/cpu142
\ No newline at end of file
--- /dev/null
+../../cpu/cpu143
\ No newline at end of file
--- /dev/null
+../../cpu/cpu144
\ No newline at end of file
--- /dev/null
+../../cpu/cpu145
\ No newline at end of file
--- /dev/null
+../../cpu/cpu146
\ No newline at end of file
--- /dev/null
+../../cpu/cpu147
\ No newline at end of file
--- /dev/null
+../../cpu/cpu148
\ No newline at end of file
--- /dev/null
+../../cpu/cpu149
\ No newline at end of file
--- /dev/null
+../../cpu/cpu150
\ No newline at end of file
--- /dev/null
+../../cpu/cpu151
\ No newline at end of file
--- /dev/null
+../../cpu/cpu152
\ No newline at end of file
--- /dev/null
+../../cpu/cpu153
\ No newline at end of file
--- /dev/null
+../../cpu/cpu154
\ No newline at end of file
--- /dev/null
+../../cpu/cpu155
\ No newline at end of file
--- /dev/null
+../../cpu/cpu156
\ No newline at end of file
--- /dev/null
+../../cpu/cpu157
\ No newline at end of file
--- /dev/null
+../../cpu/cpu158
\ No newline at end of file
--- /dev/null
+../../cpu/cpu159
\ No newline at end of file
--- /dev/null
+Node 17 MemTotal: 67108864 kB
+Node 17 MemFree: 66328320 kB
+Node 17 MemUsed: 780544 kB
+Node 17 Active: 5440 kB
+Node 17 Inactive: 2560 kB
+Node 17 Active(anon): 4736 kB
+Node 17 Inactive(anon): 128 kB
+Node 17 Active(file): 704 kB
+Node 17 Inactive(file): 2432 kB
+Node 17 Unevictable: 0 kB
+Node 17 Mlocked: 0 kB
+Node 17 Dirty: 0 kB
+Node 17 Writeback: 0 kB
+Node 17 FilePages: 3392 kB
+Node 17 Mapped: 192 kB
+Node 17 AnonPages: 4672 kB
+Node 17 Shmem: 256 kB
+Node 17 KernelStack: 5488 kB
+Node 17 PageTables: 128 kB
+Node 17 NFS_Unstable: 0 kB
+Node 17 Bounce: 0 kB
+Node 17 WritebackTmp: 0 kB
+Node 17 Slab: 41536 kB
+Node 17 SReclaimable: 2496 kB
+Node 17 SUnreclaim: 39040 kB
+Node 17 AnonHugePages: 0 kB
+Node 17 HugePages_Total: 0
+Node 17 HugePages_Free: 0
+Node 17 HugePages_Surp: 0
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
--- /dev/null
+0,8,16,24,32
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
--- /dev/null
+80,88,96,104,112
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
--- /dev/null
+80,88,96,104,112
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000101,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
--- /dev/null
+0,8,16,24,32
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
--- /dev/null
+0,8,16,24,32
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
--- /dev/null
+0,8,16,24,32
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,01010100,00000000
--- /dev/null
+40,48,56,72
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,01010100,00000000
--- /dev/null
+40,48,56,72
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,01010100,00000000
--- /dev/null
+40,48,56,72
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,01010101
--- /dev/null
+0,8,16,24,32
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
--- /dev/null
+80,88,96,104,112
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
--- /dev/null
+80,88,96,104,112
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000,00000000,00000000
--- /dev/null
+1-7,9-15,17-23,25-31,33-47,49-95,97-135,137-159
--- /dev/null
+0,8,16,24,32,48,96,136
--- /dev/null
+../../cpu/cpu0
\ No newline at end of file
--- /dev/null
+../../cpu/cpu1
\ No newline at end of file
--- /dev/null
+../../cpu/cpu10
\ No newline at end of file
--- /dev/null
+../../cpu/cpu11
\ No newline at end of file
--- /dev/null
+../../cpu/cpu12
\ No newline at end of file
--- /dev/null
+../../cpu/cpu13
\ No newline at end of file
--- /dev/null
+../../cpu/cpu14
\ No newline at end of file
--- /dev/null
+../../cpu/cpu15
\ No newline at end of file
--- /dev/null
+../../cpu/cpu16
\ No newline at end of file
--- /dev/null
+../../cpu/cpu17
\ No newline at end of file
--- /dev/null
+../../cpu/cpu18
\ No newline at end of file
--- /dev/null
+../../cpu/cpu19
\ No newline at end of file
--- /dev/null
+../../cpu/cpu2
\ No newline at end of file
--- /dev/null
+../../cpu/cpu20
\ No newline at end of file
--- /dev/null
+../../cpu/cpu21
\ No newline at end of file
--- /dev/null
+../../cpu/cpu22
\ No newline at end of file
--- /dev/null
+../../cpu/cpu23
\ No newline at end of file
--- /dev/null
+../../cpu/cpu24
\ No newline at end of file
--- /dev/null
+../../cpu/cpu25
\ No newline at end of file
--- /dev/null
+../../cpu/cpu26
\ No newline at end of file
--- /dev/null
+../../cpu/cpu27
\ No newline at end of file
--- /dev/null
+../../cpu/cpu28
\ No newline at end of file
--- /dev/null
+../../cpu/cpu29
\ No newline at end of file
--- /dev/null
+../../cpu/cpu3
\ No newline at end of file
--- /dev/null
+../../cpu/cpu30
\ No newline at end of file
--- /dev/null
+../../cpu/cpu31
\ No newline at end of file
--- /dev/null
+../../cpu/cpu32
\ No newline at end of file
--- /dev/null
+../../cpu/cpu33
\ No newline at end of file
--- /dev/null
+../../cpu/cpu34
\ No newline at end of file
--- /dev/null
+../../cpu/cpu35
\ No newline at end of file
--- /dev/null
+../../cpu/cpu36
\ No newline at end of file
--- /dev/null
+../../cpu/cpu37
\ No newline at end of file
--- /dev/null
+../../cpu/cpu38
\ No newline at end of file
--- /dev/null
+../../cpu/cpu39
\ No newline at end of file
--- /dev/null
+../../cpu/cpu4
\ No newline at end of file
--- /dev/null
+../../cpu/cpu5
\ No newline at end of file
--- /dev/null
+../../cpu/cpu6
\ No newline at end of file
--- /dev/null
+../../cpu/cpu7
\ No newline at end of file
--- /dev/null
+../../cpu/cpu8
\ No newline at end of file
--- /dev/null
+../../cpu/cpu9
\ No newline at end of file
--- /dev/null
+Node 0 MemTotal: 67108864 kB
+Node 0 MemFree: 61653504 kB
+Node 0 MemUsed: 5455360 kB
+Node 0 Active: 221184 kB
+Node 0 Inactive: 212032 kB
+Node 0 Active(anon): 144576 kB
+Node 0 Inactive(anon): 8960 kB
+Node 0 Active(file): 76608 kB
+Node 0 Inactive(file): 203072 kB
+Node 0 Unevictable: 0 kB
+Node 0 Mlocked: 0 kB
+Node 0 Dirty: 92992 kB
+Node 0 Writeback: 0 kB
+Node 0 FilePages: 301504 kB
+Node 0 Mapped: 49792 kB
+Node 0 AnonPages: 131456 kB
+Node 0 Shmem: 22272 kB
+Node 0 KernelStack: 12016 kB
+Node 0 PageTables: 2048 kB
+Node 0 NFS_Unstable: 0 kB
+Node 0 Bounce: 0 kB
+Node 0 WritebackTmp: 0 kB
+Node 0 Slab: 249536 kB
+Node 0 SReclaimable: 44928 kB
+Node 0 SUnreclaim: 204608 kB
+Node 0 AnonHugePages: 0 kB
+Node 0 HugePages_Total: 0
+Node 0 HugePages_Free: 0
+Node 0 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu40
\ No newline at end of file
--- /dev/null
+../../cpu/cpu41
\ No newline at end of file
--- /dev/null
+../../cpu/cpu42
\ No newline at end of file
--- /dev/null
+../../cpu/cpu43
\ No newline at end of file
--- /dev/null
+../../cpu/cpu44
\ No newline at end of file
--- /dev/null
+../../cpu/cpu45
\ No newline at end of file
--- /dev/null
+../../cpu/cpu46
\ No newline at end of file
--- /dev/null
+../../cpu/cpu47
\ No newline at end of file
--- /dev/null
+../../cpu/cpu48
\ No newline at end of file
--- /dev/null
+../../cpu/cpu49
\ No newline at end of file
--- /dev/null
+../../cpu/cpu50
\ No newline at end of file
--- /dev/null
+../../cpu/cpu51
\ No newline at end of file
--- /dev/null
+../../cpu/cpu52
\ No newline at end of file
--- /dev/null
+../../cpu/cpu53
\ No newline at end of file
--- /dev/null
+../../cpu/cpu54
\ No newline at end of file
--- /dev/null
+../../cpu/cpu55
\ No newline at end of file
--- /dev/null
+../../cpu/cpu56
\ No newline at end of file
--- /dev/null
+../../cpu/cpu57
\ No newline at end of file
--- /dev/null
+../../cpu/cpu58
\ No newline at end of file
--- /dev/null
+../../cpu/cpu59
\ No newline at end of file
--- /dev/null
+../../cpu/cpu60
\ No newline at end of file
--- /dev/null
+../../cpu/cpu61
\ No newline at end of file
--- /dev/null
+../../cpu/cpu62
\ No newline at end of file
--- /dev/null
+../../cpu/cpu63
\ No newline at end of file
--- /dev/null
+../../cpu/cpu64
\ No newline at end of file
--- /dev/null
+../../cpu/cpu65
\ No newline at end of file
--- /dev/null
+../../cpu/cpu66
\ No newline at end of file
--- /dev/null
+../../cpu/cpu67
\ No newline at end of file
--- /dev/null
+../../cpu/cpu68
\ No newline at end of file
--- /dev/null
+../../cpu/cpu69
\ No newline at end of file
--- /dev/null
+../../cpu/cpu70
\ No newline at end of file
--- /dev/null
+../../cpu/cpu71
\ No newline at end of file
--- /dev/null
+../../cpu/cpu72
\ No newline at end of file
--- /dev/null
+../../cpu/cpu73
\ No newline at end of file
--- /dev/null
+../../cpu/cpu74
\ No newline at end of file
--- /dev/null
+../../cpu/cpu75
\ No newline at end of file
--- /dev/null
+../../cpu/cpu76
\ No newline at end of file
--- /dev/null
+../../cpu/cpu77
\ No newline at end of file
--- /dev/null
+../../cpu/cpu78
\ No newline at end of file
--- /dev/null
+../../cpu/cpu79
\ No newline at end of file
--- /dev/null
+Node 1 MemTotal: 67108864 kB
+Node 1 MemFree: 66562176 kB
+Node 1 MemUsed: 546688 kB
+Node 1 Active: 24576 kB
+Node 1 Inactive: 6016 kB
+Node 1 Active(anon): 21824 kB
+Node 1 Inactive(anon): 128 kB
+Node 1 Active(file): 2752 kB
+Node 1 Inactive(file): 5888 kB
+Node 1 Unevictable: 0 kB
+Node 1 Mlocked: 0 kB
+Node 1 Dirty: 0 kB
+Node 1 Writeback: 0 kB
+Node 1 FilePages: 9088 kB
+Node 1 Mapped: 5056 kB
+Node 1 AnonPages: 21504 kB
+Node 1 Shmem: 448 kB
+Node 1 KernelStack: 5520 kB
+Node 1 PageTables: 64 kB
+Node 1 NFS_Unstable: 0 kB
+Node 1 Bounce: 0 kB
+Node 1 WritebackTmp: 0 kB
+Node 1 Slab: 58304 kB
+Node 1 SReclaimable: 5952 kB
+Node 1 SUnreclaim: 52352 kB
+Node 1 AnonHugePages: 0 kB
+Node 1 HugePages_Total: 0
+Node 1 HugePages_Free: 0
+Node 1 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu100
\ No newline at end of file
--- /dev/null
+../../cpu/cpu101
\ No newline at end of file
--- /dev/null
+../../cpu/cpu102
\ No newline at end of file
--- /dev/null
+../../cpu/cpu103
\ No newline at end of file
--- /dev/null
+../../cpu/cpu104
\ No newline at end of file
--- /dev/null
+../../cpu/cpu105
\ No newline at end of file
--- /dev/null
+../../cpu/cpu106
\ No newline at end of file
--- /dev/null
+../../cpu/cpu107
\ No newline at end of file
--- /dev/null
+../../cpu/cpu108
\ No newline at end of file
--- /dev/null
+../../cpu/cpu109
\ No newline at end of file
--- /dev/null
+../../cpu/cpu110
\ No newline at end of file
--- /dev/null
+../../cpu/cpu111
\ No newline at end of file
--- /dev/null
+../../cpu/cpu112
\ No newline at end of file
--- /dev/null
+../../cpu/cpu113
\ No newline at end of file
--- /dev/null
+../../cpu/cpu114
\ No newline at end of file
--- /dev/null
+../../cpu/cpu115
\ No newline at end of file
--- /dev/null
+../../cpu/cpu116
\ No newline at end of file
--- /dev/null
+../../cpu/cpu117
\ No newline at end of file
--- /dev/null
+../../cpu/cpu118
\ No newline at end of file
--- /dev/null
+../../cpu/cpu119
\ No newline at end of file
--- /dev/null
+../../cpu/cpu80
\ No newline at end of file
--- /dev/null
+../../cpu/cpu81
\ No newline at end of file
--- /dev/null
+../../cpu/cpu82
\ No newline at end of file
--- /dev/null
+../../cpu/cpu83
\ No newline at end of file
--- /dev/null
+../../cpu/cpu84
\ No newline at end of file
--- /dev/null
+../../cpu/cpu85
\ No newline at end of file
--- /dev/null
+../../cpu/cpu86
\ No newline at end of file
--- /dev/null
+../../cpu/cpu87
\ No newline at end of file
--- /dev/null
+../../cpu/cpu88
\ No newline at end of file
--- /dev/null
+../../cpu/cpu89
\ No newline at end of file
--- /dev/null
+../../cpu/cpu90
\ No newline at end of file
--- /dev/null
+../../cpu/cpu91
\ No newline at end of file
--- /dev/null
+../../cpu/cpu92
\ No newline at end of file
--- /dev/null
+../../cpu/cpu93
\ No newline at end of file
--- /dev/null
+../../cpu/cpu94
\ No newline at end of file
--- /dev/null
+../../cpu/cpu95
\ No newline at end of file
--- /dev/null
+../../cpu/cpu96
\ No newline at end of file
--- /dev/null
+../../cpu/cpu97
\ No newline at end of file
--- /dev/null
+../../cpu/cpu98
\ No newline at end of file
--- /dev/null
+../../cpu/cpu99
\ No newline at end of file
--- /dev/null
+Node 16 MemTotal: 67108864 kB
+Node 16 MemFree: 66470528 kB
+Node 16 MemUsed: 638336 kB
+Node 16 Active: 17920 kB
+Node 16 Inactive: 65600 kB
+Node 16 Active(anon): 9728 kB
+Node 16 Inactive(anon): 64 kB
+Node 16 Active(file): 8192 kB
+Node 16 Inactive(file): 65536 kB
+Node 16 Unevictable: 0 kB
+Node 16 Mlocked: 0 kB
+Node 16 Dirty: 0 kB
+Node 16 Writeback: 0 kB
+Node 16 FilePages: 73792 kB
+Node 16 Mapped: 4672 kB
+Node 16 AnonPages: 9664 kB
+Node 16 Shmem: 128 kB
+Node 16 KernelStack: 5136 kB
+Node 16 PageTables: 64 kB
+Node 16 NFS_Unstable: 0 kB
+Node 16 Bounce: 0 kB
+Node 16 WritebackTmp: 0 kB
+Node 16 Slab: 82048 kB
+Node 16 SReclaimable: 9792 kB
+Node 16 SUnreclaim: 72256 kB
+Node 16 AnonHugePages: 0 kB
+Node 16 HugePages_Total: 0
+Node 16 HugePages_Free: 0
+Node 16 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu120
\ No newline at end of file
--- /dev/null
+../../cpu/cpu121
\ No newline at end of file
--- /dev/null
+../../cpu/cpu122
\ No newline at end of file
--- /dev/null
+../../cpu/cpu123
\ No newline at end of file
--- /dev/null
+../../cpu/cpu124
\ No newline at end of file
--- /dev/null
+../../cpu/cpu125
\ No newline at end of file
--- /dev/null
+../../cpu/cpu126
\ No newline at end of file
--- /dev/null
+../../cpu/cpu127
\ No newline at end of file
--- /dev/null
+../../cpu/cpu128
\ No newline at end of file
--- /dev/null
+../../cpu/cpu129
\ No newline at end of file
--- /dev/null
+../../cpu/cpu130
\ No newline at end of file
--- /dev/null
+../../cpu/cpu131
\ No newline at end of file
--- /dev/null
+../../cpu/cpu132
\ No newline at end of file
--- /dev/null
+../../cpu/cpu133
\ No newline at end of file
--- /dev/null
+../../cpu/cpu134
\ No newline at end of file
--- /dev/null
+../../cpu/cpu135
\ No newline at end of file
--- /dev/null
+../../cpu/cpu136
\ No newline at end of file
--- /dev/null
+../../cpu/cpu137
\ No newline at end of file
--- /dev/null
+../../cpu/cpu138
\ No newline at end of file
--- /dev/null
+../../cpu/cpu139
\ No newline at end of file
--- /dev/null
+../../cpu/cpu140
\ No newline at end of file
--- /dev/null
+../../cpu/cpu141
\ No newline at end of file
--- /dev/null
+../../cpu/cpu142
\ No newline at end of file
--- /dev/null
+../../cpu/cpu143
\ No newline at end of file
--- /dev/null
+../../cpu/cpu144
\ No newline at end of file
--- /dev/null
+../../cpu/cpu145
\ No newline at end of file
--- /dev/null
+../../cpu/cpu146
\ No newline at end of file
--- /dev/null
+../../cpu/cpu147
\ No newline at end of file
--- /dev/null
+../../cpu/cpu148
\ No newline at end of file
--- /dev/null
+../../cpu/cpu149
\ No newline at end of file
--- /dev/null
+../../cpu/cpu150
\ No newline at end of file
--- /dev/null
+../../cpu/cpu151
\ No newline at end of file
--- /dev/null
+../../cpu/cpu152
\ No newline at end of file
--- /dev/null
+../../cpu/cpu153
\ No newline at end of file
--- /dev/null
+../../cpu/cpu154
\ No newline at end of file
--- /dev/null
+../../cpu/cpu155
\ No newline at end of file
--- /dev/null
+../../cpu/cpu156
\ No newline at end of file
--- /dev/null
+../../cpu/cpu157
\ No newline at end of file
--- /dev/null
+../../cpu/cpu158
\ No newline at end of file
--- /dev/null
+../../cpu/cpu159
\ No newline at end of file
--- /dev/null
+Node 17 MemTotal: 67108864 kB
+Node 17 MemFree: 66329472 kB
+Node 17 MemUsed: 779392 kB
+Node 17 Active: 5504 kB
+Node 17 Inactive: 2560 kB
+Node 17 Active(anon): 4800 kB
+Node 17 Inactive(anon): 128 kB
+Node 17 Active(file): 704 kB
+Node 17 Inactive(file): 2432 kB
+Node 17 Unevictable: 0 kB
+Node 17 Mlocked: 0 kB
+Node 17 Dirty: 0 kB
+Node 17 Writeback: 0 kB
+Node 17 FilePages: 3392 kB
+Node 17 Mapped: 192 kB
+Node 17 AnonPages: 4672 kB
+Node 17 Shmem: 256 kB
+Node 17 KernelStack: 5536 kB
+Node 17 PageTables: 128 kB
+Node 17 NFS_Unstable: 0 kB
+Node 17 Bounce: 0 kB
+Node 17 WritebackTmp: 0 kB
+Node 17 Slab: 41472 kB
+Node 17 SReclaimable: 2496 kB
+Node 17 SUnreclaim: 38976 kB
+Node 17 AnonHugePages: 0 kB
+Node 17 HugePages_Total: 0
+Node 17 HugePages_Free: 0
+Node 17 HugePages_Surp: 0
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
--- /dev/null
+80,88,96,104,112
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
--- /dev/null
+80,88,96,104,112
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
--- /dev/null
+128,136,152-159
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
--- /dev/null
+128,136,152-159
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
--- /dev/null
+128,136,152-159
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000000,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
--- /dev/null
+128,136,152-159
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000000,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
--- /dev/null
+128,136,152-159
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000000,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
--- /dev/null
+128,136,152-159
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000000,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
--- /dev/null
+128,136,152-159
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000000,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
--- /dev/null
+128,136,152-159
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000000,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
--- /dev/null
+128,136,152-159
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000000,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000101,00000000,00000000,00000000,00000000
--- /dev/null
+128,136,152-159
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,ff000000,00000000,00000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000110,01010100,00000000
--- /dev/null
+40,48,56,68,72
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000110,01010100,00000000
--- /dev/null
+40,48,56,68,72
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000110,01010100,00000000
--- /dev/null
+40,48,56,68,72
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000110,01010100,00000000
--- /dev/null
+40,48,56,68,72
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000010,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000110,01010100,00000000
--- /dev/null
+40,48,56,68,72
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000100
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
--- /dev/null
+80,88,96,104,112
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
--- /dev/null
+80,88,96,104,112
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,01000000,00000000,00000000
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00010101,01010000,00000000,00000000
--- /dev/null
+80,88,96,104,112
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001,00000000,00000000,00000000
--- /dev/null
+0-7,9-39,41-47,49-55,57-67,69-71,73-79,81-87,89-95,97-103,105-111,113-127,129-135,137-151
--- /dev/null
+8,40,48,56,68,72,80,88,96,104,112,128,136,152-159
--- /dev/null
+../../cpu/cpu0
\ No newline at end of file
--- /dev/null
+../../cpu/cpu1
\ No newline at end of file
--- /dev/null
+../../cpu/cpu10
\ No newline at end of file
--- /dev/null
+../../cpu/cpu11
\ No newline at end of file
--- /dev/null
+../../cpu/cpu12
\ No newline at end of file
--- /dev/null
+../../cpu/cpu13
\ No newline at end of file
--- /dev/null
+../../cpu/cpu14
\ No newline at end of file
--- /dev/null
+../../cpu/cpu15
\ No newline at end of file
--- /dev/null
+../../cpu/cpu16
\ No newline at end of file
--- /dev/null
+../../cpu/cpu17
\ No newline at end of file
--- /dev/null
+../../cpu/cpu18
\ No newline at end of file
--- /dev/null
+../../cpu/cpu19
\ No newline at end of file
--- /dev/null
+../../cpu/cpu2
\ No newline at end of file
--- /dev/null
+../../cpu/cpu20
\ No newline at end of file
--- /dev/null
+../../cpu/cpu21
\ No newline at end of file
--- /dev/null
+../../cpu/cpu22
\ No newline at end of file
--- /dev/null
+../../cpu/cpu23
\ No newline at end of file
--- /dev/null
+../../cpu/cpu24
\ No newline at end of file
--- /dev/null
+../../cpu/cpu25
\ No newline at end of file
--- /dev/null
+../../cpu/cpu26
\ No newline at end of file
--- /dev/null
+../../cpu/cpu27
\ No newline at end of file
--- /dev/null
+../../cpu/cpu28
\ No newline at end of file
--- /dev/null
+../../cpu/cpu29
\ No newline at end of file
--- /dev/null
+../../cpu/cpu3
\ No newline at end of file
--- /dev/null
+../../cpu/cpu30
\ No newline at end of file
--- /dev/null
+../../cpu/cpu31
\ No newline at end of file
--- /dev/null
+../../cpu/cpu32
\ No newline at end of file
--- /dev/null
+../../cpu/cpu33
\ No newline at end of file
--- /dev/null
+../../cpu/cpu34
\ No newline at end of file
--- /dev/null
+../../cpu/cpu35
\ No newline at end of file
--- /dev/null
+../../cpu/cpu36
\ No newline at end of file
--- /dev/null
+../../cpu/cpu37
\ No newline at end of file
--- /dev/null
+../../cpu/cpu38
\ No newline at end of file
--- /dev/null
+../../cpu/cpu39
\ No newline at end of file
--- /dev/null
+../../cpu/cpu4
\ No newline at end of file
--- /dev/null
+../../cpu/cpu5
\ No newline at end of file
--- /dev/null
+../../cpu/cpu6
\ No newline at end of file
--- /dev/null
+../../cpu/cpu7
\ No newline at end of file
--- /dev/null
+../../cpu/cpu8
\ No newline at end of file
--- /dev/null
+../../cpu/cpu9
\ No newline at end of file
--- /dev/null
+Node 0 MemTotal: 67108864 kB
+Node 0 MemFree: 61482624 kB
+Node 0 MemUsed: 5626240 kB
+Node 0 Active: 298304 kB
+Node 0 Inactive: 314368 kB
+Node 0 Active(anon): 200192 kB
+Node 0 Inactive(anon): 9024 kB
+Node 0 Active(file): 98112 kB
+Node 0 Inactive(file): 305344 kB
+Node 0 Unevictable: 0 kB
+Node 0 Mlocked: 0 kB
+Node 0 Dirty: 145024 kB
+Node 0 Writeback: 0 kB
+Node 0 FilePages: 428480 kB
+Node 0 Mapped: 65408 kB
+Node 0 AnonPages: 186880 kB
+Node 0 Shmem: 22336 kB
+Node 0 KernelStack: 12336 kB
+Node 0 PageTables: 2496 kB
+Node 0 NFS_Unstable: 0 kB
+Node 0 Bounce: 0 kB
+Node 0 WritebackTmp: 0 kB
+Node 0 Slab: 237632 kB
+Node 0 SReclaimable: 46784 kB
+Node 0 SUnreclaim: 190848 kB
+Node 0 AnonHugePages: 0 kB
+Node 0 HugePages_Total: 0
+Node 0 HugePages_Free: 0
+Node 0 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu40
\ No newline at end of file
--- /dev/null
+../../cpu/cpu41
\ No newline at end of file
--- /dev/null
+../../cpu/cpu42
\ No newline at end of file
--- /dev/null
+../../cpu/cpu43
\ No newline at end of file
--- /dev/null
+../../cpu/cpu44
\ No newline at end of file
--- /dev/null
+../../cpu/cpu45
\ No newline at end of file
--- /dev/null
+../../cpu/cpu46
\ No newline at end of file
--- /dev/null
+../../cpu/cpu47
\ No newline at end of file
--- /dev/null
+../../cpu/cpu48
\ No newline at end of file
--- /dev/null
+../../cpu/cpu49
\ No newline at end of file
--- /dev/null
+../../cpu/cpu50
\ No newline at end of file
--- /dev/null
+../../cpu/cpu51
\ No newline at end of file
--- /dev/null
+../../cpu/cpu52
\ No newline at end of file
--- /dev/null
+../../cpu/cpu53
\ No newline at end of file
--- /dev/null
+../../cpu/cpu54
\ No newline at end of file
--- /dev/null
+../../cpu/cpu55
\ No newline at end of file
--- /dev/null
+../../cpu/cpu56
\ No newline at end of file
--- /dev/null
+../../cpu/cpu57
\ No newline at end of file
--- /dev/null
+../../cpu/cpu58
\ No newline at end of file
--- /dev/null
+../../cpu/cpu59
\ No newline at end of file
--- /dev/null
+../../cpu/cpu60
\ No newline at end of file
--- /dev/null
+../../cpu/cpu61
\ No newline at end of file
--- /dev/null
+../../cpu/cpu62
\ No newline at end of file
--- /dev/null
+../../cpu/cpu63
\ No newline at end of file
--- /dev/null
+../../cpu/cpu64
\ No newline at end of file
--- /dev/null
+../../cpu/cpu65
\ No newline at end of file
--- /dev/null
+../../cpu/cpu66
\ No newline at end of file
--- /dev/null
+../../cpu/cpu67
\ No newline at end of file
--- /dev/null
+../../cpu/cpu68
\ No newline at end of file
--- /dev/null
+../../cpu/cpu69
\ No newline at end of file
--- /dev/null
+../../cpu/cpu70
\ No newline at end of file
--- /dev/null
+../../cpu/cpu71
\ No newline at end of file
--- /dev/null
+../../cpu/cpu72
\ No newline at end of file
--- /dev/null
+../../cpu/cpu73
\ No newline at end of file
--- /dev/null
+../../cpu/cpu74
\ No newline at end of file
--- /dev/null
+../../cpu/cpu75
\ No newline at end of file
--- /dev/null
+../../cpu/cpu76
\ No newline at end of file
--- /dev/null
+../../cpu/cpu77
\ No newline at end of file
--- /dev/null
+../../cpu/cpu78
\ No newline at end of file
--- /dev/null
+../../cpu/cpu79
\ No newline at end of file
--- /dev/null
+Node 1 MemTotal: 67108864 kB
+Node 1 MemFree: 66551040 kB
+Node 1 MemUsed: 557824 kB
+Node 1 Active: 33152 kB
+Node 1 Inactive: 6080 kB
+Node 1 Active(anon): 30400 kB
+Node 1 Inactive(anon): 192 kB
+Node 1 Active(file): 2752 kB
+Node 1 Inactive(file): 5888 kB
+Node 1 Unevictable: 0 kB
+Node 1 Mlocked: 0 kB
+Node 1 Dirty: 0 kB
+Node 1 Writeback: 0 kB
+Node 1 FilePages: 9472 kB
+Node 1 Mapped: 5120 kB
+Node 1 AnonPages: 30144 kB
+Node 1 Shmem: 832 kB
+Node 1 KernelStack: 5584 kB
+Node 1 PageTables: 192 kB
+Node 1 NFS_Unstable: 0 kB
+Node 1 Bounce: 0 kB
+Node 1 WritebackTmp: 0 kB
+Node 1 Slab: 58304 kB
+Node 1 SReclaimable: 5952 kB
+Node 1 SUnreclaim: 52352 kB
+Node 1 AnonHugePages: 0 kB
+Node 1 HugePages_Total: 0
+Node 1 HugePages_Free: 0
+Node 1 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu100
\ No newline at end of file
--- /dev/null
+../../cpu/cpu101
\ No newline at end of file
--- /dev/null
+../../cpu/cpu102
\ No newline at end of file
--- /dev/null
+../../cpu/cpu103
\ No newline at end of file
--- /dev/null
+../../cpu/cpu104
\ No newline at end of file
--- /dev/null
+../../cpu/cpu105
\ No newline at end of file
--- /dev/null
+../../cpu/cpu106
\ No newline at end of file
--- /dev/null
+../../cpu/cpu107
\ No newline at end of file
--- /dev/null
+../../cpu/cpu108
\ No newline at end of file
--- /dev/null
+../../cpu/cpu109
\ No newline at end of file
--- /dev/null
+../../cpu/cpu110
\ No newline at end of file
--- /dev/null
+../../cpu/cpu111
\ No newline at end of file
--- /dev/null
+../../cpu/cpu112
\ No newline at end of file
--- /dev/null
+../../cpu/cpu113
\ No newline at end of file
--- /dev/null
+../../cpu/cpu114
\ No newline at end of file
--- /dev/null
+../../cpu/cpu115
\ No newline at end of file
--- /dev/null
+../../cpu/cpu116
\ No newline at end of file
--- /dev/null
+../../cpu/cpu117
\ No newline at end of file
--- /dev/null
+../../cpu/cpu118
\ No newline at end of file
--- /dev/null
+../../cpu/cpu119
\ No newline at end of file
--- /dev/null
+../../cpu/cpu80
\ No newline at end of file
--- /dev/null
+../../cpu/cpu81
\ No newline at end of file
--- /dev/null
+../../cpu/cpu82
\ No newline at end of file
--- /dev/null
+../../cpu/cpu83
\ No newline at end of file
--- /dev/null
+../../cpu/cpu84
\ No newline at end of file
--- /dev/null
+../../cpu/cpu85
\ No newline at end of file
--- /dev/null
+../../cpu/cpu86
\ No newline at end of file
--- /dev/null
+../../cpu/cpu87
\ No newline at end of file
--- /dev/null
+../../cpu/cpu88
\ No newline at end of file
--- /dev/null
+../../cpu/cpu89
\ No newline at end of file
--- /dev/null
+../../cpu/cpu90
\ No newline at end of file
--- /dev/null
+../../cpu/cpu91
\ No newline at end of file
--- /dev/null
+../../cpu/cpu92
\ No newline at end of file
--- /dev/null
+../../cpu/cpu93
\ No newline at end of file
--- /dev/null
+../../cpu/cpu94
\ No newline at end of file
--- /dev/null
+../../cpu/cpu95
\ No newline at end of file
--- /dev/null
+../../cpu/cpu96
\ No newline at end of file
--- /dev/null
+../../cpu/cpu97
\ No newline at end of file
--- /dev/null
+../../cpu/cpu98
\ No newline at end of file
--- /dev/null
+../../cpu/cpu99
\ No newline at end of file
--- /dev/null
+Node 16 MemTotal: 67108864 kB
+Node 16 MemFree: 66472768 kB
+Node 16 MemUsed: 636096 kB
+Node 16 Active: 16320 kB
+Node 16 Inactive: 65600 kB
+Node 16 Active(anon): 8128 kB
+Node 16 Inactive(anon): 64 kB
+Node 16 Active(file): 8192 kB
+Node 16 Inactive(file): 65536 kB
+Node 16 Unevictable: 0 kB
+Node 16 Mlocked: 0 kB
+Node 16 Dirty: 0 kB
+Node 16 Writeback: 0 kB
+Node 16 FilePages: 73792 kB
+Node 16 Mapped: 4672 kB
+Node 16 AnonPages: 8064 kB
+Node 16 Shmem: 128 kB
+Node 16 KernelStack: 5136 kB
+Node 16 PageTables: 64 kB
+Node 16 NFS_Unstable: 0 kB
+Node 16 Bounce: 0 kB
+Node 16 WritebackTmp: 0 kB
+Node 16 Slab: 81408 kB
+Node 16 SReclaimable: 9600 kB
+Node 16 SUnreclaim: 71808 kB
+Node 16 AnonHugePages: 0 kB
+Node 16 HugePages_Total: 0
+Node 16 HugePages_Free: 0
+Node 16 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu120
\ No newline at end of file
--- /dev/null
+../../cpu/cpu121
\ No newline at end of file
--- /dev/null
+../../cpu/cpu122
\ No newline at end of file
--- /dev/null
+../../cpu/cpu123
\ No newline at end of file
--- /dev/null
+../../cpu/cpu124
\ No newline at end of file
--- /dev/null
+../../cpu/cpu125
\ No newline at end of file
--- /dev/null
+../../cpu/cpu126
\ No newline at end of file
--- /dev/null
+../../cpu/cpu127
\ No newline at end of file
--- /dev/null
+../../cpu/cpu128
\ No newline at end of file
--- /dev/null
+../../cpu/cpu129
\ No newline at end of file
--- /dev/null
+../../cpu/cpu130
\ No newline at end of file
--- /dev/null
+../../cpu/cpu131
\ No newline at end of file
--- /dev/null
+../../cpu/cpu132
\ No newline at end of file
--- /dev/null
+../../cpu/cpu133
\ No newline at end of file
--- /dev/null
+../../cpu/cpu134
\ No newline at end of file
--- /dev/null
+../../cpu/cpu135
\ No newline at end of file
--- /dev/null
+../../cpu/cpu136
\ No newline at end of file
--- /dev/null
+../../cpu/cpu137
\ No newline at end of file
--- /dev/null
+../../cpu/cpu138
\ No newline at end of file
--- /dev/null
+../../cpu/cpu139
\ No newline at end of file
--- /dev/null
+../../cpu/cpu140
\ No newline at end of file
--- /dev/null
+../../cpu/cpu141
\ No newline at end of file
--- /dev/null
+../../cpu/cpu142
\ No newline at end of file
--- /dev/null
+../../cpu/cpu143
\ No newline at end of file
--- /dev/null
+../../cpu/cpu144
\ No newline at end of file
--- /dev/null
+../../cpu/cpu145
\ No newline at end of file
--- /dev/null
+../../cpu/cpu146
\ No newline at end of file
--- /dev/null
+../../cpu/cpu147
\ No newline at end of file
--- /dev/null
+../../cpu/cpu148
\ No newline at end of file
--- /dev/null
+../../cpu/cpu149
\ No newline at end of file
--- /dev/null
+../../cpu/cpu150
\ No newline at end of file
--- /dev/null
+../../cpu/cpu151
\ No newline at end of file
--- /dev/null
+../../cpu/cpu152
\ No newline at end of file
--- /dev/null
+../../cpu/cpu153
\ No newline at end of file
--- /dev/null
+../../cpu/cpu154
\ No newline at end of file
--- /dev/null
+../../cpu/cpu155
\ No newline at end of file
--- /dev/null
+../../cpu/cpu156
\ No newline at end of file
--- /dev/null
+../../cpu/cpu157
\ No newline at end of file
--- /dev/null
+../../cpu/cpu158
\ No newline at end of file
--- /dev/null
+../../cpu/cpu159
\ No newline at end of file
--- /dev/null
+Node 17 MemTotal: 67108864 kB
+Node 17 MemFree: 66329280 kB
+Node 17 MemUsed: 779584 kB
+Node 17 Active: 5568 kB
+Node 17 Inactive: 2688 kB
+Node 17 Active(anon): 4800 kB
+Node 17 Inactive(anon): 256 kB
+Node 17 Active(file): 768 kB
+Node 17 Inactive(file): 2432 kB
+Node 17 Unevictable: 0 kB
+Node 17 Mlocked: 0 kB
+Node 17 Dirty: 0 kB
+Node 17 Writeback: 0 kB
+Node 17 FilePages: 3584 kB
+Node 17 Mapped: 192 kB
+Node 17 AnonPages: 4672 kB
+Node 17 Shmem: 384 kB
+Node 17 KernelStack: 5536 kB
+Node 17 PageTables: 128 kB
+Node 17 NFS_Unstable: 0 kB
+Node 17 Bounce: 0 kB
+Node 17 WritebackTmp: 0 kB
+Node 17 Slab: 41472 kB
+Node 17 SReclaimable: 2496 kB
+Node 17 SUnreclaim: 38976 kB
+Node 17 AnonHugePages: 0 kB
+Node 17 HugePages_Total: 0
+Node 17 HugePages_Free: 0
+Node 17 HugePages_Surp: 0
--- /dev/null
+Node 0 MemTotal: 33554432 kB
+Node 0 MemFree: 12351744 kB
+Node 0 MemUsed: 21202688 kB
+Node 0 Active: 2086528 kB
+Node 0 Inactive: 1816512 kB
+Node 0 Active(anon): 174208 kB
+Node 0 Inactive(anon): 3840 kB
+Node 0 Active(file): 1912320 kB
+Node 0 Inactive(file): 1812672 kB
+Node 0 Unevictable: 0 kB
+Node 0 Mlocked: 0 kB
+Node 0 Dirty: 0 kB
+Node 0 Writeback: 0 kB
+Node 0 FilePages: 3758976 kB
+Node 0 Mapped: 13440 kB
+Node 0 AnonPages: 160704 kB
+Node 0 Shmem: 17664 kB
+Node 0 KernelStack: 2944 kB
+Node 0 PageTables: 12032 kB
+Node 0 NFS_Unstable: 0 kB
+Node 0 Bounce: 0 kB
+Node 0 WritebackTmp: 0 kB
+Node 0 Slab: 315904 kB
+Node 0 SReclaimable: 197824 kB
+Node 0 SUnreclaim: 118080 kB
+Node 0 HugePages_Total: 1024
+Node 0 HugePages_Free: 768
+Node 0 HugePages_Surp: 0
--- /dev/null
+Node 1 MemTotal: 33554432 kB
+Node 1 MemFree: 11934016 kB
+Node 1 MemUsed: 21620416 kB
+Node 1 Active: 3225728 kB
+Node 1 Inactive: 1057536 kB
+Node 1 Active(anon): 154752 kB
+Node 1 Inactive(anon): 80320 kB
+Node 1 Active(file): 3070976 kB
+Node 1 Inactive(file): 977216 kB
+Node 1 Unevictable: 0 kB
+Node 1 Mlocked: 0 kB
+Node 1 Dirty: 192 kB
+Node 1 Writeback: 0 kB
+Node 1 FilePages: 4165696 kB
+Node 1 Mapped: 36416 kB
+Node 1 AnonPages: 117248 kB
+Node 1 Shmem: 117760 kB
+Node 1 KernelStack: 2144 kB
+Node 1 PageTables: 10368 kB
+Node 1 NFS_Unstable: 0 kB
+Node 1 Bounce: 0 kB
+Node 1 WritebackTmp: 0 kB
+Node 1 Slab: 277888 kB
+Node 1 SReclaimable: 175744 kB
+Node 1 SUnreclaim: 102144 kB
+Node 1 HugePages_Total: 1024
+Node 1 HugePages_Free: 1024
+Node 1 HugePages_Surp: 0
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000003
--- /dev/null
+00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000002
--- /dev/null
+../../cpu/cpu0
\ No newline at end of file
--- /dev/null
+../../cpu/cpu1
\ No newline at end of file
--- /dev/null
+Node 0 MemTotal: 4085724 kB
+Node 0 MemFree: 291364 kB
+Node 0 MemUsed: 3794360 kB
+Node 0 Active: 2048032 kB
+Node 0 Inactive: 1218340 kB
+Node 0 Active(anon): 1420080 kB
+Node 0 Inactive(anon): 716324 kB
+Node 0 Active(file): 627952 kB
+Node 0 Inactive(file): 502016 kB
+Node 0 Unevictable: 3536 kB
+Node 0 Mlocked: 3536 kB
+Node 0 Dirty: 1192 kB
+Node 0 Writeback: 0 kB
+Node 0 FilePages: 1338636 kB
+Node 0 Mapped: 109700 kB
+Node 0 AnonPages: 1979864 kB
+Node 0 Shmem: 86764 kB
+Node 0 KernelStack: 4432 kB
+Node 0 PageTables: 34328 kB
+Node 0 NFS_Unstable: 0 kB
+Node 0 Bounce: 0 kB
+Node 0 WritebackTmp: 0 kB
+Node 0 Slab: 141504 kB
+Node 0 SReclaimable: 84436 kB
+Node 0 SUnreclaim: 57068 kB
+Node 0 AnonHugePages: 268288 kB
+Node 0 HugePages_Total: 0
+Node 0 HugePages_Free: 0
+Node 0 HugePages_Surp: 0
--- /dev/null
+00000000,00000001
--- /dev/null
+00000000,00000002
--- /dev/null
+00000000,00000400
--- /dev/null
+00000000,00000800
--- /dev/null
+00000000,00001000
--- /dev/null
+00000000,00002000
--- /dev/null
+00000000,00004000
--- /dev/null
+00000000,00008000
--- /dev/null
+00000000,00010000
--- /dev/null
+00000000,00020000
--- /dev/null
+00000000,00040000
--- /dev/null
+00000000,00080000
--- /dev/null
+00000000,00000004
--- /dev/null
+00000000,00100000
--- /dev/null
+00000000,00200000
--- /dev/null
+00000000,00400000
--- /dev/null
+00000000,00800000
--- /dev/null
+00000000,01000000
--- /dev/null
+00000000,02000000
--- /dev/null
+00000000,04000000
--- /dev/null
+00000000,08000000
--- /dev/null
+00000000,10000000
--- /dev/null
+00000000,20000000
--- /dev/null
+00000000,00000008
--- /dev/null
+00000000,40000000
--- /dev/null
+00000000,80000000
--- /dev/null
+00000001,00000000
--- /dev/null
+00000002,00000000
--- /dev/null
+00000004,00000000
--- /dev/null
+00000008,00000000
--- /dev/null
+00000010,00000000
--- /dev/null
+00000020,00000000
--- /dev/null
+00000040,00000000
--- /dev/null
+00000080,00000000
--- /dev/null
+00000000,00000010
--- /dev/null
+00000100,00000000
--- /dev/null
+00000200,00000000
--- /dev/null
+00000400,00000000
--- /dev/null
+00000800,00000000
--- /dev/null
+00001000,00000000
--- /dev/null
+00002000,00000000
--- /dev/null
+00004000,00000000
--- /dev/null
+00008000,00000000
--- /dev/null
+00000000,00000020
--- /dev/null
+00000000,00000040
--- /dev/null
+00000000,00000080
--- /dev/null
+00000000,00000100
--- /dev/null
+00000000,00000200
--- /dev/null
+../../cpu/cpu0
\ No newline at end of file
--- /dev/null
+../../cpu/cpu12
\ No newline at end of file
--- /dev/null
+../../cpu/cpu16
\ No newline at end of file
--- /dev/null
+../../cpu/cpu20
\ No newline at end of file
--- /dev/null
+../../cpu/cpu4
\ No newline at end of file
--- /dev/null
+../../cpu/cpu8
\ No newline at end of file
--- /dev/null
+Node 0 MemTotal: 67098848 kB
+Node 0 MemFree: 64989968 kB
+Node 0 MemUsed: 2108880 kB
+Node 0 Active: 136532 kB
+Node 0 Inactive: 146228 kB
+Node 0 Active(anon): 28124 kB
+Node 0 Inactive(anon): 160 kB
+Node 0 Active(file): 108408 kB
+Node 0 Inactive(file): 146068 kB
+Node 0 Unevictable: 0 kB
+Node 0 Mlocked: 0 kB
+Node 0 Dirty: 0 kB
+Node 0 Writeback: 0 kB
+Node 0 FilePages: 254676 kB
+Node 0 Mapped: 7284 kB
+Node 0 AnonPages: 15816 kB
+Node 0 Shmem: 200 kB
+Node 0 KernelStack: 5904 kB
+Node 0 PageTables: 2328 kB
+Node 0 NFS_Unstable: 0 kB
+Node 0 Bounce: 0 kB
+Node 0 WritebackTmp: 0 kB
+Node 0 Slab: 53304 kB
+Node 0 SReclaimable: 16580 kB
+Node 0 SUnreclaim: 36724 kB
+Node 0 HugePages_Total: 0
+Node 0 HugePages_Free: 0
+Node 0 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu24
\ No newline at end of file
--- /dev/null
+../../cpu/cpu28
\ No newline at end of file
--- /dev/null
+../../cpu/cpu32
\ No newline at end of file
--- /dev/null
+../../cpu/cpu36
\ No newline at end of file
--- /dev/null
+../../cpu/cpu40
\ No newline at end of file
--- /dev/null
+../../cpu/cpu44
\ No newline at end of file
--- /dev/null
+Node 1 MemTotal: 67108864 kB
+Node 1 MemFree: 65361692 kB
+Node 1 MemUsed: 1747172 kB
+Node 1 Active: 41004 kB
+Node 1 Inactive: 108288 kB
+Node 1 Active(anon): 14656 kB
+Node 1 Inactive(anon): 292 kB
+Node 1 Active(file): 26348 kB
+Node 1 Inactive(file): 107996 kB
+Node 1 Unevictable: 0 kB
+Node 1 Mlocked: 0 kB
+Node 1 Dirty: 0 kB
+Node 1 Writeback: 0 kB
+Node 1 FilePages: 134664 kB
+Node 1 Mapped: 7012 kB
+Node 1 AnonPages: 14624 kB
+Node 1 Shmem: 324 kB
+Node 1 KernelStack: 176 kB
+Node 1 PageTables: 2488 kB
+Node 1 NFS_Unstable: 0 kB
+Node 1 Bounce: 0 kB
+Node 1 WritebackTmp: 0 kB
+Node 1 Slab: 47096 kB
+Node 1 SReclaimable: 13716 kB
+Node 1 SUnreclaim: 33380 kB
+Node 1 HugePages_Total: 0
+Node 1 HugePages_Free: 0
+Node 1 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu11
\ No newline at end of file
--- /dev/null
+../../cpu/cpu15
\ No newline at end of file
--- /dev/null
+../../cpu/cpu19
\ No newline at end of file
--- /dev/null
+../../cpu/cpu23
\ No newline at end of file
--- /dev/null
+../../cpu/cpu3
\ No newline at end of file
--- /dev/null
+../../cpu/cpu7
\ No newline at end of file
--- /dev/null
+Node 2 MemTotal: 67108864 kB
+Node 2 MemFree: 64350240 kB
+Node 2 MemUsed: 2758624 kB
+Node 2 Active: 1049208 kB
+Node 2 Inactive: 121980 kB
+Node 2 Active(anon): 944424 kB
+Node 2 Inactive(anon): 668 kB
+Node 2 Active(file): 104784 kB
+Node 2 Inactive(file): 121312 kB
+Node 2 Unevictable: 0 kB
+Node 2 Mlocked: 0 kB
+Node 2 Dirty: 0 kB
+Node 2 Writeback: 0 kB
+Node 2 FilePages: 226784 kB
+Node 2 Mapped: 10920 kB
+Node 2 AnonPages: 35148 kB
+Node 2 Shmem: 684 kB
+Node 2 KernelStack: 1400 kB
+Node 2 PageTables: 6228 kB
+Node 2 NFS_Unstable: 0 kB
+Node 2 Bounce: 0 kB
+Node 2 WritebackTmp: 0 kB
+Node 2 Slab: 24700 kB
+Node 2 SReclaimable: 15072 kB
+Node 2 SUnreclaim: 9628 kB
+Node 2 HugePages_Total: 0
+Node 2 HugePages_Free: 0
+Node 2 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu27
\ No newline at end of file
--- /dev/null
+../../cpu/cpu31
\ No newline at end of file
--- /dev/null
+../../cpu/cpu35
\ No newline at end of file
--- /dev/null
+../../cpu/cpu39
\ No newline at end of file
--- /dev/null
+../../cpu/cpu43
\ No newline at end of file
--- /dev/null
+../../cpu/cpu47
\ No newline at end of file
--- /dev/null
+Node 3 MemTotal: 67108864 kB
+Node 3 MemFree: 65372380 kB
+Node 3 MemUsed: 1736484 kB
+Node 3 Active: 87008 kB
+Node 3 Inactive: 71908 kB
+Node 3 Active(anon): 25684 kB
+Node 3 Inactive(anon): 444 kB
+Node 3 Active(file): 61324 kB
+Node 3 Inactive(file): 71464 kB
+Node 3 Unevictable: 0 kB
+Node 3 Mlocked: 0 kB
+Node 3 Dirty: 0 kB
+Node 3 Writeback: 0 kB
+Node 3 FilePages: 133260 kB
+Node 3 Mapped: 13668 kB
+Node 3 AnonPages: 21560 kB
+Node 3 Shmem: 472 kB
+Node 3 KernelStack: 680 kB
+Node 3 PageTables: 2392 kB
+Node 3 NFS_Unstable: 0 kB
+Node 3 Bounce: 0 kB
+Node 3 WritebackTmp: 0 kB
+Node 3 Slab: 26296 kB
+Node 3 SReclaimable: 18312 kB
+Node 3 SUnreclaim: 7984 kB
+Node 3 HugePages_Total: 0
+Node 3 HugePages_Free: 0
+Node 3 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu10
\ No newline at end of file
--- /dev/null
+../../cpu/cpu14
\ No newline at end of file
--- /dev/null
+../../cpu/cpu18
\ No newline at end of file
--- /dev/null
+../../cpu/cpu2
\ No newline at end of file
--- /dev/null
+../../cpu/cpu22
\ No newline at end of file
--- /dev/null
+../../cpu/cpu6
\ No newline at end of file
--- /dev/null
+Node 4 MemTotal: 67108864 kB
+Node 4 MemFree: 64730416 kB
+Node 4 MemUsed: 2378448 kB
+Node 4 Active: 522732 kB
+Node 4 Inactive: 205384 kB
+Node 4 Active(anon): 411816 kB
+Node 4 Inactive(anon): 384 kB
+Node 4 Active(file): 110916 kB
+Node 4 Inactive(file): 205000 kB
+Node 4 Unevictable: 0 kB
+Node 4 Mlocked: 0 kB
+Node 4 Dirty: 0 kB
+Node 4 Writeback: 0 kB
+Node 4 FilePages: 316320 kB
+Node 4 Mapped: 10220 kB
+Node 4 AnonPages: 129184 kB
+Node 4 Shmem: 408 kB
+Node 4 KernelStack: 336 kB
+Node 4 PageTables: 2732 kB
+Node 4 NFS_Unstable: 0 kB
+Node 4 Bounce: 0 kB
+Node 4 WritebackTmp: 0 kB
+Node 4 Slab: 54172 kB
+Node 4 SReclaimable: 41160 kB
+Node 4 SUnreclaim: 13012 kB
+Node 4 HugePages_Total: 0
+Node 4 HugePages_Free: 0
+Node 4 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu26
\ No newline at end of file
--- /dev/null
+../../cpu/cpu30
\ No newline at end of file
--- /dev/null
+../../cpu/cpu34
\ No newline at end of file
--- /dev/null
+../../cpu/cpu38
\ No newline at end of file
--- /dev/null
+../../cpu/cpu42
\ No newline at end of file
--- /dev/null
+../../cpu/cpu46
\ No newline at end of file
--- /dev/null
+Node 5 MemTotal: 67108864 kB
+Node 5 MemFree: 65315792 kB
+Node 5 MemUsed: 1793072 kB
+Node 5 Active: 92864 kB
+Node 5 Inactive: 118500 kB
+Node 5 Active(anon): 17360 kB
+Node 5 Inactive(anon): 280 kB
+Node 5 Active(file): 75504 kB
+Node 5 Inactive(file): 118220 kB
+Node 5 Unevictable: 0 kB
+Node 5 Mlocked: 0 kB
+Node 5 Dirty: 0 kB
+Node 5 Writeback: 0 kB
+Node 5 FilePages: 194028 kB
+Node 5 Mapped: 7680 kB
+Node 5 AnonPages: 13240 kB
+Node 5 Shmem: 304 kB
+Node 5 KernelStack: 160 kB
+Node 5 PageTables: 1756 kB
+Node 5 NFS_Unstable: 0 kB
+Node 5 Bounce: 0 kB
+Node 5 WritebackTmp: 0 kB
+Node 5 Slab: 30128 kB
+Node 5 SReclaimable: 21380 kB
+Node 5 SUnreclaim: 8748 kB
+Node 5 HugePages_Total: 0
+Node 5 HugePages_Free: 0
+Node 5 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu1
\ No newline at end of file
--- /dev/null
+../../cpu/cpu13
\ No newline at end of file
--- /dev/null
+../../cpu/cpu17
\ No newline at end of file
--- /dev/null
+../../cpu/cpu21
\ No newline at end of file
--- /dev/null
+../../cpu/cpu5
\ No newline at end of file
--- /dev/null
+../../cpu/cpu9
\ No newline at end of file
--- /dev/null
+Node 6 MemTotal: 67108864 kB
+Node 6 MemFree: 65259848 kB
+Node 6 MemUsed: 1849016 kB
+Node 6 Active: 105044 kB
+Node 6 Inactive: 164968 kB
+Node 6 Active(anon): 13332 kB
+Node 6 Inactive(anon): 368 kB
+Node 6 Active(file): 91712 kB
+Node 6 Inactive(file): 164600 kB
+Node 6 Unevictable: 0 kB
+Node 6 Mlocked: 0 kB
+Node 6 Dirty: 0 kB
+Node 6 Writeback: 0 kB
+Node 6 FilePages: 256704 kB
+Node 6 Mapped: 3704 kB
+Node 6 AnonPages: 13324 kB
+Node 6 Shmem: 392 kB
+Node 6 KernelStack: 216 kB
+Node 6 PageTables: 1964 kB
+Node 6 NFS_Unstable: 0 kB
+Node 6 Bounce: 0 kB
+Node 6 WritebackTmp: 0 kB
+Node 6 Slab: 28548 kB
+Node 6 SReclaimable: 19596 kB
+Node 6 SUnreclaim: 8952 kB
+Node 6 HugePages_Total: 0
+Node 6 HugePages_Free: 0
+Node 6 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu25
\ No newline at end of file
--- /dev/null
+../../cpu/cpu29
\ No newline at end of file
--- /dev/null
+../../cpu/cpu33
\ No newline at end of file
--- /dev/null
+../../cpu/cpu37
\ No newline at end of file
--- /dev/null
+../../cpu/cpu41
\ No newline at end of file
--- /dev/null
+../../cpu/cpu45
\ No newline at end of file
--- /dev/null
+Node 7 MemTotal: 67108864 kB
+Node 7 MemFree: 65303740 kB
+Node 7 MemUsed: 1805124 kB
+Node 7 Active: 60264 kB
+Node 7 Inactive: 77164 kB
+Node 7 Active(anon): 27672 kB
+Node 7 Inactive(anon): 632 kB
+Node 7 Active(file): 32592 kB
+Node 7 Inactive(file): 76532 kB
+Node 7 Unevictable: 0 kB
+Node 7 Mlocked: 0 kB
+Node 7 Dirty: 0 kB
+Node 7 Writeback: 0 kB
+Node 7 FilePages: 109772 kB
+Node 7 Mapped: 5508 kB
+Node 7 AnonPages: 27668 kB
+Node 7 Shmem: 648 kB
+Node 7 KernelStack: 208 kB
+Node 7 PageTables: 1820 kB
+Node 7 NFS_Unstable: 0 kB
+Node 7 Bounce: 0 kB
+Node 7 WritebackTmp: 0 kB
+Node 7 Slab: 19372 kB
+Node 7 SReclaimable: 11024 kB
+Node 7 SUnreclaim: 8348 kB
+Node 7 HugePages_Total: 0
+Node 7 HugePages_Free: 0
+Node 7 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu0
\ No newline at end of file
--- /dev/null
+../../cpu/cpu1
\ No newline at end of file
--- /dev/null
+../../cpu/cpu2
\ No newline at end of file
--- /dev/null
+../../cpu/cpu3
\ No newline at end of file
--- /dev/null
+../../cpu/cpu4
\ No newline at end of file
--- /dev/null
+../../cpu/cpu5
\ No newline at end of file
--- /dev/null
+../../cpu/cpu6
\ No newline at end of file
--- /dev/null
+../../cpu/cpu7
\ No newline at end of file
--- /dev/null
+Node 0 MemTotal: 67002564 kB
+Node 0 MemFree: 63623272 kB
+Node 0 MemUsed: 3379292 kB
+Node 0 Active: 1335192 kB
+Node 0 Inactive: 157792 kB
+Node 0 Active(anon): 1170928 kB
+Node 0 Inactive(anon): 1168 kB
+Node 0 Active(file): 164264 kB
+Node 0 Inactive(file): 156624 kB
+Node 0 Unevictable: 0 kB
+Node 0 Mlocked: 0 kB
+Node 0 Dirty: 56 kB
+Node 0 Writeback: 0 kB
+Node 0 FilePages: 322312 kB
+Node 0 Mapped: 29584 kB
+Node 0 AnonPages: 111848 kB
+Node 0 Shmem: 1432 kB
+Node 0 KernelStack: 3712 kB
+Node 0 PageTables: 12024 kB
+Node 0 NFS_Unstable: 0 kB
+Node 0 Bounce: 0 kB
+Node 0 WritebackTmp: 0 kB
+Node 0 Slab: 88028 kB
+Node 0 SReclaimable: 50972 kB
+Node 0 SUnreclaim: 37056 kB
+Node 0 HugePages_Total: 0
+Node 0 HugePages_Free: 0
+Node 0 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu10
\ No newline at end of file
--- /dev/null
+../../cpu/cpu11
\ No newline at end of file
--- /dev/null
+../../cpu/cpu12
\ No newline at end of file
--- /dev/null
+../../cpu/cpu13
\ No newline at end of file
--- /dev/null
+../../cpu/cpu14
\ No newline at end of file
--- /dev/null
+../../cpu/cpu15
\ No newline at end of file
--- /dev/null
+../../cpu/cpu8
\ No newline at end of file
--- /dev/null
+../../cpu/cpu9
\ No newline at end of file
--- /dev/null
+Node 1 MemTotal: 67108864 kB
+Node 1 MemFree: 61752192 kB
+Node 1 MemUsed: 5356672 kB
+Node 1 Active: 3325724 kB
+Node 1 Inactive: 206476 kB
+Node 1 Active(anon): 3124584 kB
+Node 1 Inactive(anon): 4348 kB
+Node 1 Active(file): 201140 kB
+Node 1 Inactive(file): 202128 kB
+Node 1 Unevictable: 0 kB
+Node 1 Mlocked: 0 kB
+Node 1 Dirty: 25996 kB
+Node 1 Writeback: 0 kB
+Node 1 FilePages: 408200 kB
+Node 1 Mapped: 28620 kB
+Node 1 AnonPages: 112092 kB
+Node 1 Shmem: 4432 kB
+Node 1 KernelStack: 1184 kB
+Node 1 PageTables: 15848 kB
+Node 1 NFS_Unstable: 0 kB
+Node 1 Bounce: 0 kB
+Node 1 WritebackTmp: 0 kB
+Node 1 Slab: 126440 kB
+Node 1 SReclaimable: 52996 kB
+Node 1 SUnreclaim: 73444 kB
+Node 1 HugePages_Total: 0
+Node 1 HugePages_Free: 0
+Node 1 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu0
\ No newline at end of file
--- /dev/null
+../../cpu/cpu1
\ No newline at end of file
--- /dev/null
+../../cpu/cpu2
\ No newline at end of file
--- /dev/null
+../../cpu/cpu3
\ No newline at end of file
--- /dev/null
+../../cpu/cpu4
\ No newline at end of file
--- /dev/null
+../../cpu/cpu5
\ No newline at end of file
--- /dev/null
+../../cpu/cpu6
\ No newline at end of file
--- /dev/null
+../../cpu/cpu7
\ No newline at end of file
--- /dev/null
+Node 0 MemTotal: 8379620 kB
+Node 0 MemFree: 2971308 kB
+Node 0 MemUsed: 5408312 kB
+Node 0 Active: 3795016 kB
+Node 0 Inactive: 869528 kB
+Node 0 Active(anon): 3081132 kB
+Node 0 Inactive(anon): 13352 kB
+Node 0 Active(file): 713884 kB
+Node 0 Inactive(file): 856176 kB
+Node 0 Unevictable: 48324 kB
+Node 0 Mlocked: 13580 kB
+Node 0 Dirty: 84 kB
+Node 0 Writeback: 0 kB
+Node 0 FilePages: 1585776 kB
+Node 0 Mapped: 134048 kB
+Node 0 AnonPages: 866116 kB
+Node 0 Shmem: 13512 kB
+Node 0 KernelStack: 3904 kB
+Node 0 PageTables: 40664 kB
+Node 0 NFS_Unstable: 0 kB
+Node 0 Bounce: 0 kB
+Node 0 WritebackTmp: 0 kB
+Node 0 Slab: 244404 kB
+Node 0 SReclaimable: 161784 kB
+Node 0 SUnreclaim: 82620 kB
+Node 0 HugePages_Total: 0
+Node 0 HugePages_Free: 0
+Node 0 HugePages_Surp: 0
--- /dev/null
+00000000,00000000,00000000,00000001
--- /dev/null
+00000000,00000000,00000000,00000002
--- /dev/null
+00000000,00000000,00000000,00000400
--- /dev/null
+00000000,00000000,00000000,00000800
--- /dev/null
+00000000,00000000,00000000,00001000
--- /dev/null
+00000000,00000000,00000000,00002000
--- /dev/null
+00000000,00000000,00000000,00004000
--- /dev/null
+00000000,00000000,00000000,00008000
--- /dev/null
+00000000,00000000,00000000,00010000
--- /dev/null
+00000000,00000000,00000000,00020000
--- /dev/null
+00000000,00000000,00000000,00040000
--- /dev/null
+00000000,00000000,00000000,00080000
--- /dev/null
+00000000,00000000,00000000,00000004
--- /dev/null
+00000000,00000000,00000000,00100000
--- /dev/null
+00000000,00000000,00000000,00200000
--- /dev/null
+00000000,00000000,00000000,00400000
--- /dev/null
+00000000,00000000,00000000,00800000
--- /dev/null
+00000000,00000000,00000000,00000008
--- /dev/null
+00000000,00000000,00000000,00000010
--- /dev/null
+00000000,00000000,00000000,00000020
--- /dev/null
+00000000,00000000,00000000,00000040
--- /dev/null
+00000000,00000000,00000000,00000080
--- /dev/null
+00000000,00000000,00000000,00000100
--- /dev/null
+00000000,00000000,00000000,00000200
--- /dev/null
+../../cpu/cpu0
\ No newline at end of file
--- /dev/null
+../../cpu/cpu1
\ No newline at end of file
--- /dev/null
+../../cpu/cpu10
\ No newline at end of file
--- /dev/null
+../../cpu/cpu11
\ No newline at end of file
--- /dev/null
+../../cpu/cpu12
\ No newline at end of file
--- /dev/null
+../../cpu/cpu13
\ No newline at end of file
--- /dev/null
+../../cpu/cpu14
\ No newline at end of file
--- /dev/null
+../../cpu/cpu15
\ No newline at end of file
--- /dev/null
+../../cpu/cpu16
\ No newline at end of file
--- /dev/null
+../../cpu/cpu17
\ No newline at end of file
--- /dev/null
+../../cpu/cpu18
\ No newline at end of file
--- /dev/null
+../../cpu/cpu19
\ No newline at end of file
--- /dev/null
+../../cpu/cpu2
\ No newline at end of file
--- /dev/null
+../../cpu/cpu20
\ No newline at end of file
--- /dev/null
+../../cpu/cpu21
\ No newline at end of file
--- /dev/null
+../../cpu/cpu22
\ No newline at end of file
--- /dev/null
+../../cpu/cpu23
\ No newline at end of file
--- /dev/null
+../../cpu/cpu3
\ No newline at end of file
--- /dev/null
+../../cpu/cpu4
\ No newline at end of file
--- /dev/null
+../../cpu/cpu5
\ No newline at end of file
--- /dev/null
+../../cpu/cpu6
\ No newline at end of file
--- /dev/null
+../../cpu/cpu7
\ No newline at end of file
--- /dev/null
+../../cpu/cpu8
\ No newline at end of file
--- /dev/null
+../../cpu/cpu9
\ No newline at end of file
--- /dev/null
+Node 0 MemTotal: 134215764 kB
+Node 0 MemFree: 4659184 kB
+Node 0 MemUsed: 129556580 kB
+Node 0 Active: 57038240 kB
+Node 0 Inactive: 50860308 kB
+Node 0 Active(anon): 7992112 kB
+Node 0 Inactive(anon): 2321780 kB
+Node 0 Active(file): 49046128 kB
+Node 0 Inactive(file): 48538528 kB
+Node 0 Unevictable: 3492 kB
+Node 0 Mlocked: 3492 kB
+Node 0 Dirty: 7736 kB
+Node 0 Writeback: 0 kB
+Node 0 FilePages: 97948672 kB
+Node 0 Mapped: 39292 kB
+Node 0 AnonPages: 9953768 kB
+Node 0 Shmem: 361396 kB
+Node 0 KernelStack: 4792 kB
+Node 0 PageTables: 48328 kB
+Node 0 NFS_Unstable: 0 kB
+Node 0 Bounce: 0 kB
+Node 0 WritebackTmp: 0 kB
+Node 0 Slab: 1572840 kB
+Node 0 SReclaimable: 1463196 kB
+Node 0 SUnreclaim: 109644 kB
+Node 0 AnonHugePages: 9218048 kB
+Node 0 HugePages_Total: 8192
+Node 0 HugePages_Free: 4466
+Node 0 HugePages_Surp: 0
--- /dev/null
+00000000,00000011
--- /dev/null
+00000000,00000022
--- /dev/null
+00000000,00004400
--- /dev/null
+00000000,00008800
--- /dev/null
+00000000,00001100
--- /dev/null
+00000000,00002200
--- /dev/null
+00000000,00004400
--- /dev/null
+00000000,00008800
--- /dev/null
+00000000,00110000
--- /dev/null
+00000000,00220000
--- /dev/null
+00000000,00440000
--- /dev/null
+00000000,00880000
--- /dev/null
+00000000,00000044
--- /dev/null
+00000000,00110000
--- /dev/null
+00000000,00220000
--- /dev/null
+00000000,00440000
--- /dev/null
+00000000,00880000
--- /dev/null
+00000000,11000000
--- /dev/null
+00000000,22000000
--- /dev/null
+00000000,44000000
--- /dev/null
+00000000,88000000
--- /dev/null
+00000000,11000000
--- /dev/null
+00000000,22000000
--- /dev/null
+00000000,00000088
--- /dev/null
+00000000,44000000
--- /dev/null
+00000000,88000000
--- /dev/null
+00000011,00000000
--- /dev/null
+00000022,00000000
--- /dev/null
+00000044,00000000
--- /dev/null
+00000088,00000000
--- /dev/null
+00000011,00000000
--- /dev/null
+00000022,00000000
--- /dev/null
+00000044,00000000
--- /dev/null
+00000088,00000000
--- /dev/null
+00000000,00000011
--- /dev/null
+00001100,00000000
--- /dev/null
+00002200,00000000
--- /dev/null
+00004400,00000000
--- /dev/null
+00008800,00000000
--- /dev/null
+00001100,00000000
--- /dev/null
+00002200,00000000
--- /dev/null
+00004400,00000000
--- /dev/null
+00008800,00000000
--- /dev/null
+00110000,00000000
--- /dev/null
+00220000,00000000
--- /dev/null
+00000000,00000022
--- /dev/null
+00440000,00000000
--- /dev/null
+00880000,00000000
--- /dev/null
+00110000,00000000
--- /dev/null
+00220000,00000000
--- /dev/null
+00440000,00000000
--- /dev/null
+00880000,00000000
--- /dev/null
+11000000,00000000
--- /dev/null
+22000000,00000000
--- /dev/null
+44000000,00000000
--- /dev/null
+88000000,00000000
--- /dev/null
+00000000,00000044
--- /dev/null
+11000000,00000000
--- /dev/null
+22000000,00000000
--- /dev/null
+44000000,00000000
--- /dev/null
+88000000,00000000
--- /dev/null
+00000000,00000088
--- /dev/null
+00000000,00001100
--- /dev/null
+00000000,00002200
--- /dev/null
+../../cpu/cpu0
\ No newline at end of file
--- /dev/null
+../../cpu/cpu12
\ No newline at end of file
--- /dev/null
+../../cpu/cpu16
\ No newline at end of file
--- /dev/null
+../../cpu/cpu20
\ No newline at end of file
--- /dev/null
+../../cpu/cpu24
\ No newline at end of file
--- /dev/null
+../../cpu/cpu28
\ No newline at end of file
--- /dev/null
+../../cpu/cpu4
\ No newline at end of file
--- /dev/null
+../../cpu/cpu8
\ No newline at end of file
--- /dev/null
+Node 0 MemTotal: 16742060 kB
+Node 0 MemFree: 15971440 kB
+Node 0 MemUsed: 770620 kB
+Node 0 Active: 49680 kB
+Node 0 Inactive: 57844 kB
+Node 0 Active(anon): 9596 kB
+Node 0 Inactive(anon): 0 kB
+Node 0 Active(file): 40084 kB
+Node 0 Inactive(file): 57844 kB
+Node 0 Unevictable: 0 kB
+Node 0 Mlocked: 0 kB
+Node 0 Dirty: 20 kB
+Node 0 Writeback: 0 kB
+Node 0 FilePages: 97964 kB
+Node 0 Mapped: 1640 kB
+Node 0 AnonPages: 9560 kB
+Node 0 Shmem: 36 kB
+Node 0 KernelStack: 7144 kB
+Node 0 PageTables: 1392 kB
+Node 0 NFS_Unstable: 0 kB
+Node 0 Bounce: 0 kB
+Node 0 WritebackTmp: 0 kB
+Node 0 Slab: 34856 kB
+Node 0 SReclaimable: 12724 kB
+Node 0 SUnreclaim: 22132 kB
+Node 0 HugePages_Total: 0
+Node 0 HugePages_Free: 0
+Node 0 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu32
\ No newline at end of file
--- /dev/null
+../../cpu/cpu36
\ No newline at end of file
--- /dev/null
+../../cpu/cpu40
\ No newline at end of file
--- /dev/null
+../../cpu/cpu44
\ No newline at end of file
--- /dev/null
+../../cpu/cpu48
\ No newline at end of file
--- /dev/null
+../../cpu/cpu52
\ No newline at end of file
--- /dev/null
+../../cpu/cpu56
\ No newline at end of file
--- /dev/null
+../../cpu/cpu60
\ No newline at end of file
--- /dev/null
+Node 1 MemTotal: 16777216 kB
+Node 1 MemFree: 16315188 kB
+Node 1 MemUsed: 462028 kB
+Node 1 Active: 15624 kB
+Node 1 Inactive: 23488 kB
+Node 1 Active(anon): 9088 kB
+Node 1 Inactive(anon): 0 kB
+Node 1 Active(file): 6536 kB
+Node 1 Inactive(file): 23488 kB
+Node 1 Unevictable: 0 kB
+Node 1 Mlocked: 0 kB
+Node 1 Dirty: 0 kB
+Node 1 Writeback: 0 kB
+Node 1 FilePages: 30068 kB
+Node 1 Mapped: 2628 kB
+Node 1 AnonPages: 9044 kB
+Node 1 Shmem: 44 kB
+Node 1 KernelStack: 152 kB
+Node 1 PageTables: 1016 kB
+Node 1 NFS_Unstable: 0 kB
+Node 1 Bounce: 0 kB
+Node 1 WritebackTmp: 0 kB
+Node 1 Slab: 26748 kB
+Node 1 SReclaimable: 10424 kB
+Node 1 SUnreclaim: 16324 kB
+Node 1 HugePages_Total: 0
+Node 1 HugePages_Free: 0
+Node 1 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu1
\ No newline at end of file
--- /dev/null
+../../cpu/cpu13
\ No newline at end of file
--- /dev/null
+../../cpu/cpu17
\ No newline at end of file
--- /dev/null
+../../cpu/cpu21
\ No newline at end of file
--- /dev/null
+../../cpu/cpu25
\ No newline at end of file
--- /dev/null
+../../cpu/cpu29
\ No newline at end of file
--- /dev/null
+../../cpu/cpu5
\ No newline at end of file
--- /dev/null
+../../cpu/cpu9
\ No newline at end of file
--- /dev/null
+Node 2 MemTotal: 16777216 kB
+Node 2 MemFree: 16253184 kB
+Node 2 MemUsed: 524032 kB
+Node 2 Active: 37548 kB
+Node 2 Inactive: 74344 kB
+Node 2 Active(anon): 14780 kB
+Node 2 Inactive(anon): 388 kB
+Node 2 Active(file): 22768 kB
+Node 2 Inactive(file): 73956 kB
+Node 2 Unevictable: 0 kB
+Node 2 Mlocked: 0 kB
+Node 2 Dirty: 4 kB
+Node 2 Writeback: 0 kB
+Node 2 FilePages: 97148 kB
+Node 2 Mapped: 3112 kB
+Node 2 AnonPages: 12704 kB
+Node 2 Shmem: 416 kB
+Node 2 KernelStack: 648 kB
+Node 2 PageTables: 1300 kB
+Node 2 NFS_Unstable: 0 kB
+Node 2 Bounce: 0 kB
+Node 2 WritebackTmp: 0 kB
+Node 2 Slab: 16488 kB
+Node 2 SReclaimable: 9576 kB
+Node 2 SUnreclaim: 6912 kB
+Node 2 HugePages_Total: 0
+Node 2 HugePages_Free: 0
+Node 2 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu33
\ No newline at end of file
--- /dev/null
+../../cpu/cpu37
\ No newline at end of file
--- /dev/null
+../../cpu/cpu41
\ No newline at end of file
--- /dev/null
+../../cpu/cpu45
\ No newline at end of file
--- /dev/null
+../../cpu/cpu49
\ No newline at end of file
--- /dev/null
+../../cpu/cpu53
\ No newline at end of file
--- /dev/null
+../../cpu/cpu57
\ No newline at end of file
--- /dev/null
+../../cpu/cpu61
\ No newline at end of file
--- /dev/null
+Node 3 MemTotal: 16777216 kB
+Node 3 MemFree: 16226124 kB
+Node 3 MemUsed: 551092 kB
+Node 3 Active: 37368 kB
+Node 3 Inactive: 96052 kB
+Node 3 Active(anon): 8160 kB
+Node 3 Inactive(anon): 0 kB
+Node 3 Active(file): 29208 kB
+Node 3 Inactive(file): 96052 kB
+Node 3 Unevictable: 0 kB
+Node 3 Mlocked: 0 kB
+Node 3 Dirty: 0 kB
+Node 3 Writeback: 0 kB
+Node 3 FilePages: 125276 kB
+Node 3 Mapped: 24824 kB
+Node 3 AnonPages: 6096 kB
+Node 3 Shmem: 16 kB
+Node 3 KernelStack: 176 kB
+Node 3 PageTables: 1460 kB
+Node 3 NFS_Unstable: 0 kB
+Node 3 Bounce: 0 kB
+Node 3 WritebackTmp: 0 kB
+Node 3 Slab: 21952 kB
+Node 3 SReclaimable: 14064 kB
+Node 3 SUnreclaim: 7888 kB
+Node 3 HugePages_Total: 0
+Node 3 HugePages_Free: 0
+Node 3 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu10
\ No newline at end of file
--- /dev/null
+../../cpu/cpu14
\ No newline at end of file
--- /dev/null
+../../cpu/cpu18
\ No newline at end of file
--- /dev/null
+../../cpu/cpu2
\ No newline at end of file
--- /dev/null
+../../cpu/cpu22
\ No newline at end of file
--- /dev/null
+../../cpu/cpu26
\ No newline at end of file
--- /dev/null
+../../cpu/cpu30
\ No newline at end of file
--- /dev/null
+../../cpu/cpu6
\ No newline at end of file
--- /dev/null
+Node 4 MemTotal: 16777216 kB
+Node 4 MemFree: 16200584 kB
+Node 4 MemUsed: 576632 kB
+Node 4 Active: 29276 kB
+Node 4 Inactive: 89948 kB
+Node 4 Active(anon): 8824 kB
+Node 4 Inactive(anon): 4 kB
+Node 4 Active(file): 20452 kB
+Node 4 Inactive(file): 89944 kB
+Node 4 Unevictable: 0 kB
+Node 4 Mlocked: 0 kB
+Node 4 Dirty: 37856 kB
+Node 4 Writeback: 0 kB
+Node 4 FilePages: 110968 kB
+Node 4 Mapped: 956 kB
+Node 4 AnonPages: 6748 kB
+Node 4 Shmem: 32 kB
+Node 4 KernelStack: 1752 kB
+Node 4 PageTables: 1044 kB
+Node 4 NFS_Unstable: 0 kB
+Node 4 Bounce: 0 kB
+Node 4 WritebackTmp: 0 kB
+Node 4 Slab: 53532 kB
+Node 4 SReclaimable: 39732 kB
+Node 4 SUnreclaim: 13800 kB
+Node 4 HugePages_Total: 0
+Node 4 HugePages_Free: 0
+Node 4 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu34
\ No newline at end of file
--- /dev/null
+../../cpu/cpu38
\ No newline at end of file
--- /dev/null
+../../cpu/cpu42
\ No newline at end of file
--- /dev/null
+../../cpu/cpu46
\ No newline at end of file
--- /dev/null
+../../cpu/cpu50
\ No newline at end of file
--- /dev/null
+../../cpu/cpu54
\ No newline at end of file
--- /dev/null
+../../cpu/cpu58
\ No newline at end of file
--- /dev/null
+../../cpu/cpu62
\ No newline at end of file
--- /dev/null
+Node 5 MemTotal: 16777216 kB
+Node 5 MemFree: 16301072 kB
+Node 5 MemUsed: 476144 kB
+Node 5 Active: 12240 kB
+Node 5 Inactive: 32252 kB
+Node 5 Active(anon): 4608 kB
+Node 5 Inactive(anon): 0 kB
+Node 5 Active(file): 7632 kB
+Node 5 Inactive(file): 32252 kB
+Node 5 Unevictable: 0 kB
+Node 5 Mlocked: 0 kB
+Node 5 Dirty: 0 kB
+Node 5 Writeback: 0 kB
+Node 5 FilePages: 39952 kB
+Node 5 Mapped: 2144 kB
+Node 5 AnonPages: 4580 kB
+Node 5 Shmem: 28 kB
+Node 5 KernelStack: 704 kB
+Node 5 PageTables: 756 kB
+Node 5 NFS_Unstable: 0 kB
+Node 5 Bounce: 0 kB
+Node 5 WritebackTmp: 0 kB
+Node 5 Slab: 36752 kB
+Node 5 SReclaimable: 5352 kB
+Node 5 SUnreclaim: 31400 kB
+Node 5 HugePages_Total: 0
+Node 5 HugePages_Free: 0
+Node 5 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu35
\ No newline at end of file
--- /dev/null
+../../cpu/cpu39
\ No newline at end of file
--- /dev/null
+../../cpu/cpu43
\ No newline at end of file
--- /dev/null
+../../cpu/cpu47
\ No newline at end of file
--- /dev/null
+../../cpu/cpu51
\ No newline at end of file
--- /dev/null
+../../cpu/cpu55
\ No newline at end of file
--- /dev/null
+../../cpu/cpu59
\ No newline at end of file
--- /dev/null
+../../cpu/cpu63
\ No newline at end of file
--- /dev/null
+Node 6 MemTotal: 16777216 kB
+Node 6 MemFree: 16237116 kB
+Node 6 MemUsed: 540100 kB
+Node 6 Active: 30924 kB
+Node 6 Inactive: 80304 kB
+Node 6 Active(anon): 4124 kB
+Node 6 Inactive(anon): 4 kB
+Node 6 Active(file): 26800 kB
+Node 6 Inactive(file): 80300 kB
+Node 6 Unevictable: 0 kB
+Node 6 Mlocked: 0 kB
+Node 6 Dirty: 0 kB
+Node 6 Writeback: 0 kB
+Node 6 FilePages: 107124 kB
+Node 6 Mapped: 2436 kB
+Node 6 AnonPages: 4100 kB
+Node 6 Shmem: 28 kB
+Node 6 KernelStack: 120 kB
+Node 6 PageTables: 560 kB
+Node 6 NFS_Unstable: 0 kB
+Node 6 Bounce: 0 kB
+Node 6 WritebackTmp: 0 kB
+Node 6 Slab: 34468 kB
+Node 6 SReclaimable: 9848 kB
+Node 6 SUnreclaim: 24620 kB
+Node 6 HugePages_Total: 0
+Node 6 HugePages_Free: 0
+Node 6 HugePages_Surp: 0
--- /dev/null
+../../cpu/cpu11
\ No newline at end of file
--- /dev/null
+../../cpu/cpu15
\ No newline at end of file
--- /dev/null
+../../cpu/cpu19
\ No newline at end of file
--- /dev/null
+../../cpu/cpu23
\ No newline at end of file
--- /dev/null
+../../cpu/cpu27
\ No newline at end of file
--- /dev/null
+../../cpu/cpu3
\ No newline at end of file
--- /dev/null
+../../cpu/cpu31
\ No newline at end of file
--- /dev/null
+../../cpu/cpu7
\ No newline at end of file
--- /dev/null
+Node 7 MemTotal: 16760828 kB
+Node 7 MemFree: 16251136 kB
+Node 7 MemUsed: 509692 kB
+Node 7 Active: 28108 kB
+Node 7 Inactive: 25936 kB
+Node 7 Active(anon): 18672 kB
+Node 7 Inactive(anon): 832 kB
+Node 7 Active(file): 9436 kB
+Node 7 Inactive(file): 25104 kB
+Node 7 Unevictable: 0 kB
+Node 7 Mlocked: 0 kB
+Node 7 Dirty: 12 kB
+Node 7 Writeback: 0 kB
+Node 7 FilePages: 35412 kB
+Node 7 Mapped: 1000 kB
+Node 7 AnonPages: 14544 kB
+Node 7 Shmem: 872 kB
+Node 7 KernelStack: 176 kB
+Node 7 PageTables: 1536 kB
+Node 7 NFS_Unstable: 0 kB
+Node 7 Bounce: 0 kB
+Node 7 WritebackTmp: 0 kB
+Node 7 Slab: 58400 kB
+Node 7 SReclaimable: 11476 kB
+Node 7 SUnreclaim: 46924 kB
+Node 7 HugePages_Total: 0
+Node 7 HugePages_Free: 0
+Node 7 HugePages_Surp: 0
--- /dev/null
+processor : 0
+vendor_id : GenuineIntel
+cpu family : 15
+model : 4
+model name : Intel(R) Xeon(TM) CPU 2.80GHz
+stepping : 8
+cpu MHz : 2800.000
+cache size : 2048 KB
+physical id : 0
+siblings : 2
+core id : 0
+cpu cores : 2
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm constant_tsc pni monitor ds_cpl est cid cx16 xtpr lahf_lm
+bogomips : 5590.67
+clflush size : 64
+cache_alignment : 128
+address sizes : 36 bits physical, 48 bits virtual
+power management:
+
+processor : 1
+vendor_id : GenuineIntel
+cpu family : 15
+model : 4
+model name : Intel(R) Xeon(TM) CPU 2.80GHz
+stepping : 8
+cpu MHz : 2800.000
+cache size : 2048 KB
+physical id : 0
+siblings : 2
+core id : 1
+cpu cores : 2
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm constant_tsc pni monitor ds_cpl est cid cx16 xtpr lahf_lm
+bogomips : 5586.49
+clflush size : 64
+cache_alignment : 128
+address sizes : 36 bits physical, 48 bits virtual
+power management:
--- /dev/null
+CPUs: 2/2, MHz: 2800, Nodes: 1, Sockets: 1, Cores: 2, Threads: 1
--- /dev/null
+processor : 0
+vendor_id : GenuineIntel
+cpu family : 6
+model : 23
+model name : Intel(R) Core(TM)2 Duo CPU T9600 @ 2.80GHz
+stepping : 10
+microcode : 0xa0b
+cpu MHz : 800.000
+cache size : 6144 KB
+physical id : 0
+siblings : 2
+core id : 0
+cpu cores : 2
+apicid : 0
+initial apicid : 0
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts nopl aperfmperf pni dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 xsave lahf_lm ida dts tpr_shadow vnmi flexpriority
+bogomips : 5586.29
+clflush size : 64
+cache_alignment : 64
+address sizes : 36 bits physical, 48 bits virtual
+power management:
+
+processor : 1
+vendor_id : GenuineIntel
+cpu family : 6
+model : 23
+model name : Intel(R) Core(TM)2 Duo CPU T9600 @ 2.80GHz
+stepping : 10
+microcode : 0xa0b
+cpu MHz : 800.000
+cache size : 6144 KB
+physical id : 0
+siblings : 2
+core id : 1
+cpu cores : 2
+apicid : 1
+initial apicid : 1
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts nopl aperfmperf pni dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 xsave lahf_lm ida dts tpr_shadow vnmi flexpriority
+bogomips : 5586.29
+clflush size : 64
+cache_alignment : 64
+address sizes : 36 bits physical, 48 bits virtual
+power management:
+
--- /dev/null
+CPUs: 2/2, MHz: 800, Nodes: 1, Sockets: 1, Cores: 2, Threads: 1
--- /dev/null
+processor : 0
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 0
+cpu cores : 12
+apicid : 0
+initial apicid : 0
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.14
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 1
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 3
+siblings : 12
+core id : 0
+cpu cores : 12
+apicid : 48
+initial apicid : 48
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 2
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 2
+siblings : 12
+core id : 0
+cpu cores : 12
+apicid : 32
+initial apicid : 32
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 3
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 0
+cpu cores : 12
+apicid : 16
+initial apicid : 16
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.43
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 4
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 1
+cpu cores : 12
+apicid : 1
+initial apicid : 1
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.14
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 5
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 3
+siblings : 12
+core id : 1
+cpu cores : 12
+apicid : 49
+initial apicid : 49
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 6
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 2
+siblings : 12
+core id : 1
+cpu cores : 12
+apicid : 33
+initial apicid : 33
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 7
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 1
+cpu cores : 12
+apicid : 17
+initial apicid : 17
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.43
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 8
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 2
+cpu cores : 12
+apicid : 2
+initial apicid : 2
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.14
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 9
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 3
+siblings : 12
+core id : 2
+cpu cores : 12
+apicid : 50
+initial apicid : 50
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 10
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 2
+siblings : 12
+core id : 2
+cpu cores : 12
+apicid : 34
+initial apicid : 34
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 11
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 2
+cpu cores : 12
+apicid : 18
+initial apicid : 18
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.43
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 12
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 3
+cpu cores : 12
+apicid : 3
+initial apicid : 3
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.14
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 13
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 3
+siblings : 12
+core id : 3
+cpu cores : 12
+apicid : 51
+initial apicid : 51
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 14
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 2
+siblings : 12
+core id : 3
+cpu cores : 12
+apicid : 35
+initial apicid : 35
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 15
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 3
+cpu cores : 12
+apicid : 19
+initial apicid : 19
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.43
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 16
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 4
+cpu cores : 12
+apicid : 4
+initial apicid : 4
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.14
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 17
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 3
+siblings : 12
+core id : 4
+cpu cores : 12
+apicid : 52
+initial apicid : 52
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 18
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 2
+siblings : 12
+core id : 4
+cpu cores : 12
+apicid : 36
+initial apicid : 36
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 19
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 4
+cpu cores : 12
+apicid : 20
+initial apicid : 20
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.43
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 20
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 5
+cpu cores : 12
+apicid : 5
+initial apicid : 5
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.14
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 21
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 3
+siblings : 12
+core id : 5
+cpu cores : 12
+apicid : 53
+initial apicid : 53
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 22
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 2
+siblings : 12
+core id : 5
+cpu cores : 12
+apicid : 37
+initial apicid : 37
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 23
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 5
+cpu cores : 12
+apicid : 21
+initial apicid : 21
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.43
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 24
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 0
+cpu cores : 12
+apicid : 6
+initial apicid : 6
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.14
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 25
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 3
+siblings : 12
+core id : 0
+cpu cores : 12
+apicid : 54
+initial apicid : 54
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 26
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 2
+siblings : 12
+core id : 0
+cpu cores : 12
+apicid : 38
+initial apicid : 38
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 27
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 0
+cpu cores : 12
+apicid : 22
+initial apicid : 22
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.43
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 28
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 1
+cpu cores : 12
+apicid : 7
+initial apicid : 7
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.14
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 29
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 3
+siblings : 12
+core id : 1
+cpu cores : 12
+apicid : 55
+initial apicid : 55
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 30
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 2
+siblings : 12
+core id : 1
+cpu cores : 12
+apicid : 39
+initial apicid : 39
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 31
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 1
+cpu cores : 12
+apicid : 23
+initial apicid : 23
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.43
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 32
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 2
+cpu cores : 12
+apicid : 8
+initial apicid : 8
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.14
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 33
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 3
+siblings : 12
+core id : 2
+cpu cores : 12
+apicid : 56
+initial apicid : 56
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 34
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 2
+siblings : 12
+core id : 2
+cpu cores : 12
+apicid : 40
+initial apicid : 40
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 35
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 2
+cpu cores : 12
+apicid : 24
+initial apicid : 24
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.43
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 36
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 3
+cpu cores : 12
+apicid : 9
+initial apicid : 9
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.14
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 37
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 3
+siblings : 12
+core id : 3
+cpu cores : 12
+apicid : 57
+initial apicid : 57
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 38
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 2
+siblings : 12
+core id : 3
+cpu cores : 12
+apicid : 41
+initial apicid : 41
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 39
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 3
+cpu cores : 12
+apicid : 25
+initial apicid : 25
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.43
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 40
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 4
+cpu cores : 12
+apicid : 10
+initial apicid : 10
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.14
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 41
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 3
+siblings : 12
+core id : 4
+cpu cores : 12
+apicid : 58
+initial apicid : 58
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 42
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 2
+siblings : 12
+core id : 4
+cpu cores : 12
+apicid : 42
+initial apicid : 42
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 43
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 4
+cpu cores : 12
+apicid : 26
+initial apicid : 26
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.43
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 44
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 5
+cpu cores : 12
+apicid : 11
+initial apicid : 11
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.14
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 45
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 3
+siblings : 12
+core id : 5
+cpu cores : 12
+apicid : 59
+initial apicid : 59
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 46
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 2
+siblings : 12
+core id : 5
+cpu cores : 12
+apicid : 43
+initial apicid : 43
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.42
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 47
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6172
+stepping : 1
+cpu MHz : 2100.073
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 5
+cpu cores : 12
+apicid : 27
+initial apicid : 27
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4200.43
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
--- /dev/null
+CPUs: 48/48, MHz: 2100, Nodes: 8, Sockets: 1, Cores: 6, Threads: 1
--- /dev/null
+processor : 0
+vendor_id : GenuineIntel
+cpu family : 6
+model : 47
+model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
+stepping : 2
+cpu MHz : 1064.000
+cache size : 24576 KB
+physical id : 0
+siblings : 8
+core id : 1
+cpu cores : 8
+apicid : 2
+initial apicid : 2
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5320.10
+clflush size : 64
+cache_alignment : 64
+address sizes : 44 bits physical, 48 bits virtual
+power management:
+
+processor : 1
+vendor_id : GenuineIntel
+cpu family : 6
+model : 47
+model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
+stepping : 2
+cpu MHz : 1064.000
+cache size : 24576 KB
+physical id : 0
+siblings : 8
+core id : 2
+cpu cores : 8
+apicid : 4
+initial apicid : 4
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5320.10
+clflush size : 64
+cache_alignment : 64
+address sizes : 44 bits physical, 48 bits virtual
+power management:
+
+processor : 2
+vendor_id : GenuineIntel
+cpu family : 6
+model : 47
+model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
+stepping : 2
+cpu MHz : 1064.000
+cache size : 24576 KB
+physical id : 0
+siblings : 8
+core id : 8
+cpu cores : 8
+apicid : 16
+initial apicid : 16
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5320.10
+clflush size : 64
+cache_alignment : 64
+address sizes : 44 bits physical, 48 bits virtual
+power management:
+
+processor : 3
+vendor_id : GenuineIntel
+cpu family : 6
+model : 47
+model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
+stepping : 2
+cpu MHz : 1064.000
+cache size : 24576 KB
+physical id : 0
+siblings : 8
+core id : 9
+cpu cores : 8
+apicid : 18
+initial apicid : 18
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5320.10
+clflush size : 64
+cache_alignment : 64
+address sizes : 44 bits physical, 48 bits virtual
+power management:
+
+processor : 4
+vendor_id : GenuineIntel
+cpu family : 6
+model : 47
+model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
+stepping : 2
+cpu MHz : 1064.000
+cache size : 24576 KB
+physical id : 0
+siblings : 8
+core id : 16
+cpu cores : 8
+apicid : 32
+initial apicid : 32
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5320.10
+clflush size : 64
+cache_alignment : 64
+address sizes : 44 bits physical, 48 bits virtual
+power management:
+
+processor : 5
+vendor_id : GenuineIntel
+cpu family : 6
+model : 47
+model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
+stepping : 2
+cpu MHz : 1064.000
+cache size : 24576 KB
+physical id : 0
+siblings : 8
+core id : 17
+cpu cores : 8
+apicid : 34
+initial apicid : 34
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5320.10
+clflush size : 64
+cache_alignment : 64
+address sizes : 44 bits physical, 48 bits virtual
+power management:
+
+processor : 6
+vendor_id : GenuineIntel
+cpu family : 6
+model : 47
+model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
+stepping : 2
+cpu MHz : 1064.000
+cache size : 24576 KB
+physical id : 0
+siblings : 8
+core id : 18
+cpu cores : 8
+apicid : 36
+initial apicid : 36
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5320.10
+clflush size : 64
+cache_alignment : 64
+address sizes : 44 bits physical, 48 bits virtual
+power management:
+
+processor : 7
+vendor_id : GenuineIntel
+cpu family : 6
+model : 47
+model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
+stepping : 2
+cpu MHz : 1064.000
+cache size : 24576 KB
+physical id : 0
+siblings : 8
+core id : 24
+cpu cores : 8
+apicid : 48
+initial apicid : 48
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5320.10
+clflush size : 64
+cache_alignment : 64
+address sizes : 44 bits physical, 48 bits virtual
+power management:
+
+processor : 8
+vendor_id : GenuineIntel
+cpu family : 6
+model : 47
+model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
+stepping : 2
+cpu MHz : 1064.000
+cache size : 24576 KB
+physical id : 1
+siblings : 8
+core id : 0
+cpu cores : 8
+apicid : 64
+initial apicid : 64
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5319.83
+clflush size : 64
+cache_alignment : 64
+address sizes : 44 bits physical, 48 bits virtual
+power management:
+
+processor : 9
+vendor_id : GenuineIntel
+cpu family : 6
+model : 47
+model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
+stepping : 2
+cpu MHz : 1064.000
+cache size : 24576 KB
+physical id : 1
+siblings : 8
+core id : 2
+cpu cores : 8
+apicid : 68
+initial apicid : 68
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5319.83
+clflush size : 64
+cache_alignment : 64
+address sizes : 44 bits physical, 48 bits virtual
+power management:
+
+processor : 10
+vendor_id : GenuineIntel
+cpu family : 6
+model : 47
+model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
+stepping : 2
+cpu MHz : 1064.000
+cache size : 24576 KB
+physical id : 1
+siblings : 8
+core id : 8
+cpu cores : 8
+apicid : 80
+initial apicid : 80
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5319.83
+clflush size : 64
+cache_alignment : 64
+address sizes : 44 bits physical, 48 bits virtual
+power management:
+
+processor : 11
+vendor_id : GenuineIntel
+cpu family : 6
+model : 47
+model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
+stepping : 2
+cpu MHz : 1064.000
+cache size : 24576 KB
+physical id : 1
+siblings : 8
+core id : 9
+cpu cores : 8
+apicid : 82
+initial apicid : 82
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5319.83
+clflush size : 64
+cache_alignment : 64
+address sizes : 44 bits physical, 48 bits virtual
+power management:
+
+processor : 12
+vendor_id : GenuineIntel
+cpu family : 6
+model : 47
+model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
+stepping : 2
+cpu MHz : 1064.000
+cache size : 24576 KB
+physical id : 1
+siblings : 8
+core id : 16
+cpu cores : 8
+apicid : 96
+initial apicid : 96
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5319.83
+clflush size : 64
+cache_alignment : 64
+address sizes : 44 bits physical, 48 bits virtual
+power management:
+
+processor : 13
+vendor_id : GenuineIntel
+cpu family : 6
+model : 47
+model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
+stepping : 2
+cpu MHz : 1064.000
+cache size : 24576 KB
+physical id : 1
+siblings : 8
+core id : 17
+cpu cores : 8
+apicid : 98
+initial apicid : 98
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5319.83
+clflush size : 64
+cache_alignment : 64
+address sizes : 44 bits physical, 48 bits virtual
+power management:
+
+processor : 14
+vendor_id : GenuineIntel
+cpu family : 6
+model : 47
+model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
+stepping : 2
+cpu MHz : 1064.000
+cache size : 24576 KB
+physical id : 1
+siblings : 8
+core id : 18
+cpu cores : 8
+apicid : 100
+initial apicid : 100
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5319.83
+clflush size : 64
+cache_alignment : 64
+address sizes : 44 bits physical, 48 bits virtual
+power management:
+
+processor : 15
+vendor_id : GenuineIntel
+cpu family : 6
+model : 47
+model name : Intel(R) Xeon(R) CPU E7- 8837 @ 2.67GHz
+stepping : 2
+cpu MHz : 1064.000
+cache size : 24576 KB
+physical id : 1
+siblings : 8
+core id : 25
+cpu cores : 8
+apicid : 114
+initial apicid : 114
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 x2apic popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5319.83
+clflush size : 64
+cache_alignment : 64
+address sizes : 44 bits physical, 48 bits virtual
+power management:
+
--- /dev/null
+CPUs: 16/16, MHz: 1064, Nodes: 2, Sockets: 1, Cores: 8, Threads: 1
--- /dev/null
+processor : 0
+vendor_id : GenuineIntel
+cpu family : 6
+model : 15
+model name : Intel(R) Xeon(R) CPU E5320 @ 1.86GHz
+stepping : 7
+cpu MHz : 1861.965
+cache size : 4096 KB
+physical id : 0
+siblings : 4
+core id : 0
+cpu cores : 4
+apicid : 0
+initial apicid : 0
+fpu : yes
+fpu_exception : yes
+cpuid level : 10
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca lahf_lm tpr_shadow
+bogomips : 3723.93
+clflush size : 64
+cache_alignment : 64
+address sizes : 36 bits physical, 48 bits virtual
+power management:
+
+processor : 1
+vendor_id : GenuineIntel
+cpu family : 6
+model : 15
+model name : Intel(R) Xeon(R) CPU E5320 @ 1.86GHz
+stepping : 7
+cpu MHz : 1861.965
+cache size : 4096 KB
+physical id : 0
+siblings : 4
+core id : 2
+cpu cores : 4
+apicid : 2
+initial apicid : 2
+fpu : yes
+fpu_exception : yes
+cpuid level : 10
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca lahf_lm tpr_shadow
+bogomips : 3723.85
+clflush size : 64
+cache_alignment : 64
+address sizes : 36 bits physical, 48 bits virtual
+power management:
+
+processor : 2
+vendor_id : GenuineIntel
+cpu family : 6
+model : 15
+model name : Intel(R) Xeon(R) CPU E5320 @ 1.86GHz
+stepping : 7
+cpu MHz : 1861.965
+cache size : 4096 KB
+physical id : 0
+siblings : 4
+core id : 1
+cpu cores : 4
+apicid : 1
+initial apicid : 1
+fpu : yes
+fpu_exception : yes
+cpuid level : 10
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca lahf_lm tpr_shadow
+bogomips : 3723.86
+clflush size : 64
+cache_alignment : 64
+address sizes : 36 bits physical, 48 bits virtual
+power management:
+
+processor : 3
+vendor_id : GenuineIntel
+cpu family : 6
+model : 15
+model name : Intel(R) Xeon(R) CPU E5320 @ 1.86GHz
+stepping : 7
+cpu MHz : 1861.965
+cache size : 4096 KB
+physical id : 0
+siblings : 4
+core id : 3
+cpu cores : 4
+apicid : 3
+initial apicid : 3
+fpu : yes
+fpu_exception : yes
+cpuid level : 10
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca lahf_lm tpr_shadow
+bogomips : 3723.85
+clflush size : 64
+cache_alignment : 64
+address sizes : 36 bits physical, 48 bits virtual
+power management:
+
--- /dev/null
+CPUs: 4/4, MHz: 1861, Nodes: 1, Sockets: 1, Cores: 4, Threads: 1
--- /dev/null
+processor : 0
+vendor_id : GenuineIntel
+cpu family : 6
+model : 44
+model name : Intel(R) Xeon(R) CPU E5640 @ 2.67GHz
+stepping : 2
+cpu MHz : 1596.000
+cache size : 12288 KB
+physical id : 0
+siblings : 6
+core id : 0
+cpu cores : 4
+apicid : 0
+initial apicid : 0
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5333.90
+clflush size : 64
+cache_alignment : 64
+address sizes : 40 bits physical, 48 bits virtual
+power management:
+
+processor : 1
+vendor_id : GenuineIntel
+cpu family : 6
+model : 44
+model name : Intel(R) Xeon(R) CPU E5640 @ 2.67GHz
+stepping : 2
+cpu MHz : 1596.000
+cache size : 12288 KB
+physical id : 0
+siblings : 6
+core id : 1
+cpu cores : 4
+apicid : 2
+initial apicid : 2
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5333.90
+clflush size : 64
+cache_alignment : 64
+address sizes : 40 bits physical, 48 bits virtual
+power management:
+
+processor : 2
+vendor_id : GenuineIntel
+cpu family : 6
+model : 44
+model name : Intel(R) Xeon(R) CPU E5640 @ 2.67GHz
+stepping : 2
+cpu MHz : 1596.000
+cache size : 12288 KB
+physical id : 0
+siblings : 6
+core id : 9
+cpu cores : 4
+apicid : 18
+initial apicid : 18
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5333.90
+clflush size : 64
+cache_alignment : 64
+address sizes : 40 bits physical, 48 bits virtual
+power management:
+
+processor : 3
+vendor_id : GenuineIntel
+cpu family : 6
+model : 44
+model name : Intel(R) Xeon(R) CPU E5640 @ 2.67GHz
+stepping : 2
+cpu MHz : 1596.000
+cache size : 12288 KB
+physical id : 0
+siblings : 6
+core id : 10
+cpu cores : 4
+apicid : 20
+initial apicid : 20
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5333.90
+clflush size : 64
+cache_alignment : 64
+address sizes : 40 bits physical, 48 bits virtual
+power management:
+
+processor : 4
+vendor_id : GenuineIntel
+cpu family : 6
+model : 44
+model name : Intel(R) Xeon(R) CPU E5640 @ 2.67GHz
+stepping : 2
+cpu MHz : 1596.000
+cache size : 12288 KB
+physical id : 0
+siblings : 6
+core id : 0
+cpu cores : 4
+apicid : 1
+initial apicid : 1
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5333.90
+clflush size : 64
+cache_alignment : 64
+address sizes : 40 bits physical, 48 bits virtual
+power management:
+
+processor : 6
+vendor_id : GenuineIntel
+cpu family : 6
+model : 44
+model name : Intel(R) Xeon(R) CPU E5640 @ 2.67GHz
+stepping : 2
+cpu MHz : 1596.000
+cache size : 12288 KB
+physical id : 0
+siblings : 6
+core id : 9
+cpu cores : 4
+apicid : 19
+initial apicid : 19
+fpu : yes
+fpu_exception : yes
+cpuid level : 11
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt aes lahf_lm ida arat epb dts tpr_shadow vnmi flexpriority ept vpid
+bogomips : 5333.90
+clflush size : 64
+cache_alignment : 64
+address sizes : 40 bits physical, 48 bits virtual
+power management:
+
--- /dev/null
+CPUs: 6/8, MHz: 1596, Nodes: 1, Sockets: 1, Cores: 4, Threads: 2
--- /dev/null
+processor : 0
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 0
+cpu cores : 12
+apicid : 16
+initial apicid : 0
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.30
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 1
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 1
+cpu cores : 12
+apicid : 17
+initial apicid : 1
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.30
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 2
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 2
+cpu cores : 12
+apicid : 18
+initial apicid : 2
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.30
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 3
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 3
+cpu cores : 12
+apicid : 19
+initial apicid : 3
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.30
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 4
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 4
+cpu cores : 12
+apicid : 20
+initial apicid : 4
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.30
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 5
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 5
+cpu cores : 12
+apicid : 21
+initial apicid : 5
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.30
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 6
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 0
+cpu cores : 12
+apicid : 22
+initial apicid : 6
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.30
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 7
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 1
+cpu cores : 12
+apicid : 23
+initial apicid : 7
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.30
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 8
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 2
+cpu cores : 12
+apicid : 24
+initial apicid : 8
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.30
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 9
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 3
+cpu cores : 12
+apicid : 25
+initial apicid : 9
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.30
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 10
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 4
+cpu cores : 12
+apicid : 26
+initial apicid : 10
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.30
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 11
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 0
+siblings : 12
+core id : 5
+cpu cores : 12
+apicid : 27
+initial apicid : 11
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.30
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 12
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 0
+cpu cores : 12
+apicid : 32
+initial apicid : 16
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.52
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 13
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 1
+cpu cores : 12
+apicid : 33
+initial apicid : 17
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.52
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 14
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 2
+cpu cores : 12
+apicid : 34
+initial apicid : 18
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.52
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 15
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 3
+cpu cores : 12
+apicid : 35
+initial apicid : 19
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.52
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 16
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 4
+cpu cores : 12
+apicid : 36
+initial apicid : 20
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.52
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 17
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 5
+cpu cores : 12
+apicid : 37
+initial apicid : 21
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.52
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 18
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 0
+cpu cores : 12
+apicid : 38
+initial apicid : 22
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.52
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 19
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 1
+cpu cores : 12
+apicid : 39
+initial apicid : 23
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.52
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 20
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 2
+cpu cores : 12
+apicid : 40
+initial apicid : 24
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.52
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 21
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 3
+cpu cores : 12
+apicid : 41
+initial apicid : 25
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.52
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 22
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 4
+cpu cores : 12
+apicid : 42
+initial apicid : 26
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.52
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
+processor : 23
+vendor_id : AuthenticAMD
+cpu family : 16
+model : 9
+model name : AMD Opteron(tm) Processor 6174
+stepping : 1
+microcode : 0x10000d4
+cpu MHz : 2200.000
+cache size : 512 KB
+physical id : 1
+siblings : 12
+core id : 5
+cpu cores : 12
+apicid : 43
+initial apicid : 27
+fpu : yes
+fpu_exception : yes
+cpuid level : 5
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid amd_dcm pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt nodeid_msr hw_pstate npt lbrv svm_lock nrip_save pausefilter
+bogomips : 4390.52
+TLB size : 1024 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm stc 100mhzsteps hwpstate
+
--- /dev/null
+CPUs: 24/24, MHz: 2200, Nodes: 1, Sockets: 1, Cores: 24, Threads: 1
--- /dev/null
+processor : 0
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 0
+siblings : 16
+core id : 0
+cpu cores : 8
+apicid : 32
+initial apicid : 0
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5187.31
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 1
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 1
+siblings : 16
+core id : 0
+cpu cores : 8
+apicid : 64
+initial apicid : 32
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 2
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 2
+siblings : 16
+core id : 0
+cpu cores : 8
+apicid : 96
+initial apicid : 64
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 3
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 3
+siblings : 16
+core id : 0
+cpu cores : 8
+apicid : 128
+initial apicid : 96
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.44
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 4
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 0
+siblings : 16
+core id : 1
+cpu cores : 8
+apicid : 33
+initial apicid : 1
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5187.31
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 5
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 1
+siblings : 16
+core id : 1
+cpu cores : 8
+apicid : 65
+initial apicid : 33
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 6
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 2
+siblings : 16
+core id : 1
+cpu cores : 8
+apicid : 97
+initial apicid : 65
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 7
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 3
+siblings : 16
+core id : 1
+cpu cores : 8
+apicid : 129
+initial apicid : 97
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.44
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 8
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 0
+siblings : 16
+core id : 2
+cpu cores : 8
+apicid : 34
+initial apicid : 2
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5187.31
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 9
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 1
+siblings : 16
+core id : 2
+cpu cores : 8
+apicid : 66
+initial apicid : 34
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 10
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 2
+siblings : 16
+core id : 2
+cpu cores : 8
+apicid : 98
+initial apicid : 66
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 11
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 3
+siblings : 16
+core id : 2
+cpu cores : 8
+apicid : 130
+initial apicid : 98
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.44
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 12
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 0
+siblings : 16
+core id : 3
+cpu cores : 8
+apicid : 35
+initial apicid : 3
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5187.31
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 13
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 1
+siblings : 16
+core id : 3
+cpu cores : 8
+apicid : 67
+initial apicid : 35
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 14
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 2
+siblings : 16
+core id : 3
+cpu cores : 8
+apicid : 99
+initial apicid : 67
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 15
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 3
+siblings : 16
+core id : 3
+cpu cores : 8
+apicid : 131
+initial apicid : 99
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.44
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 16
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 0
+siblings : 16
+core id : 4
+cpu cores : 8
+apicid : 36
+initial apicid : 4
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5187.31
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 17
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 1
+siblings : 16
+core id : 4
+cpu cores : 8
+apicid : 68
+initial apicid : 36
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 18
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 2
+siblings : 16
+core id : 4
+cpu cores : 8
+apicid : 100
+initial apicid : 68
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 19
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 3
+siblings : 16
+core id : 4
+cpu cores : 8
+apicid : 132
+initial apicid : 100
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.44
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 20
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 0
+siblings : 16
+core id : 5
+cpu cores : 8
+apicid : 37
+initial apicid : 5
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5187.31
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 21
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 1
+siblings : 16
+core id : 5
+cpu cores : 8
+apicid : 69
+initial apicid : 37
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 22
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 2
+siblings : 16
+core id : 5
+cpu cores : 8
+apicid : 101
+initial apicid : 69
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 23
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 3
+siblings : 16
+core id : 5
+cpu cores : 8
+apicid : 133
+initial apicid : 101
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.44
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 24
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 0
+siblings : 16
+core id : 6
+cpu cores : 8
+apicid : 38
+initial apicid : 6
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5187.31
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 25
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 1
+siblings : 16
+core id : 6
+cpu cores : 8
+apicid : 70
+initial apicid : 38
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 26
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 2
+siblings : 16
+core id : 6
+cpu cores : 8
+apicid : 102
+initial apicid : 70
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 27
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 3
+siblings : 16
+core id : 6
+cpu cores : 8
+apicid : 134
+initial apicid : 102
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.44
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 28
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 0
+siblings : 16
+core id : 7
+cpu cores : 8
+apicid : 39
+initial apicid : 7
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5187.31
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 29
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 1
+siblings : 16
+core id : 7
+cpu cores : 8
+apicid : 71
+initial apicid : 39
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 30
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 2
+siblings : 16
+core id : 7
+cpu cores : 8
+apicid : 103
+initial apicid : 71
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 31
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 3
+siblings : 16
+core id : 7
+cpu cores : 8
+apicid : 135
+initial apicid : 103
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.44
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 32
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 0
+siblings : 16
+core id : 0
+cpu cores : 8
+apicid : 40
+initial apicid : 8
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5187.31
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 33
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 1
+siblings : 16
+core id : 0
+cpu cores : 8
+apicid : 72
+initial apicid : 40
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 34
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 2
+siblings : 16
+core id : 0
+cpu cores : 8
+apicid : 104
+initial apicid : 72
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 35
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 3
+siblings : 16
+core id : 0
+cpu cores : 8
+apicid : 136
+initial apicid : 104
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.44
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 36
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 0
+siblings : 16
+core id : 1
+cpu cores : 8
+apicid : 41
+initial apicid : 9
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5187.31
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 37
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 1
+siblings : 16
+core id : 1
+cpu cores : 8
+apicid : 73
+initial apicid : 41
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 38
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 2
+siblings : 16
+core id : 1
+cpu cores : 8
+apicid : 105
+initial apicid : 73
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 39
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 3
+siblings : 16
+core id : 1
+cpu cores : 8
+apicid : 137
+initial apicid : 105
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.44
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 40
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 0
+siblings : 16
+core id : 2
+cpu cores : 8
+apicid : 42
+initial apicid : 10
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5187.31
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 41
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 1
+siblings : 16
+core id : 2
+cpu cores : 8
+apicid : 74
+initial apicid : 42
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 42
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 2
+siblings : 16
+core id : 2
+cpu cores : 8
+apicid : 106
+initial apicid : 74
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 43
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 3
+siblings : 16
+core id : 2
+cpu cores : 8
+apicid : 138
+initial apicid : 106
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.44
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 44
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 0
+siblings : 16
+core id : 3
+cpu cores : 8
+apicid : 43
+initial apicid : 11
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5187.31
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 45
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 1
+siblings : 16
+core id : 3
+cpu cores : 8
+apicid : 75
+initial apicid : 43
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 46
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 2
+siblings : 16
+core id : 3
+cpu cores : 8
+apicid : 107
+initial apicid : 75
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 47
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 3
+siblings : 16
+core id : 3
+cpu cores : 8
+apicid : 139
+initial apicid : 107
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.44
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 48
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 0
+siblings : 16
+core id : 4
+cpu cores : 8
+apicid : 44
+initial apicid : 12
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5187.31
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 49
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 1
+siblings : 16
+core id : 4
+cpu cores : 8
+apicid : 76
+initial apicid : 44
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 50
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 2
+siblings : 16
+core id : 4
+cpu cores : 8
+apicid : 108
+initial apicid : 76
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 51
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 3
+siblings : 16
+core id : 4
+cpu cores : 8
+apicid : 140
+initial apicid : 108
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.44
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 52
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 0
+siblings : 16
+core id : 5
+cpu cores : 8
+apicid : 45
+initial apicid : 13
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5187.31
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 53
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 1
+siblings : 16
+core id : 5
+cpu cores : 8
+apicid : 77
+initial apicid : 45
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 54
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 2
+siblings : 16
+core id : 5
+cpu cores : 8
+apicid : 109
+initial apicid : 77
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 55
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 3
+siblings : 16
+core id : 5
+cpu cores : 8
+apicid : 141
+initial apicid : 109
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.44
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 56
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 0
+siblings : 16
+core id : 6
+cpu cores : 8
+apicid : 46
+initial apicid : 14
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5187.31
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 57
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 1
+siblings : 16
+core id : 6
+cpu cores : 8
+apicid : 78
+initial apicid : 46
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 58
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 2
+siblings : 16
+core id : 6
+cpu cores : 8
+apicid : 110
+initial apicid : 78
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 59
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 3
+siblings : 16
+core id : 6
+cpu cores : 8
+apicid : 142
+initial apicid : 110
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.44
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 60
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 0
+siblings : 16
+core id : 7
+cpu cores : 8
+apicid : 47
+initial apicid : 15
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5187.31
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 61
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 1
+siblings : 16
+core id : 7
+cpu cores : 8
+apicid : 79
+initial apicid : 47
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 62
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 2
+siblings : 16
+core id : 7
+cpu cores : 8
+apicid : 111
+initial apicid : 79
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.41
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
+processor : 63
+vendor_id : AuthenticAMD
+cpu family : 21
+model : 1
+model name : AMD Opteron(tm) Processor 6282 SE
+stepping : 2
+cpu MHz : 2593.658
+cache size : 2048 KB
+physical id : 3
+siblings : 16
+core id : 7
+cpu cores : 8
+apicid : 143
+initial apicid : 111
+fpu : yes
+fpu_exception : yes
+cpuid level : 13
+wp : yes
+flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nonstop_tsc extd_apicid amd_dcm aperfmperf pni pclmulqdq monitor ssse3 cx16 sse4_1 sse4_2 popcnt aes xsave avx lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs xop skinit wdt lwp fma4 nodeid_msr topoext perfctr_core cpb npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold
+bogomips : 5186.44
+TLB size : 1536 4K pages
+clflush size : 64
+cache_alignment : 64
+address sizes : 48 bits physical, 48 bits virtual
+power management: ts ttp tm 100mhzsteps hwpstate cpb
+
--- /dev/null
+CPUs: 64/64, MHz: 2593, Nodes: 1, Sockets: 1, Cores: 64, Threads: 1
--- /dev/null
+/*
+ * Copyright (C) 2015 Red Hat, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see
+ * <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#include <config.h>
+
+#include "virhostcpu.h"
+
+int
+virHostCPUGetThreadsPerSubcore(virArch arch)
+{
+ int threads_per_subcore = 0;
+
+ // Emulate SMT=8 on POWER hardware
+ if (ARCH_IS_PPC64(arch))
+ threads_per_subcore = 8;
+
+ return threads_per_subcore;
+}
--- /dev/null
+#include <config.h>
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+
+#include "testutils.h"
+#include "internal.h"
+#include "virhostcpupriv.h"
+#include "virfile.h"
+#include "virstring.h"
+
+#define VIR_FROM_THIS VIR_FROM_NONE
+
+#if !(defined __linux__)
+
+int
+main(void)
+{
+ return EXIT_AM_SKIP;
+}
+
+#else
+
+static int
+linuxTestCompareFiles(const char *cpuinfofile,
+ virArch arch,
+ const char *outputfile)
+{
+ int ret = -1;
+ char *actualData = NULL;
+ virNodeInfo nodeinfo;
+ FILE *cpuinfo;
+
+ cpuinfo = fopen(cpuinfofile, "r");
+ if (!cpuinfo) {
+ fprintf(stderr, "unable to open: %s : %s\n",
+ cpuinfofile, strerror(errno));
+ goto fail;
+ }
+
+ memset(&nodeinfo, 0, sizeof(nodeinfo));
+ if (virHostCPUGetInfoPopulateLinux(cpuinfo, arch,
+ &nodeinfo.cpus, &nodeinfo.mhz,
+ &nodeinfo.nodes, &nodeinfo.sockets,
+ &nodeinfo.cores, &nodeinfo.threads) < 0) {
+ if (virTestGetDebug()) {
+ if (virGetLastError())
+ VIR_TEST_DEBUG("\n%s\n", virGetLastErrorMessage());
+ }
+ VIR_FORCE_FCLOSE(cpuinfo);
+ goto fail;
+ }
+ VIR_FORCE_FCLOSE(cpuinfo);
+
+ if (virAsprintf(&actualData,
+ "CPUs: %u/%u, MHz: %u, Nodes: %u, Sockets: %u, "
+ "Cores: %u, Threads: %u\n",
+ nodeinfo.cpus, VIR_NODEINFO_MAXCPUS(nodeinfo),
+ nodeinfo.mhz, nodeinfo.nodes, nodeinfo.sockets,
+ nodeinfo.cores, nodeinfo.threads) < 0)
+ goto fail;
+
+ if (virTestCompareToFile(actualData, outputfile) < 0)
+ goto fail;
+
+ ret = 0;
+
+ fail:
+ VIR_FREE(actualData);
+ return ret;
+}
+
+# define TICK_TO_NSEC (1000ull * 1000ull * 1000ull / sysconf(_SC_CLK_TCK))
+
+static int
+linuxCPUStatsToBuf(virBufferPtr buf,
+ int cpu,
+ virNodeCPUStatsPtr param,
+ size_t nparams)
+{
+ size_t i = 0;
+
+ if (cpu < 0)
+ virBufferAddLit(buf, "cpu:\n");
+ else
+ virBufferAsprintf(buf, "cpu%d:\n", cpu);
+
+ for (i = 0; i < nparams; i++)
+ virBufferAsprintf(buf, "%s: %llu\n", param[i].field,
+ param[i].value / TICK_TO_NSEC);
+
+ virBufferAddChar(buf, '\n');
+ return 0;
+}
+
+static int
+linuxCPUStatsCompareFiles(const char *cpustatfile,
+ size_t ncpus,
+ const char *outfile)
+{
+ int ret = -1;
+ char *actualData = NULL;
+ FILE *cpustat = NULL;
+ virNodeCPUStatsPtr params = NULL;
+ virBuffer buf = VIR_BUFFER_INITIALIZER;
+ size_t i;
+ int nparams = 0;
+
+ if (!(cpustat = fopen(cpustatfile, "r"))) {
+ virReportSystemError(errno, "failed to open '%s': ", cpustatfile);
+ goto fail;
+ }
+
+ if (virHostCPUGetStatsLinux(NULL, 0, NULL, &nparams) < 0)
+ goto fail;
+
+ if (VIR_ALLOC_N(params, nparams) < 0)
+ goto fail;
+
+ if (virHostCPUGetStatsLinux(cpustat, VIR_NODE_CPU_STATS_ALL_CPUS, params,
+ &nparams) < 0)
+ goto fail;
+
+ if (linuxCPUStatsToBuf(&buf, VIR_NODE_CPU_STATS_ALL_CPUS,
+ params, nparams) < 0)
+ goto fail;
+
+ for (i = 0; i < ncpus; i++) {
+ if (virHostCPUGetStatsLinux(cpustat, i, params, &nparams) < 0)
+ goto fail;
+ if (linuxCPUStatsToBuf(&buf, i, params, nparams) < 0)
+ goto fail;
+ }
+
+ if (!(actualData = virBufferContentAndReset(&buf))) {
+ virReportOOMError();
+ goto fail;
+ }
+
+ if (virTestCompareToFile(actualData, outfile) < 0)
+ goto fail;
+
+ ret = 0;
+
+ fail:
+ virBufferFreeAndReset(&buf);
+ VIR_FORCE_FCLOSE(cpustat);
+ VIR_FREE(actualData);
+ VIR_FREE(params);
+ return ret;
+}
+
+
+struct linuxTestHostCPUData {
+ const char *testName;
+ virArch arch;
+};
+
+static int
+linuxTestHostCPU(const void *opaque)
+{
+ int result = -1;
+ char *cpuinfo = NULL;
+ char *sysfs_prefix = NULL;
+ char *output = NULL;
+ struct linuxTestHostCPUData *data = (struct linuxTestHostCPUData *) opaque;
+ const char *archStr = virArchToString(data->arch);
+
+ if (virAsprintf(&sysfs_prefix, "%s/virhostcpudata/linux-%s",
+ abs_srcdir, data->testName) < 0 ||
+ virAsprintf(&cpuinfo, "%s/virhostcpudata/linux-%s-%s.cpuinfo",
+ abs_srcdir, archStr, data->testName) < 0 ||
+ virAsprintf(&output, "%s/virhostcpudata/linux-%s-%s.expected",
+ abs_srcdir, archStr, data->testName) < 0) {
+ goto cleanup;
+ }
+
+ virHostCPUSetSysFSSystemPathLinux(sysfs_prefix);
+ result = linuxTestCompareFiles(cpuinfo, data->arch, output);
+ virHostCPUSetSysFSSystemPathLinux(NULL);
+
+ cleanup:
+ VIR_FREE(cpuinfo);
+ VIR_FREE(output);
+ VIR_FREE(sysfs_prefix);
+
+ return result;
+}
+
+struct nodeCPUStatsData {
+ const char *name;
+ int ncpus;
+};
+
+static int
+linuxTestNodeCPUStats(const void *data)
+{
+ const struct nodeCPUStatsData *testData = data;
+ int result = -1;
+ char *cpustatfile = NULL;
+ char *outfile = NULL;
+
+ if (virAsprintf(&cpustatfile, "%s/virhostcpudata/linux-cpustat-%s.stat",
+ abs_srcdir, testData->name) < 0 ||
+ virAsprintf(&outfile, "%s/virhostcpudata/linux-cpustat-%s.out",
+ abs_srcdir, testData->name) < 0)
+ goto fail;
+
+ result = linuxCPUStatsCompareFiles(cpustatfile,
+ testData->ncpus,
+ outfile);
+ fail:
+ VIR_FREE(cpustatfile);
+ VIR_FREE(outfile);
+ return result;
+}
+
+
+static int
+mymain(void)
+{
+ int ret = 0;
+ size_t i;
+ const struct linuxTestHostCPUData nodeData[] = {
+ {"test1", VIR_ARCH_X86_64},
+ {"test1", VIR_ARCH_PPC},
+ {"test2", VIR_ARCH_X86_64},
+ {"test3", VIR_ARCH_X86_64},
+ {"test4", VIR_ARCH_X86_64},
+ {"test5", VIR_ARCH_X86_64},
+ {"test6", VIR_ARCH_X86_64},
+ {"test7", VIR_ARCH_X86_64},
+ {"test8", VIR_ARCH_X86_64},
+ {"raspberrypi", VIR_ARCH_ARMV6L},
+ {"f21-mustang", VIR_ARCH_AARCH64},
+ {"rhelsa-3.19.0-mustang", VIR_ARCH_AARCH64},
+ {"deconf-cpus", VIR_ARCH_PPC64},
+ /* subcores, default configuration */
+ {"subcores1", VIR_ARCH_PPC64},
+ /* subcores, some of the cores are offline */
+ {"subcores2", VIR_ARCH_PPC64},
+ /* subcores, invalid configuration */
+ {"subcores3", VIR_ARCH_PPC64},
+ };
+
+ if (virInitialize() < 0)
+ return EXIT_FAILURE;
+
+ for (i = 0; i < ARRAY_CARDINALITY(nodeData); i++)
+ if (virTestRun(nodeData[i].testName, linuxTestHostCPU, &nodeData[i]) != 0)
+ ret = -1;
+
+# define DO_TEST_CPU_STATS(name, ncpus) \
+ do { \
+ static struct nodeCPUStatsData data = { name, ncpus }; \
+ if (virTestRun("CPU stats " name, linuxTestNodeCPUStats, &data) < 0) \
+ ret = -1; \
+ } while (0)
+
+ DO_TEST_CPU_STATS("24cpu", 24);
+
+ return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
+}
+
+VIRT_TEST_MAIN_PRELOAD(mymain, abs_builddir "/.libs/virhostcpumock.so")
+
+#endif /* __linux__ */