Hi Hike,
On Fri, Mar 12, 2021 at 06:56:01AM +0200, Mike Rapoport wrote:
Hello,
On Wed, Mar 10, 2021 at 09:54:26AM +0800, kernel test robot wrote:
>
> Greeting,
>
> FYI, we noticed a -4.2% regression of will-it-scale.per_thread_ops due to commit:
>
>
> commit: 81a779a1a49c8644fd8dc994815a9aa379d10825 ("mm: introduce memfd_secret
system call to create "secret" memory areas")
>
https://git.kernel.org/cgit/linux/kernel/git/rppt/linux.git memfd-secret/v18
>
>
> in testcase: will-it-scale
> on test machine: 192 threads Intel(R) Xeon(R) Platinum 9242 CPU @ 2.30GHz with 192G
memory
> with following parameters:
>
> nr_task: 100%
> mode: thread
> test: futex1
> cpufreq_governor: performance
> ucode: 0x5003006
>
> test-description: Will It Scale takes a testcase and runs it from 1 through to n
parallel copies to see if the testcase will scale. It builds both a process and threads
based test in order to see any differences between the two.
> test-url:
https://github.com/antonblanchard/will-it-scale
>
>
>
> If you fix the issue, kindly add following tag
> Reported-by: kernel test robot <oliver.sang(a)intel.com>
Can you please test the following patch on top of commit: 81a779a1a49c
("mm: introduce memfd_secret system call to create "secret" memory
areas")
to see if it performs better:
it performs a little better but still has -3.7% regression:
* e9be99d574c74 (linux-devel/fixup-81a779a1a49c) fix-81a779a1a49c-perf
* 81a779a1a49c8 mm: introduce memfd_secret system call to create "secret" memory
areas
* 043463bfe80b8 set_memory: allow querying whether set_direct_map_*() is actually enabled
patch:
================================================================================
commit e9be99d574c740e348ad228decac040c9aff078a (linux-devel/fixup-81a779a1a49c)
Author: 0day robot <lkp(a)intel.com>
Date: Thu Mar 18 21:18:04 2021 +0800
fix-81a779a1a49c-perf
diff --git a/include/linux/secretmem.h b/include/linux/secretmem.h
index 70e7db9f94fe2..f53b0e46aacf3 100644
--- a/include/linux/secretmem.h
+++ b/include/linux/secretmem.h
@@ -4,8 +4,19 @@
#ifdef CONFIG_SECRETMEM
+extern const struct address_space_operations secretmem_aops;
+
+static inline bool page_is_secretmem(struct page *page)
+{
+ struct address_space *mapping = page_mapping(page);
+
+ if (!mapping)
+ return false;
+
+ return mapping->a_ops == &secretmem_aops;
+}
+
bool vma_is_secretmem(struct vm_area_struct *vma);
-bool page_is_secretmem(struct page *page);
#else
diff --git a/mm/secretmem.c b/mm/secretmem.c
index fa6738e860c2e..abc7cff93d6a7 100644
--- a/mm/secretmem.c
+++ b/mm/secretmem.c
@@ -137,22 +137,12 @@ static void secretmem_freepage(struct page *page)
clear_highpage(page);
}
-static const struct address_space_operations secretmem_aops = {
+const struct address_space_operations secretmem_aops = {
.freepage = secretmem_freepage,
.migratepage = secretmem_migratepage,
.isolate_page = secretmem_isolate_page,
};
-bool page_is_secretmem(struct page *page)
-{
- struct address_space *mapping = page_mapping(page);
-
- if (!mapping)
- return false;
-
- return mapping->a_ops == &secretmem_aops;
-}
-
static struct vfsmount *secretmem_mnt;
static struct file *secretmem_file_create(unsigned long flags)
==========================================================================
results:
=========================================================================================
compiler/cpufreq_governor/kconfig/mode/nr_task/rootfs/tbox_group/test/testcase/ucode:
gcc-9/performance/x86_64-rhel-8.3/thread/100%/debian-10.4-x86_64-20200603.cgz/lkp-csl-2ap2/futex1/will-it-scale/0x5003006
commit:
043463bfe80b838b57aa2e0ef495a3326c84f3dd
81a779a1a49c8644fd8dc994815a9aa379d10825
e9be99d574c740e348ad228decac040c9aff078a
043463bfe80b838b 81a779a1a49c8644fd8dc994815 e9be99d574c740e348ad228deca
---------------- --------------------------- ---------------------------
fail:runs %reproduction fail:runs %reproduction fail:runs
| | | | |
1025:6 10% 1025:6 17341% 2065:8
dmesg.timestamp:last
1025:6 -30% 1023:6 5927% 1380:8
kmsg.timestamp:last
6:6 0% 6:6 33% 8:8
stderr.Events_disabled
6:6 0% 6:6 33% 8:8
stderr.Events_enabled
6:6 0% 6:6 33% 8:8
stderr.[perf_record:Captured_and_wrote#MB/tmp/lkp/perf-sched.data(#samples)]
6:6 0% 6:6 33% 8:8
stderr.[perf_record:Woken_up#times_to_write_data]
6:6 0% 6:6 33% 8:8
stderr.has_stderr
%stddev %change %stddev %change %stddev
\ | \ | \
6.646e+08 -4.2% 6.367e+08 -3.7% 6.404e+08
will-it-scale.192.threads
0.09 +1.9% 0.09 ± 4% +0.0% 0.09
will-it-scale.192.threads_idle
3461642 -4.2% 3316208 -3.7% 3335235
will-it-scale.per_thread_ops
301.42 -0.0% 301.38 -0.0% 301.40
will-it-scale.time.elapsed_time
301.42 -0.0% 301.38 -0.0% 301.40
will-it-scale.time.elapsed_time.max
2.50 ± 20% -26.7% 1.83 ± 37% -35.0% 1.62 ± 61%
will-it-scale.time.involuntary_context_switches
0.33 ±141% -50.0% 0.17 ±223% -25.0% 0.25 ±173%
will-it-scale.time.major_page_faults
9731 -0.4% 9695 +0.0% 9735
will-it-scale.time.maximum_resident_set_size
6505 -0.2% 6493 -0.1% 6500
will-it-scale.time.minor_page_faults
4096 +0.0% 4096 +0.0% 4096
will-it-scale.time.page_size
0.03 ± 19% +0.0% 0.03 ± 19% +5.0% 0.03 ± 18%
will-it-scale.time.system_time
0.04 ± 14% -14.3% 0.03 -10.7% 0.03 ± 10%
will-it-scale.time.user_time
83.50 +2.4% 85.50 +0.9% 84.25 ± 2%
will-it-scale.time.voluntary_context_switches
6.646e+08 -4.2% 6.367e+08 -3.7% 6.404e+08
will-it-scale.workload
341.57 -0.1% 341.27 +0.4% 343.06 uptime.boot
6452 ± 3% -2.3% 6304 ± 7% +3.0% 6644 ± 4% uptime.idle
37.75 ± 4% -0.5% 37.56 ± 6% +3.8% 39.16 ± 3% boot-time.boot
25.37 ± 7% -0.5% 25.25 ± 7% +4.1% 26.40 boot-time.dhcp
5724 ± 5% -1.6% 5634 ± 6% +3.4% 5921 ± 4% boot-time.idle
1.72 +0.0% 1.72 +0.1% 1.73
boot-time.smp_boot
7.08 ± 2% +0.0 7.09 ± 2% +0.2 7.25
mpstat.cpu.all.idle%
0.00 ±223% +0.0 0.00 ±181% -0.0 0.00 ±174%
mpstat.cpu.all.iowait%
1.07 ± 4% -0.0 1.05 ± 6% -0.0 1.06 ± 2%
mpstat.cpu.all.irq%
0.01 ± 2% -0.0 0.01 ± 2% +0.0 0.01 ± 3%
mpstat.cpu.all.soft%
75.10 +0.6 75.74 +0.4 75.49
mpstat.cpu.all.sys%
16.73 -0.6 16.11 -0.5 16.19
mpstat.cpu.all.usr%
2638413 ± 38% -24.3% 1998116 ± 19% -30.7% 1828823 ± 18% cpuidle.C1.time
14334 ± 6% -2.2% 14020 ± 18% -10.4% 12847 ± 8%
cpuidle.C1.usage
1.989e+08 ± 67% -13.3% 1.724e+08 ± 69% +11.1% 2.21e+08 ± 68%
cpuidle.C1E.time
459733 ± 55% +6.2% 488139 ± 29% +18.0% 542609 ± 48%
cpuidle.C1E.usage
1.683e+08 ± 85% +6.4% 1.79e+08 ± 66% -7.7% 1.553e+08 ± 76% cpuidle.C6.time
306368 ± 49% +3.1% 315917 ± 45% +1.1% 309837 ± 49%
cpuidle.C6.usage
48603 ±131% -63.6% 17706 ± 9% -5.9% 45754 ±166%
cpuidle.POLL.time
7131 ± 92% -40.4% 4249 ± 13% -20.1% 5694 ± 59%
cpuidle.POLL.usage
301.42 -0.0% 301.38 -0.0% 301.40
time.elapsed_time
301.42 -0.0% 301.38 -0.0% 301.40
time.elapsed_time.max
2.50 ± 20% -26.7% 1.83 ± 37% -35.0% 1.62 ± 61%
time.involuntary_context_switches
0.33 ±141% -50.0% 0.17 ±223% -25.0% 0.25 ±173%
time.major_page_faults
9731 -0.4% 9695 +0.0% 9735
time.maximum_resident_set_size
6505 -0.2% 6493 -0.1% 6500
time.minor_page_faults
4096 +0.0% 4096 +0.0% 4096 time.page_size
0.03 ± 19% +0.0% 0.03 ± 19% +5.0% 0.03 ± 18%
time.system_time
0.04 ± 14% -14.3% 0.03 -10.7% 0.03 ± 10% time.user_time
83.50 +2.4% 85.50 +0.9% 84.25 ± 2%
time.voluntary_context_switches
0.17 ±223% -100.0% 0.00 -25.0% 0.12 ±264% vmstat.cpu.id
80.83 +1.2% 81.83 +0.8% 81.50 vmstat.cpu.sy
17.00 -4.9% 16.17 ± 2% -2.2% 16.62 ± 2% vmstat.cpu.us
0.00 -100.0% 0.00 -100.0% 0.00 vmstat.cpu.wa
0.00 -100.0% 0.00 -100.0% 0.00 vmstat.io.bi
1803056 +0.2% 1806427 +0.3% 1809253
vmstat.memory.cache
1.938e+08 +0.0% 1.939e+08 -0.0% 1.938e+08
vmstat.memory.free
190.00 +0.0% 190.00 +0.0% 190.00 vmstat.procs.r
2128 -0.1% 2126 +1.4% 2158
vmstat.system.cs
368851 ± 15% +7.2% 395313 +7.2% 395402
vmstat.system.in
0.00 -100.0% 0.00 -100.0% 0.00
numa-numastat.node0.interleave_hit
222158 ± 20% -4.0% 213280 ± 4% +7.0% 237656 ± 14%
numa-numastat.node0.local_node
302433 ± 12% -3.9% 290488 ± 2% -2.0% 296373 ± 4%
numa-numastat.node0.numa_hit
80276 ± 10% -3.8% 77208 ± 11% -26.8% 58736 ± 46%
numa-numastat.node0.other_node
0.00 -100.0% 0.00 -100.0% 0.00
numa-numastat.node1.interleave_hit
250553 ± 20% -5.4% 237115 ± 20% -7.5% 231835 ± 14%
numa-numastat.node1.local_node
300047 ± 7% -0.7% 297991 ± 7% -1.6% 295268 ± 6%
numa-numastat.node1.numa_hit
49503 ± 63% +23.0% 60882 ± 50% +28.1% 63434 ± 31%
numa-numastat.node1.other_node
0.00 -100.0% 0.00 -100.0% 0.00
numa-numastat.node2.interleave_hit
232597 ± 19% -8.2% 213623 ± 15% -1.7% 228603 ± 13%
numa-numastat.node2.local_node
293458 ± 4% -2.6% 285768 ± 3% +0.2% 293965 ± 2%
numa-numastat.node2.numa_hit
60874 ± 50% +18.5% 72155 ± 34% +7.4% 65368 ± 41%
numa-numastat.node2.other_node
0.00 -100.0% 0.00 -100.0% 0.00
numa-numastat.node3.interleave_hit
394406 ± 16% +10.1% 434203 ± 12% +3.7% 409173 ± 8%
numa-numastat.node3.local_node
463448 ± 10% +4.4% 483694 ± 4% +3.8% 481088 ± 3%
numa-numastat.node3.numa_hit
69045 ± 34% -28.3% 49505 ± 75% +4.2% 71918 ± 30%
numa-numastat.node3.other_node
425622 +0.6% 428239 +1.2% 430698 meminfo.Active
425622 +0.6% 428239 +1.2% 430698
meminfo.Active(anon)
278244 -1.0% 275505 -0.7% 276253
meminfo.AnonHugePages
430291 -0.3% 429140 +0.2% 431138
meminfo.AnonPages
1669221 +0.2% 1672709 +0.4% 1675346 meminfo.Cached
189912 +0.0% 189912 +0.0% 189912 meminfo.CmaFree
204800 +0.0% 204800 +0.0% 204800
meminfo.CmaTotal
98857496 -0.0% 98857492 -0.0% 98857492
meminfo.CommitLimit
2497691 +0.1% 2499688 +0.4% 2507429
meminfo.Committed_AS
1.88e+08 +0.3% 1.886e+08 -0.3% 1.876e+08
meminfo.DirectMap1G
13603157 ± 5% -4.0% 13065557 ± 5% +3.8% 14114816 ± 7%
meminfo.DirectMap2M
1460309 ± 4% +0.9% 1473621 ± 4% -2.1% 1429248 ± 3%
meminfo.DirectMap4k
2048 +0.0% 2048 +0.0% 2048
meminfo.Hugepagesize
491903 -0.0% 491716 +0.5% 494122
meminfo.Inactive
491903 -0.0% 491716 +0.5% 494122
meminfo.Inactive(anon)
133300 +0.2% 133585 +0.3% 133691
meminfo.KReclaimable
32439 +0.2% 32502 -0.1% 32412
meminfo.KernelStack
106397 ± 6% +1.0% 107443 ± 3% +1.4% 107912 ± 3% meminfo.Mapped
1.931e+08 +0.0% 1.932e+08 -0.0% 1.931e+08
meminfo.MemAvailable
1.938e+08 +0.0% 1.939e+08 -0.0% 1.938e+08 meminfo.MemFree
1.977e+08 -0.0% 1.977e+08 -0.0% 1.977e+08
meminfo.MemTotal
3908658 -1.2% 3860836 +0.1% 3913613 meminfo.Memused
1153 ± 70% -49.9% 577.50 ±141% -24.8% 866.88 ±100% meminfo.Mlocked
6289 ± 2% -0.6% 6250 ± 2% +1.2% 6367
meminfo.PageTables
103001 +0.2% 103161 +0.4% 103452 meminfo.Percpu
133300 +0.2% 133585 +0.3% 133691
meminfo.SReclaimable
294723 +0.2% 295285 ± 2% +0.5% 296083
meminfo.SUnreclaim
487695 ± 2% +0.7% 491184 +1.2% 493763 meminfo.Shmem
428024 +0.2% 428871 +0.4% 429774 meminfo.Slab
1181692 -0.0% 1181608 +0.0% 1181707
meminfo.Unevictable
3.436e+10 +0.0% 3.436e+10 +0.0% 3.436e+10
meminfo.VmallocTotal
315332 -0.1% 314993 +0.1% 315706
meminfo.VmallocUsed
4779774 -0.8% 4739187 ± 2% +0.7% 4813017
meminfo.max_used_kB
0.00 -100.0% 0.00 -100.0% 0.00
proc-vmstat.compact_isolated
106385 +0.7% 107144 +1.2% 107704
proc-vmstat.nr_active_anon
107676 -0.3% 107367 +0.2% 107851
proc-vmstat.nr_anon_pages
135.50 -1.0% 134.17 -0.7% 134.50
proc-vmstat.nr_anon_transparent_hugepages
4819784 +0.0% 4820986 -0.0% 4819689
proc-vmstat.nr_dirty_background_threshold
9651353 +0.0% 9653760 -0.0% 9651163
proc-vmstat.nr_dirty_threshold
417279 +0.2% 418090 +0.4% 418765
proc-vmstat.nr_file_pages
47478 +0.0% 47478 +0.0% 47478
proc-vmstat.nr_free_cma
48451330 +0.0% 48463367 -0.0% 48450379
proc-vmstat.nr_free_pages
123072 -0.2% 122836 +0.3% 123494
proc-vmstat.nr_inactive_anon
0.17 ±223% +0.0% 0.17 ±223% -100.0% 0.00
proc-vmstat.nr_isolated_anon
32446 +0.2% 32503 -0.1% 32417
proc-vmstat.nr_kernel_stack
26576 ± 5% +0.8% 26775 ± 3% +0.8% 26789 ± 3%
proc-vmstat.nr_mapped
288.17 ± 70% -50.0% 144.00 ±141% -25.0% 216.12 ±100%
proc-vmstat.nr_mlock
1572 ± 2% -0.7% 1561 ± 2% +1.2% 1591
proc-vmstat.nr_page_table_pages
121898 ± 2% +0.7% 122709 +1.2% 123369
proc-vmstat.nr_shmem
33325 +0.2% 33396 +0.3% 33422
proc-vmstat.nr_slab_reclaimable
73681 +0.2% 73822 ± 2% +0.5% 74021
proc-vmstat.nr_slab_unreclaimable
295423 -0.0% 295401 +0.0% 295426
proc-vmstat.nr_unevictable
106385 +0.7% 107144 +1.2% 107704
proc-vmstat.nr_zone_active_anon
123072 -0.2% 122836 +0.3% 123494
proc-vmstat.nr_zone_inactive_anon
295423 -0.0% 295401 +0.0% 295426
proc-vmstat.nr_zone_unevictable
31372 ± 11% +11.2% 34899 ± 7% +17.1% 36729 ± 13%
proc-vmstat.numa_hint_faults
29707 ± 10% +10.9% 32937 ± 8% +10.0% 32664 ± 8%
proc-vmstat.numa_hint_faults_local
1395571 +0.2% 1398636 +0.7% 1404902
proc-vmstat.numa_hit
408.50 ± 8% +6.4% 434.50 ± 5% +2.2% 417.38 ± 4%
proc-vmstat.numa_huge_pte_updates
0.00 -100.0% 0.00 -100.0% 0.00
proc-vmstat.numa_interleave
1135859 +0.3% 1138874 +0.8% 1145429
proc-vmstat.numa_local
259712 +0.0% 259762 -0.1% 259473
proc-vmstat.numa_other
15734 ± 80% -5.3% 14907 ±111% -14.0% 13530 ± 70%
proc-vmstat.numa_pages_migrated
419338 ± 4% +2.7% 430486 ± 3% +2.8% 431171 ± 3%
proc-vmstat.numa_pte_updates
171894 ± 2% +0.6% 172952 +1.0% 173691
proc-vmstat.pgactivate
0.00 -100.0% 0.00 -100.0% 0.00
proc-vmstat.pgalloc_dma
0.00 -100.0% 0.00 -100.0% 0.00
proc-vmstat.pgalloc_dma32
1525449 -0.1% 1524042 +0.1% 1527702
proc-vmstat.pgalloc_normal
1359120 +0.2% 1362055 +0.6% 1367516
proc-vmstat.pgfault
1388637 ± 5% -1.8% 1364025 ± 6% +1.1% 1403866 ± 4%
proc-vmstat.pgfree
15734 ± 80% -5.3% 14907 ±111% -14.0% 13530 ± 70%
proc-vmstat.pgmigrate_success
0.00 -100.0% 0.00 -100.0% 0.00
proc-vmstat.pgpgin
0.00 -100.0% 0.00 -100.0% 0.00
proc-vmstat.pgpgout
64986 -0.8% 64485 +0.3% 65191
proc-vmstat.pgreuse
149.83 +0.7% 150.83 ± 2% -0.1% 149.75
proc-vmstat.thp_collapse_alloc
9.00 ±141% +0.0% 9.00 ±141% -62.5% 3.38 ±264%
proc-vmstat.thp_deferred_split_page
57.00 +0.6% 57.33 +0.4% 57.25
proc-vmstat.thp_fault_alloc
9.00 ±141% +0.0% 9.00 ±141% -62.5% 3.38 ±264%
proc-vmstat.thp_split_pmd
0.00 -100.0% 0.00 -100.0% 0.00
proc-vmstat.thp_zero_page_alloc
82.00 ± 49% -35.2% 53.17 ± 76% -17.7% 67.50 ± 64%
proc-vmstat.unevictable_pgs_culled
390.67 ± 70% -50.0% 195.33 ±141% -25.0% 293.00 ±100%
proc-vmstat.unevictable_pgs_mlocked
0.03 ± 23% +20.0% 0.04 ± 25% +15.6% 0.04 ± 32%
perf-stat.i.MPKI
9.582e+10 +0.9% 9.666e+10 +0.4% 9.625e+10
perf-stat.i.branch-instructions
0.20 -0.0 0.19 -0.0 0.19
perf-stat.i.branch-miss-rate%
1.852e+08 -5.3% 1.754e+08 -5.5% 1.75e+08
perf-stat.i.branch-misses
15.60 ± 3% -0.6 15.04 -0.4 15.21
perf-stat.i.cache-miss-rate%
1235422 ± 5% -1.2% 1220958 ± 4% -1.3% 1219236 ± 3%
perf-stat.i.cache-misses
7939113 ± 3% +2.5% 8136349 ± 6% +0.9% 8008943 ± 4%
perf-stat.i.cache-references
2078 -0.2% 2073 +1.4% 2108
perf-stat.i.context-switches
0.90 +0.4% 0.90 +0.3% 0.90 perf-stat.i.cpi
191995 +0.0% 191996 +0.0% 192035
perf-stat.i.cpu-clock
5.552e+11 -0.1% 5.544e+11 -0.0% 5.551e+11
perf-stat.i.cpu-cycles
259.22 -0.7% 257.42 -0.3% 258.40
perf-stat.i.cpu-migrations
607765 ± 6% +1.3% 615930 ± 7% +2.7% 624235 ± 5%
perf-stat.i.cycles-between-cache-misses
0.00 ± 26% +0.0 0.00 ± 27% +0.0 0.00 ± 34%
perf-stat.i.dTLB-load-miss-rate%
569436 ± 6% +11.2% 633136 ± 4% +6.4% 605877 ± 5%
perf-stat.i.dTLB-load-misses
1.485e+11 -0.6% 1.477e+11 -0.3% 1.48e+11
perf-stat.i.dTLB-loads
0.00 ± 9% +0.0 0.00 ± 15% +0.0 0.00 ± 19%
perf-stat.i.dTLB-store-miss-rate%
153239 ± 13% +4.9% 160805 +5.3% 161320
perf-stat.i.dTLB-store-misses
1.033e+11 -3.2% 1e+11 -3.1% 1e+11
perf-stat.i.dTLB-stores
99.01 +0.2 99.17 +0.0 99.05
perf-stat.i.iTLB-load-miss-rate%
2.455e+08 ± 17% -24.0% 1.867e+08 ± 3% -32.5% 1.657e+08 ± 3%
perf-stat.i.iTLB-load-misses
1719010 ± 11% -29.0% 1221344 ± 11% -24.4% 1300018 ± 7%
perf-stat.i.iTLB-loads
6.203e+11 -0.4% 6.175e+11 -0.3% 6.186e+11
perf-stat.i.instructions
2975 ± 9% +11.5% 3318 ± 3% +25.9% 3747 ± 3%
perf-stat.i.instructions-per-iTLB-miss
1.12 -0.3% 1.11 -0.3% 1.11 perf-stat.i.ipc
2.13 ± 18% -6.2% 2.00 ± 4% -0.0% 2.13 ± 18%
perf-stat.i.major-faults
2.89 -0.1% 2.89 -0.0% 2.89
perf-stat.i.metric.GHz
1.41 ± 7% +3.9% 1.46 ± 2% +3.0% 1.45
perf-stat.i.metric.K/sec
1810 -0.9% 1793 -1.0% 1792
perf-stat.i.metric.M/sec
4354 +0.3% 4368 +0.6% 4382
perf-stat.i.minor-faults
90.38 -0.1 90.26 -0.1 90.26
perf-stat.i.node-load-miss-rate%
270733 ± 3% -0.8% 268656 +1.5% 274763 ± 3%
perf-stat.i.node-load-misses
186483 ± 10% -1.5% 183640 ± 4% -1.6% 183465 ± 17%
perf-stat.i.node-loads
94.16 +0.1 94.31 +0.2 94.32
perf-stat.i.node-store-miss-rate%
98285 ± 3% -1.1% 97165 ± 3% +0.0% 98319 ± 4%
perf-stat.i.node-store-misses
15077 ± 19% -4.3% 14429 ± 18% -6.5% 14098 ± 12%
perf-stat.i.node-stores
4356 +0.3% 4370 +0.6% 4384
perf-stat.i.page-faults
191995 +0.0% 191996 +0.0% 192035
perf-stat.i.task-clock
0.01 ± 3% +2.8% 0.01 ± 6% +1.2% 0.01 ± 4%
perf-stat.overall.MPKI
0.19 -0.0 0.18 -0.0 0.18
perf-stat.overall.branch-miss-rate%
15.62 ± 2% -0.5 15.17 ± 2% -0.3 15.31 ± 3%
perf-stat.overall.cache-miss-rate%
0.90 +0.3% 0.90 +0.3% 0.90
perf-stat.overall.cpi
441721 ± 5% +0.5% 444092 ± 4% +1.1% 446479 ± 3%
perf-stat.overall.cycles-between-cache-misses
0.00 ± 7% +0.0 0.00 ± 4% +0.0 0.00 ± 6%
perf-stat.overall.dTLB-load-miss-rate%
0.00 ± 13% +0.0 0.00 +0.0 0.00
perf-stat.overall.dTLB-store-miss-rate%
99.28 +0.1 99.35 -0.1 99.22
perf-stat.overall.iTLB-load-miss-rate%
2622 ± 20% +26.3% 3312 ± 3% +42.5% 3736 ± 3%
perf-stat.overall.instructions-per-iTLB-miss
1.12 -0.3% 1.11 -0.3% 1.11
perf-stat.overall.ipc
56.57 ± 2% -0.5 56.09 ± 2% +0.9 57.46 ± 8%
perf-stat.overall.node-load-miss-rate%
86.57 ± 2% +0.4 86.95 ± 2% +0.8 87.34 ± 2%
perf-stat.overall.node-store-miss-rate%
281289 +3.9% 292341 +3.5% 291165
perf-stat.overall.path-length
9.55e+10 +0.9% 9.633e+10 +0.4% 9.59e+10
perf-stat.ps.branch-instructions
1.846e+08 -5.3% 1.748e+08 -5.5% 1.743e+08
perf-stat.ps.branch-misses
1255953 ± 5% -0.7% 1246710 ± 4% -1.2% 1240641 ± 3%
perf-stat.ps.cache-misses
8035643 ± 3% +2.4% 8226303 ± 6% +0.9% 8110209 ± 4%
perf-stat.ps.cache-references
2068 -0.2% 2064 +1.4% 2098
perf-stat.ps.context-switches
191354 +0.0% 191356 +0.0% 191354
perf-stat.ps.cpu-clock
5.533e+11 -0.1% 5.525e+11 -0.0% 5.531e+11
perf-stat.ps.cpu-cycles
258.09 -0.6% 256.53 -0.3% 257.24
perf-stat.ps.cpu-migrations
570402 ± 7% +11.5% 635806 ± 4% +7.4% 612746 ± 6%
perf-stat.ps.dTLB-load-misses
1.48e+11 -0.6% 1.472e+11 -0.4% 1.475e+11
perf-stat.ps.dTLB-loads
153008 ± 13% +4.9% 160538 +5.3% 161063
perf-stat.ps.dTLB-store-misses
1.029e+11 -3.2% 9.966e+10 -3.1% 9.969e+10
perf-stat.ps.dTLB-stores
2.445e+08 ± 17% -23.9% 1.86e+08 ± 3% -32.4% 1.652e+08 ± 3%
perf-stat.ps.iTLB-load-misses
1714242 ± 11% -29.0% 1216775 ± 11% -24.5% 1294893 ± 7%
perf-stat.ps.iTLB-loads
6.182e+11 -0.4% 6.154e+11 -0.3% 6.164e+11
perf-stat.ps.instructions
2.12 ± 18% -6.2% 1.99 ± 4% -0.0% 2.12 ± 18%
perf-stat.ps.major-faults
4355 +0.3% 4367 +0.7% 4385
perf-stat.ps.minor-faults
270103 ± 3% -0.8% 268012 +1.6% 274327 ± 3%
perf-stat.ps.node-load-misses
207587 ± 5% +1.2% 210176 ± 6% -1.1% 205227 ± 16%
perf-stat.ps.node-loads
98059 ± 3% -1.2% 96927 ± 3% -0.0% 98039 ± 4%
perf-stat.ps.node-store-misses
15229 ± 19% -4.3% 14575 ± 18% -6.9% 14175 ± 12%
perf-stat.ps.node-stores
4357 +0.3% 4369 +0.7% 4387
perf-stat.ps.page-faults
191354 +0.0% 191356 +0.0% 191354
perf-stat.ps.task-clock
1.87e+14 -0.4% 1.861e+14 -0.3% 1.865e+14
perf-stat.total.instructions
40037 ±193% -80.8% 7697 ± 58% -60.0% 16010 ±178%
numa-meminfo.node0.Active
40037 ±193% -80.8% 7697 ± 58% -60.0% 16010 ±178%
numa-meminfo.node0.Active(anon)
77851 ± 72% -20.0% 62301 ± 68% +43.4% 111673 ± 44%
numa-meminfo.node0.AnonHugePages
112119 ± 61% -14.9% 95441 ± 59% +43.7% 161085 ± 39%
numa-meminfo.node0.AnonPages
180432 ± 44% -0.6% 179398 ± 77% +51.6% 273489 ± 58%
numa-meminfo.node0.AnonPages.max
342321 ± 24% -13.5% 296200 -8.5% 313362 ± 10%
numa-meminfo.node0.FilePages
122837 ± 52% -19.4% 98955 ± 59% +34.4% 165051 ± 37%
numa-meminfo.node0.Inactive
122837 ± 52% -19.4% 98955 ± 59% +34.4% 165051 ± 37%
numa-meminfo.node0.Inactive(anon)
30053 ± 17% -9.9% 27074 ± 12% +12.5% 33814 ± 29%
numa-meminfo.node0.KReclaimable
9328 ± 4% -10.2% 8378 ± 5% -3.1% 9039 ± 9%
numa-meminfo.node0.KernelStack
23813 ± 34% -18.7% 19362 ± 9% -15.5% 20130 ± 11%
numa-meminfo.node0.Mapped
48212518 +0.2% 48303244 -0.0% 48196647
numa-meminfo.node0.MemFree
49156876 +0.0% 49156876 +0.0% 49156876
numa-meminfo.node0.MemTotal
944356 ± 8% -9.6% 853630 ± 8% +1.7% 960227 ± 9%
numa-meminfo.node0.MemUsed
244.67 ± 70% -49.7% 123.00 ±141% -23.6% 187.00 ±100%
numa-meminfo.node0.Mlocked
1209 ± 21% -11.2% 1074 ± 31% +45.0% 1754 ± 42%
numa-meminfo.node0.PageTables
30053 ± 17% -9.9% 27074 ± 12% +12.5% 33814 ± 29%
numa-meminfo.node0.SReclaimable
86869 ± 14% -9.4% 78720 ± 14% -3.4% 83931 ± 14%
numa-meminfo.node0.SUnreclaim
50827 ±171% -77.8% 11290 ± 40% -60.6% 20026 ±155%
numa-meminfo.node0.Shmem
116923 ± 13% -9.5% 105795 ± 11% +0.7% 117745 ± 16%
numa-meminfo.node0.Slab
291494 ± 3% -2.3% 284909 +0.6% 293338 ± 5%
numa-meminfo.node0.Unevictable
20248 ±163% +5.3% 21319 ±160% -20.5% 16092 ±182%
numa-meminfo.node1.Active
20248 ±163% +5.3% 21319 ±160% -20.5% 16092 ±182%
numa-meminfo.node1.Active(anon)
55706 ± 75% +79.1% 99793 ± 58% +27.3% 70933 ± 68%
numa-meminfo.node1.AnonHugePages
94298 ± 53% +50.5% 141885 ± 51% +10.3% 104016 ± 58%
numa-meminfo.node1.AnonPages
186072 ± 68% +17.4% 218444 ± 50% +24.5% 231571 ± 58%
numa-meminfo.node1.AnonPages.max
322944 ± 14% +0.0% 323081 ± 15% -1.9% 316668 ± 11%
numa-meminfo.node1.FilePages
97848 ± 53% +50.5% 147262 ± 48% +16.9% 114348 ± 52%
numa-meminfo.node1.Inactive
97848 ± 53% +50.5% 147262 ± 48% +16.9% 114348 ± 52%
numa-meminfo.node1.Inactive(anon)
36663 ± 34% -14.1% 31485 ± 36% -27.9% 26448 ± 17%
numa-meminfo.node1.KReclaimable
7925 ± 7% +7.8% 8543 ± 10% -0.9% 7855 ± 9%
numa-meminfo.node1.KernelStack
19429 ± 11% +2.2% 19855 ± 7% +19.8% 23268 ± 12%
numa-meminfo.node1.Mapped
48666212 -0.1% 48623218 +0.0% 48678601
numa-meminfo.node1.MemFree
49534456 +0.0% 49534456 +0.0% 49534456
numa-meminfo.node1.MemTotal
868242 ± 13% +5.0% 911236 ± 6% -1.4% 855853 ± 8%
numa-meminfo.node1.MemUsed
246.00 ± 70% -49.8% 123.50 ±141% -12.0% 216.50 ±104%
numa-meminfo.node1.Mlocked
1950 ± 51% -10.4% 1747 ± 52% -37.7% 1214 ± 17%
numa-meminfo.node1.PageTables
36663 ± 34% -14.1% 31485 ± 36% -27.9% 26448 ± 17%
numa-meminfo.node1.SReclaimable
71197 ± 20% +4.9% 74705 ± 10% -6.4% 66674 ± 12%
numa-meminfo.node1.SUnreclaim
23869 ±155% +12.0% 26735 ±134% +9.8% 26201 ±122%
numa-meminfo.node1.Shmem
107861 ± 25% -1.5% 106191 ± 14% -13.7% 93124 ± 10%
numa-meminfo.node1.Slab
299074 ± 5% -0.9% 296346 ± 5% -2.9% 290498 ± 2%
numa-meminfo.node1.Unevictable
8982 ±100% -41.3% 5271 ± 80% -55.5% 3995 ± 36%
numa-meminfo.node2.Active
8982 ±100% -41.3% 5271 ± 80% -55.5% 3995 ± 36%
numa-meminfo.node2.Active(anon)
103304 ± 58% -50.0% 51662 ± 75% -58.4% 43025 ± 84%
numa-meminfo.node2.AnonHugePages
147906 ± 47% -43.4% 83659 ± 59% -47.9% 77093 ± 58%
numa-meminfo.node2.AnonPages
296653 ± 52% -42.6% 170244 ± 77% -48.3% 153314 ± 65%
numa-meminfo.node2.AnonPages.max
316927 ± 5% -2.8% 308110 ± 4% -3.6% 305670 ± 6%
numa-meminfo.node2.FilePages
154525 ± 44% -40.2% 92366 ± 53% -47.3% 81482 ± 52%
numa-meminfo.node2.Inactive
154525 ± 44% -40.2% 92366 ± 53% -47.3% 81482 ± 52%
numa-meminfo.node2.Inactive(anon)
37460 ± 22% -14.5% 32039 ± 32% -5.1% 35533 ± 27%
numa-meminfo.node2.KReclaimable
7866 ± 13% -6.4% 7362 ± 6% +1.4% 7977 ± 10%
numa-meminfo.node2.KernelStack
21518 ± 17% +7.3% 23094 ± 4% -3.6% 20744 ± 11%
numa-meminfo.node2.Mapped
48610105 +0.2% 48721446 +0.2% 48716859
numa-meminfo.node2.MemFree
49534460 +0.0% 49534460 +0.0% 49534460
numa-meminfo.node2.MemTotal
924353 ± 8% -12.0% 813012 ± 9% -11.5% 817599 ± 8%
numa-meminfo.node2.MemUsed
330.83 ± 77% -38.1% 204.67 ±141% -25.6% 246.12 ±105%
numa-meminfo.node2.Mlocked
1817 ± 57% -31.9% 1238 ± 61% +10.1% 2001 ± 43%
numa-meminfo.node2.PageTables
37460 ± 22% -14.5% 32039 ± 32% -5.1% 35533 ± 27%
numa-meminfo.node2.SReclaimable
73467 ± 24% -10.2% 65958 ± 14% -5.4% 69481 ± 14%
numa-meminfo.node2.SUnreclaim
15755 ± 58% -10.2% 14141 ± 29% -45.9% 8523 ± 55%
numa-meminfo.node2.Shmem
110927 ± 23% -11.7% 97998 ± 19% -5.3% 105015 ± 16%
numa-meminfo.node2.Slab
301255 ± 5% -2.4% 294050 ± 5% -1.3% 297206 ± 5%
numa-meminfo.node2.Unevictable
356390 ± 29% +10.8% 394733 ± 8% +10.7% 394618 ± 8%
numa-meminfo.node3.Active
356390 ± 29% +10.8% 394733 ± 8% +10.7% 394618 ± 8%
numa-meminfo.node3.Active(anon)
41357 ± 39% +49.0% 61603 ± 85% +22.4% 50625 ± 79%
numa-meminfo.node3.AnonHugePages
76088 ± 29% +42.1% 108092 ± 60% +16.9% 88936 ± 61%
numa-meminfo.node3.AnonPages
171664 ± 11% +20.9% 207550 ± 32% +46.1% 250860 ± 52%
numa-meminfo.node3.AnonPages.max
686790 ± 16% +8.5% 744949 ± 6% +7.6% 739318 ± 6%
numa-meminfo.node3.FilePages
116554 ± 14% +30.3% 151914 ± 41% +14.0% 132909 ± 42%
numa-meminfo.node3.Inactive
116554 ± 14% +30.3% 151914 ± 41% +14.0% 132909 ± 42%
numa-meminfo.node3.Inactive(anon)
29122 ± 32% +47.6% 42988 ± 28% +30.1% 37889 ± 16%
numa-meminfo.node3.KReclaimable
7319 ± 5% +12.3% 8218 ± 8% +3.0% 7536 ± 9%
numa-meminfo.node3.KernelStack
40789 ± 21% +5.7% 43098 ± 8% +5.5% 43022 ± 10%
numa-meminfo.node3.Mapped
48318561 -0.2% 48208048 -0.2% 48210419
numa-meminfo.node3.MemFree
49489200 -0.0% 49489196 -0.0% 49489196
numa-meminfo.node3.MemTotal
1170637 ± 9% +9.4% 1281146 ± 2% +9.2% 1278775 ± 7%
numa-meminfo.node3.MemUsed
331.17 ± 77% -62.1% 125.50 ±141% -35.0% 215.25 ±105%
numa-meminfo.node3.Mlocked
1316 ± 56% +66.4% 2191 ± 43% +6.1% 1397 ± 43%
numa-meminfo.node3.PageTables
29122 ± 32% +47.6% 42988 ± 28% +30.1% 37889 ± 16%
numa-meminfo.node3.SReclaimable
63184 ± 14% +20.1% 75893 ± 13% +20.3% 75989 ± 15%
numa-meminfo.node3.SUnreclaim
397006 ± 29% +10.5% 438649 ± 8% +10.5% 438686 ± 9%
numa-meminfo.node3.Shmem
92306 ± 20% +28.8% 118882 ± 18% +23.4% 113880 ± 13%
numa-meminfo.node3.Slab
289867 ± 2% +5.7% 306302 ± 5% +3.7% 300663 ± 5%
numa-meminfo.node3.Unevictable
9963 ±193% -80.7% 1922 ± 58% -59.9% 3993 ±177%
numa-vmstat.node0.nr_active_anon
28034 ± 61% -14.8% 23874 ± 59% +43.6% 40270 ± 39%
numa-vmstat.node0.nr_anon_pages
37.50 ± 74% -20.0% 30.00 ± 69% +43.7% 53.88 ± 45%
numa-vmstat.node0.nr_anon_transparent_hugepages
85575 ± 24% -13.5% 74048 -8.5% 78339 ± 10%
numa-vmstat.node0.nr_file_pages
47478 +0.0% 47478 +0.0% 47478
numa-vmstat.node0.nr_free_cma
12053119 +0.2% 12075759 -0.0% 12049213
numa-vmstat.node0.nr_free_pages
30755 ± 52% -19.5% 24753 ± 59% +34.2% 41269 ± 37%
numa-vmstat.node0.nr_inactive_anon
9328 ± 4% -10.2% 8377 ± 5% -3.1% 9040 ± 9%
numa-vmstat.node0.nr_kernel_stack
6036 ± 35% -19.4% 4866 ± 10% -16.1% 5064 ± 10%
numa-vmstat.node0.nr_mapped
60.83 ± 70% -49.6% 30.67 ±141% -23.6% 46.50 ±100%
numa-vmstat.node0.nr_mlock
301.67 ± 22% -11.4% 267.17 ± 31% +45.3% 438.25 ± 42%
numa-vmstat.node0.nr_page_table_pages
12702 ±171% -77.8% 2820 ± 40% -60.6% 5005 ±155%
numa-vmstat.node0.nr_shmem
7512 ± 17% -9.9% 6768 ± 12% +12.5% 8453 ± 29%
numa-vmstat.node0.nr_slab_reclaimable
21716 ± 14% -9.4% 19679 ± 14% -3.4% 20982 ± 14%
numa-vmstat.node0.nr_slab_unreclaimable
72873 ± 3% -2.3% 71227 +0.6% 73334 ± 5%
numa-vmstat.node0.nr_unevictable
9962 ±193% -80.7% 1922 ± 58% -59.9% 3993 ±177%
numa-vmstat.node0.nr_zone_active_anon
30755 ± 52% -19.5% 24753 ± 59% +34.2% 41269 ± 37%
numa-vmstat.node0.nr_zone_inactive_anon
72873 ± 3% -2.3% 71227 +0.6% 73334 ± 5%
numa-vmstat.node0.nr_zone_unevictable
663066 ± 10% -7.0% 616376 ± 9% +3.6% 687002 ± 14%
numa-vmstat.node0.numa_hit
88175 +0.1% 88283 +0.2% 88323
numa-vmstat.node0.numa_interleave
579829 ± 12% -14.1% 498057 ± 17% +2.8% 596120 ± 21%
numa-vmstat.node0.numa_local
83236 ± 11% +42.1% 118318 ± 33% +9.2% 90882 ± 62%
numa-vmstat.node0.numa_other
5040 ±163% +5.3% 5308 ±160% -20.3% 4016 ±182%
numa-vmstat.node1.nr_active_anon
23584 ± 53% +50.5% 35484 ± 51% +10.2% 25995 ± 58%
numa-vmstat.node1.nr_anon_pages
26.83 ± 77% +80.1% 48.33 ± 58% +26.7% 34.00 ± 69%
numa-vmstat.node1.nr_anon_transparent_hugepages
80736 ± 14% +0.0% 80773 ± 15% -1.9% 79174 ± 11%
numa-vmstat.node1.nr_file_pages
12166529 -0.1% 12155748 +0.0% 12169702
numa-vmstat.node1.nr_free_pages
24493 ± 53% +50.5% 36851 ± 48% +16.7% 28591 ± 52%
numa-vmstat.node1.nr_inactive_anon
0.00 -100.0% 0.00 -100.0% 0.00
numa-vmstat.node1.nr_isolated_anon
7926 ± 7% +7.8% 8541 ± 10% -0.9% 7854 ± 9%
numa-vmstat.node1.nr_kernel_stack
4939 ± 13% +2.6% 5065 ± 6% +19.0% 5879 ± 13%
numa-vmstat.node1.nr_mapped
61.17 ± 70% -49.6% 30.83 ±141% -11.7% 54.00 ±104%
numa-vmstat.node1.nr_mlock
487.33 ± 51% -10.6% 435.83 ± 52% -37.9% 302.88 ± 17%
numa-vmstat.node1.nr_page_table_pages
5967 ±155% +12.0% 6686 ±134% +9.9% 6557 ±122%
numa-vmstat.node1.nr_shmem
9165 ± 34% -14.1% 7871 ± 36% -27.9% 6611 ± 17%
numa-vmstat.node1.nr_slab_reclaimable
17798 ± 20% +4.9% 18676 ± 10% -6.4% 16668 ± 12%
numa-vmstat.node1.nr_slab_unreclaimable
74768 ± 5% -0.9% 74086 ± 5% -2.9% 72624 ± 2%
numa-vmstat.node1.nr_unevictable
5040 ±163% +5.3% 5308 ±160% -20.3% 4016 ±182%
numa-vmstat.node1.nr_zone_active_anon
24493 ± 53% +50.5% 36851 ± 48% +16.7% 28591 ± 52%
numa-vmstat.node1.nr_zone_inactive_anon
74768 ± 5% -0.9% 74086 ± 5% -2.9% 72624 ± 2%
numa-vmstat.node1.nr_zone_unevictable
717068 ± 16% +3.5% 742115 ± 9% -8.8% 653654 ± 7%
numa-vmstat.node1.numa_hit
88289 -0.1% 88177 -0.2% 88153
numa-vmstat.node1.numa_interleave
570109 ± 25% +2.5% 584147 ± 14% -10.2% 512103 ± 11%
numa-vmstat.node1.numa_local
146958 ± 21% +7.5% 157966 ± 19% -3.7% 141550 ± 32%
numa-vmstat.node1.numa_other
2245 ±100% -41.4% 1316 ± 80% -55.6% 997.88 ± 36%
numa-vmstat.node2.nr_active_anon
36978 ± 47% -43.4% 20921 ± 59% -47.9% 19265 ± 58%
numa-vmstat.node2.nr_anon_pages
50.17 ± 59% -50.5% 24.83 ± 77% -58.9% 20.62 ± 87%
numa-vmstat.node2.nr_anon_transparent_hugepages
79232 ± 5% -2.8% 77026 ± 4% -3.6% 76416 ± 6%
numa-vmstat.node2.nr_file_pages
12152515 +0.2% 12180308 +0.2% 12179271
numa-vmstat.node2.nr_free_pages
38633 ± 44% -40.2% 23098 ± 53% -47.3% 20361 ± 52%
numa-vmstat.node2.nr_inactive_anon
0.00 -100.0% 0.00 -100.0% 0.00
numa-vmstat.node2.nr_isolated_anon
7865 ± 13% -6.4% 7363 ± 6% +1.4% 7977 ± 10%
numa-vmstat.node2.nr_kernel_stack
5422 ± 17% +7.9% 5848 ± 5% -3.2% 5249 ± 11%
numa-vmstat.node2.nr_mapped
82.33 ± 77% -37.9% 51.17 ±141% -25.5% 61.38 ±105%
numa-vmstat.node2.nr_mlock
453.33 ± 58% -31.8% 309.17 ± 60% +10.1% 499.25 ± 43%
numa-vmstat.node2.nr_page_table_pages
3939 ± 58% -10.3% 3534 ± 29% -45.9% 2130 ± 55%
numa-vmstat.node2.nr_shmem
9364 ± 22% -14.5% 8009 ± 32% -5.1% 8883 ± 27%
numa-vmstat.node2.nr_slab_reclaimable
18365 ± 24% -10.2% 16489 ± 14% -5.4% 17370 ± 14%
numa-vmstat.node2.nr_slab_unreclaimable
75313 ± 5% -2.4% 73512 ± 5% -1.3% 74301 ± 5%
numa-vmstat.node2.nr_unevictable
2245 ±100% -41.4% 1316 ± 80% -55.6% 997.88 ± 36%
numa-vmstat.node2.nr_zone_active_anon
38633 ± 44% -40.2% 23098 ± 53% -47.3% 20361 ± 52%
numa-vmstat.node2.nr_zone_inactive_anon
75313 ± 5% -2.4% 73512 ± 5% -1.3% 74301 ± 5%
numa-vmstat.node2.nr_zone_unevictable
723084 ± 14% -12.0% 636321 ± 13% -5.7% 681655 ± 16%
numa-vmstat.node2.numa_hit
88159 +0.1% 88266 +0.2% 88314
numa-vmstat.node2.numa_interleave
565999 ± 23% -15.4% 479036 ± 16% -8.3% 519168 ± 22%
numa-vmstat.node2.numa_local
157085 ± 20% +0.1% 157285 ± 20% +3.4% 162486 ± 16%
numa-vmstat.node2.numa_other
89005 ± 29% +10.7% 98558 ± 8% +10.9% 98663 ± 9%
numa-vmstat.node3.nr_active_anon
19031 ± 29% +42.1% 27048 ± 60% +16.7% 22210 ± 61%
numa-vmstat.node3.nr_anon_pages
19.67 ± 40% +50.0% 29.50 ± 86% +22.7% 24.12 ± 81%
numa-vmstat.node3.nr_anon_transparent_hugepages
171780 ± 16% +8.4% 186266 ± 6% +7.7% 184963 ± 6%
numa-vmstat.node3.nr_file_pages
12079544 -0.2% 12051913 -0.2% 12052544
numa-vmstat.node3.nr_free_pages
29320 ± 14% +30.1% 38159 ± 41% +13.7% 33324 ± 42%
numa-vmstat.node3.nr_inactive_anon
7320 ± 5% +12.3% 8219 ± 8% +3.0% 7537 ± 9%
numa-vmstat.node3.nr_kernel_stack
10371 ± 20% +5.3% 10921 ± 8% +4.3% 10815 ± 9%
numa-vmstat.node3.nr_mapped
82.33 ± 77% -61.9% 31.33 ±141% -35.0% 53.50 ±105%
numa-vmstat.node3.nr_mlock
328.67 ± 57% +66.7% 548.00 ± 43% +6.3% 349.38 ± 43%
numa-vmstat.node3.nr_page_table_pages
99334 ± 29% +10.4% 109691 ± 8% +10.5% 109805 ± 9%
numa-vmstat.node3.nr_shmem
7279 ± 32% +47.6% 10746 ± 28% +30.1% 9473 ± 16%
numa-vmstat.node3.nr_slab_reclaimable
15795 ± 14% +20.1% 18973 ± 13% +20.3% 18997 ± 15%
numa-vmstat.node3.nr_slab_unreclaimable
72466 ± 2% +5.7% 76575 ± 5% +3.7% 75165 ± 5%
numa-vmstat.node3.nr_unevictable
89005 ± 29% +10.7% 98558 ± 8% +10.9% 98663 ± 9%
numa-vmstat.node3.nr_zone_active_anon
29320 ± 14% +30.1% 38159 ± 41% +13.7% 33324 ± 42%
numa-vmstat.node3.nr_zone_inactive_anon
72466 ± 2% +5.7% 76575 ± 5% +3.7% 75165 ± 5%
numa-vmstat.node3.nr_zone_unevictable
701454 ± 5% +13.4% 795761 ± 8% +15.1% 807375 ± 13%
numa-vmstat.node3.numa_hit
88273 -0.1% 88190 -0.1% 88156
numa-vmstat.node3.numa_interleave
535998 ± 11% +26.2% 676624 ± 12% +21.3% 650000 ± 18%
numa-vmstat.node3.numa_local
165455 ± 15% -28.0% 119136 ± 44% -4.9% 157374 ± 17%
numa-vmstat.node3.numa_other
0.00 +1.7e+11% 1671 ±222% +0.0% 0.00
sched_debug.cfs_rq:/.MIN_vruntime.avg
0.00 +3.2e+13% 320524 ±222% +0.0% 0.00
sched_debug.cfs_rq:/.MIN_vruntime.max
0.00 +0.0% 0.00 +0.0% 0.00
sched_debug.cfs_rq:/.MIN_vruntime.min
0.00 +2.3e+106% 23084 ±222% -100.0% 0.00
sched_debug.cfs_rq:/.MIN_vruntime.stddev
4812 ± 2% +8.8% 5234 ± 10% +0.8% 4852 ± 4%
sched_debug.cfs_rq:/.load.avg
16329 ± 6% +353.6% 74071 ±110% -0.2% 16295 ± 16%
sched_debug.cfs_rq:/.load.max
4480 -0.0% 4479 +0.1% 4486
sched_debug.cfs_rq:/.load.min
1554 ± 11% +302.9% 6263 ±105% +3.0% 1601 ± 26%
sched_debug.cfs_rq:/.load.stddev
7.77 ± 21% -6.0% 7.30 ± 10% -2.8% 7.55 ± 25%
sched_debug.cfs_rq:/.load_avg.avg
161.78 ± 33% -21.1% 127.72 ± 11% -13.4% 140.06 ± 22%
sched_debug.cfs_rq:/.load_avg.max
4.08 ± 4% +0.7% 4.11 ± 3% +1.0% 4.13 ± 2%
sched_debug.cfs_rq:/.load_avg.min
18.62 ± 33% -19.9% 14.92 ± 16% -11.6% 16.46 ± 39%
sched_debug.cfs_rq:/.load_avg.stddev
0.00 +1.7e+11% 1671 ±222% +0.0% 0.00
sched_debug.cfs_rq:/.max_vruntime.avg
0.00 +3.2e+13% 320524 ±222% +0.0% 0.00
sched_debug.cfs_rq:/.max_vruntime.max
0.00 +0.0% 0.00 +0.0% 0.00
sched_debug.cfs_rq:/.max_vruntime.min
0.00 +2.3e+106% 23084 ±222% -100.0% 0.00
sched_debug.cfs_rq:/.max_vruntime.stddev
30151526 +0.0% 30159826 +0.0% 30156543
sched_debug.cfs_rq:/.min_vruntime.avg
30272248 +0.0% 30280357 +0.0% 30280436
sched_debug.cfs_rq:/.min_vruntime.max
28657489 +0.3% 28730456 +0.2% 28701562
sched_debug.cfs_rq:/.min_vruntime.min
269246 ± 3% -1.7% 264700 ± 3% +1.0% 272005 ± 3%
sched_debug.cfs_rq:/.min_vruntime.stddev
0.84 +0.2% 0.84 +0.1% 0.84
sched_debug.cfs_rq:/.nr_running.avg
1.00 +5.6% 1.06 ± 7% +0.0% 1.00
sched_debug.cfs_rq:/.nr_running.max
0.83 +0.0% 0.83 -0.0% 0.83
sched_debug.cfs_rq:/.nr_running.min
0.04 ± 22% +14.4% 0.04 ± 21% +1.0% 0.04 ± 25%
sched_debug.cfs_rq:/.nr_running.stddev
0.87 ±102% -100.0% 0.00 -1.4% 0.86 ±133%
sched_debug.cfs_rq:/.removed.load_avg.avg
81.22 ±100% -100.0% 0.00 -10.5% 72.73 ±105%
sched_debug.cfs_rq:/.removed.load_avg.max
8.34 ±100% -100.0% 0.00 -9.1% 7.58 ±115%
sched_debug.cfs_rq:/.removed.load_avg.stddev
0.34 ±106% -100.0% 0.00 +5.1% 0.36 ±157%
sched_debug.cfs_rq:/.removed.runnable_avg.avg
34.58 ±107% -100.0% 0.00 -17.2% 28.65 ±135%
sched_debug.cfs_rq:/.removed.runnable_avg.max
3.33 ±105% -100.0% 0.00 -8.1% 3.06 ±140%
sched_debug.cfs_rq:/.removed.runnable_avg.stddev
0.34 ±106% -100.0% 0.00 +5.3% 0.36 ±157%
sched_debug.cfs_rq:/.removed.util_avg.avg
34.53 ±107% -100.0% 0.00 -17.0% 28.65 ±135%
sched_debug.cfs_rq:/.removed.util_avg.max
3.33 ±105% -100.0% 0.00 -8.0% 3.06 ±140%
sched_debug.cfs_rq:/.removed.util_avg.stddev
886.17 +0.5% 890.20 -0.2% 884.77
sched_debug.cfs_rq:/.runnable_avg.avg
1630 ± 4% -6.0% 1532 ± 3% -7.6% 1507 ± 4%
sched_debug.cfs_rq:/.runnable_avg.max
837.22 +0.2% 839.19 +0.1% 837.83
sched_debug.cfs_rq:/.runnable_avg.min
89.79 ± 6% -4.1% 86.14 ± 7% -11.2% 79.70 ± 12%
sched_debug.cfs_rq:/.runnable_avg.stddev
849594 ± 20% -0.5% 845568 ± 20% +8.0% 917741 ± 25%
sched_debug.cfs_rq:/.spread0.avg
967367 ± 18% -0.5% 962669 ± 17% +7.6% 1040804 ± 22%
sched_debug.cfs_rq:/.spread0.max
-647913 -9.3% -587649 -16.7% -540000
sched_debug.cfs_rq:/.spread0.min
269267 ± 3% -1.7% 264713 ± 3% +1.0% 271976 ± 3%
sched_debug.cfs_rq:/.spread0.stddev
881.32 +0.5% 885.57 -0.1% 880.35
sched_debug.cfs_rq:/.util_avg.avg
1118 -3.6% 1077 ± 2% -2.3% 1092 ± 3%
sched_debug.cfs_rq:/.util_avg.max
738.89 ± 2% -2.9% 717.39 ± 4% -0.9% 732.33 ± 6%
sched_debug.cfs_rq:/.util_avg.min
56.14 ± 6% +4.1% 58.42 ± 4% -4.4% 53.69 ± 18%
sched_debug.cfs_rq:/.util_avg.stddev
737.85 ± 10% -1.7% 725.63 ± 10% -1.6% 726.06 ± 15%
sched_debug.cfs_rq:/.util_est_enqueued.avg
1105 ± 7% +0.3% 1108 ± 6% +0.5% 1110 ± 11%
sched_debug.cfs_rq:/.util_est_enqueued.max
160.11 ± 89% +33.6% 213.94 ± 67% +37.4% 219.96 ± 79%
sched_debug.cfs_rq:/.util_est_enqueued.min
196.71 ± 13% -3.0% 190.78 ± 24% -15.2% 166.73 ± 30%
sched_debug.cfs_rq:/.util_est_enqueued.stddev
926930 ± 2% +0.3% 929573 -0.3% 924271 ± 2%
sched_debug.cpu.avg_idle.avg
1737117 ± 14% -7.8% 1602392 ± 4% -2.3% 1696759 ± 17%
sched_debug.cpu.avg_idle.max
563193 ± 14% -3.1% 545471 ± 35% +8.2% 609227 ± 11%
sched_debug.cpu.avg_idle.min
151329 ± 22% -16.0% 127076 ± 11% -15.5% 127856 ± 24%
sched_debug.cpu.avg_idle.stddev
189670 -0.1% 189486 +0.8% 191133
sched_debug.cpu.clock.avg
189707 -0.1% 189524 +0.8% 191171
sched_debug.cpu.clock.max
189633 -0.1% 189447 +0.8% 191096
sched_debug.cpu.clock.min
23.22 ± 4% +2.1% 23.70 ± 4% -1.1% 22.97 ± 4%
sched_debug.cpu.clock.stddev
187861 -0.1% 187701 +0.8% 189316
sched_debug.cpu.clock_task.avg
188071 -0.1% 187919 +0.8% 189567
sched_debug.cpu.clock_task.max
181097 -0.4% 180426 +0.1% 181346
sched_debug.cpu.clock_task.min
608.55 ± 29% +3.7% 630.96 ± 29% +12.6% 685.32 ± 4%
sched_debug.cpu.clock_task.stddev
3158 -0.1% 3154 -0.5% 3143
sched_debug.cpu.curr->pid.avg
8095 -15.4% 6849 ± 11% -13.1% 7037 ± 13%
sched_debug.cpu.curr->pid.max
2993 -0.2% 2988 -1.4% 2951
sched_debug.cpu.curr->pid.min
448.73 ± 6% -22.6% 347.12 ± 14% -17.7% 369.46 ± 21%
sched_debug.cpu.curr->pid.stddev
502808 -0.2% 501743 -0.2% 501734
sched_debug.cpu.max_idle_balance_cost.avg
582448 ± 5% -4.0% 559118 -1.2% 575671 ± 5%
sched_debug.cpu.max_idle_balance_cost.max
500000 +0.0% 500000 +0.0% 500000
sched_debug.cpu.max_idle_balance_cost.min
11566 ± 36% -26.5% 8501 ± 21% -22.2% 9002 ± 44%
sched_debug.cpu.max_idle_balance_cost.stddev
4294 -0.0% 4294 +0.0% 4294
sched_debug.cpu.next_balance.avg
4294 -0.0% 4294 +0.0% 4294
sched_debug.cpu.next_balance.max
4294 -0.0% 4294 +0.0% 4294
sched_debug.cpu.next_balance.min
0.00 ± 4% +0.9% 0.00 ± 4% +1.5% 0.00 ± 6%
sched_debug.cpu.next_balance.stddev
0.85 -0.0% 0.85 +0.0% 0.85
sched_debug.cpu.nr_running.avg
1.75 ± 4% +3.2% 1.81 ± 6% +1.2% 1.77 ± 6%
sched_debug.cpu.nr_running.max
0.83 +0.0% 0.83 -0.0% 0.83
sched_debug.cpu.nr_running.min
0.10 ± 7% +0.4% 0.10 ± 10% +0.6% 0.10 ± 15%
sched_debug.cpu.nr_running.stddev
3248 +0.1% 3250 +0.9% 3278
sched_debug.cpu.nr_switches.avg
25543 ± 8% +5.0% 26830 ± 8% +10.4% 28195 ± 20%
sched_debug.cpu.nr_switches.max
1406 ± 12% -7.5% 1300 ± 11% -3.1% 1363 ± 13%
sched_debug.cpu.nr_switches.min
3131 ± 2% +2.0% 3194 ± 4% +4.4% 3270 ± 7%
sched_debug.cpu.nr_switches.stddev
0.00 ± 20% +0.0% 0.00 ± 20% -25.0% 0.00 ± 62%
sched_debug.cpu.nr_uninterruptible.avg
186.75 ± 2% -2.3% 182.47 ± 2% -1.1% 184.77 ± 2%
sched_debug.cpu.nr_uninterruptible.max
-28.69 -5.3% -27.17 -22.6% -22.21
sched_debug.cpu.nr_uninterruptible.min
14.79 ± 2% -1.7% 14.53 ± 3% -2.6% 14.41 ± 2%
sched_debug.cpu.nr_uninterruptible.stddev
189633 -0.1% 189447 +0.8% 191096
sched_debug.cpu_clk
996147 +0.0% 996147 +0.0% 996147
sched_debug.dl_rq:.dl_bw->bw.avg
996147 +0.0% 996147 +0.0% 996147
sched_debug.dl_rq:.dl_bw->bw.max
996147 +0.0% 996147 +0.0% 996147
sched_debug.dl_rq:.dl_bw->bw.min
4.295e+09 -0.0% 4.295e+09 +0.0% 4.295e+09
sched_debug.jiffies
188761 -0.1% 188575 +0.8% 190224
sched_debug.ktime
950.00 +0.0% 950.00 +0.0% 950.00
sched_debug.rt_rq:/.rt_runtime.avg
950.00 +0.0% 950.00 +0.0% 950.00
sched_debug.rt_rq:/.rt_runtime.max
950.00 +0.0% 950.00 +0.0% 950.00
sched_debug.rt_rq:/.rt_runtime.min
0.00 ±223% -100.0% 0.00 +5867.4% 0.03 ±264%
sched_debug.rt_rq:/.rt_time.avg
0.00 ±223% -100.0% 0.00 +1.1e+05% 5.11 ±264%
sched_debug.rt_rq:/.rt_time.max
0.00 -100.0% 0.00 +1e+99% 0.00 ±264%
sched_debug.rt_rq:/.rt_time.min
0.00 ±223% -100.0% 0.00 +42516.9% 0.37 ±264%
sched_debug.rt_rq:/.rt_time.stddev
190985 -0.1% 190710 +0.3% 191484
sched_debug.sched_clk
1.00 +0.0% 1.00 +0.0% 1.00
sched_debug.sched_clock_stable()
4140603 +0.0% 4140603 +0.0% 4140603
sched_debug.sysctl_sched.sysctl_sched_features
24.00 +0.0% 24.00 +0.0% 24.00
sched_debug.sysctl_sched.sysctl_sched_latency
3.00 +0.0% 3.00 +0.0% 3.00
sched_debug.sysctl_sched.sysctl_sched_min_granularity
1.00 +0.0% 1.00 +0.0% 1.00
sched_debug.sysctl_sched.sysctl_sched_tunable_scaling
4.00 +0.0% 4.00 +0.0% 4.00
sched_debug.sysctl_sched.sysctl_sched_wakeup_granularity
17.05 -0.6 16.41 -0.5 16.50
perf-profile.calltrace.cycles-pp.__entry_text_start.syscall
4.78 -0.6 4.15 -0.6 4.20
perf-profile.calltrace.cycles-pp.try_grab_compound_head.gup_pgd_range.internal_get_user_pages_fast.get_futex_key.futex_wake
3.58 -0.2 3.40 -0.1 3.47
perf-profile.calltrace.cycles-pp.exit_to_user_mode_prepare.syscall_exit_to_user_mode.entry_SYSCALL_64_after_hwframe.syscall
5.50 -0.1 5.37 +0.1 5.58
perf-profile.calltrace.cycles-pp.syscall_exit_to_user_mode.entry_SYSCALL_64_after_hwframe.syscall
3.39 -0.1 3.29 -0.2 3.22
perf-profile.calltrace.cycles-pp.hash_futex.futex_wake.do_futex.__x64_sys_futex.do_syscall_64
3.26 -0.1 3.17 -0.1 3.20
perf-profile.calltrace.cycles-pp.syscall_return_via_sysret.syscall
1.19 -0.1 1.13 -0.1 1.13
perf-profile.calltrace.cycles-pp.entry_SYSCALL_64_safe_stack.syscall
98.66 -0.0 98.62 -0.0 98.65
perf-profile.calltrace.cycles-pp.syscall
2.03 -0.0 2.00 -0.0 1.99
perf-profile.calltrace.cycles-pp.get_user_pages_fast.get_futex_key.futex_wake.do_futex.__x64_sys_futex
0.91 -0.0 0.88 -0.0 0.90
perf-profile.calltrace.cycles-pp.rcu_nocb_flush_deferred_wakeup.exit_to_user_mode_prepare.syscall_exit_to_user_mode.entry_SYSCALL_64_after_hwframe.syscall
1.10 -0.0 1.08 -0.0 1.07
perf-profile.calltrace.cycles-pp.syscall_enter_from_user_mode.do_syscall_64.entry_SYSCALL_64_after_hwframe.syscall
0.00 +0.0 0.00 +3.2 3.22
perf-profile.calltrace.cycles-pp.page_mapping.gup_pgd_range.internal_get_user_pages_fast.get_futex_key.futex_wake
1.21 ± 5% +0.0 1.21 ± 7% -0.0 1.19 ± 3%
perf-profile.calltrace.cycles-pp.testcase
1.36 +0.1 1.46 +0.2 1.58
perf-profile.calltrace.cycles-pp.syscall_exit_to_user_mode_prepare.syscall_exit_to_user_mode.entry_SYSCALL_64_after_hwframe.syscall
74.52 +0.8 75.37 +0.7 75.25
perf-profile.calltrace.cycles-pp.entry_SYSCALL_64_after_hwframe.syscall
65.51 +1.0 66.56 +0.7 66.21
perf-profile.calltrace.cycles-pp.do_syscall_64.entry_SYSCALL_64_after_hwframe.syscall
63.23 +1.1 64.36 +0.8 64.02
perf-profile.calltrace.cycles-pp.__x64_sys_futex.do_syscall_64.entry_SYSCALL_64_after_hwframe.syscall
59.57 +1.3 60.82 +0.9 60.51
perf-profile.calltrace.cycles-pp.do_futex.__x64_sys_futex.do_syscall_64.entry_SYSCALL_64_after_hwframe.syscall
55.95 +1.5 57.40 +1.1 57.07
perf-profile.calltrace.cycles-pp.futex_wake.do_futex.__x64_sys_futex.do_syscall_64.entry_SYSCALL_64_after_hwframe
46.68 +1.8 48.51 +1.6 48.30
perf-profile.calltrace.cycles-pp.get_futex_key.futex_wake.do_futex.__x64_sys_futex.do_syscall_64
27.39 +2.2 29.63 +2.0 29.35
perf-profile.calltrace.cycles-pp.gup_pgd_range.internal_get_user_pages_fast.get_futex_key.futex_wake.do_futex
35.75 +2.2 37.99 +2.0 37.74
perf-profile.calltrace.cycles-pp.internal_get_user_pages_fast.get_futex_key.futex_wake.do_futex.__x64_sys_futex
0.00 +3.2 3.16 ± 2% +0.0 0.00
perf-profile.calltrace.cycles-pp.page_is_secretmem.gup_pgd_range.internal_get_user_pages_fast.get_futex_key.futex_wake
0.00 +3.2 3.19 ± 2% +0.0 0.00
perf-profile.calltrace.cycles-pp.page_mapping.page_is_secretmem.gup_pgd_range.internal_get_user_pages_fast.get_futex_key
4.82 -0.6 4.19 -0.6 4.24
perf-profile.children.cycles-pp.try_grab_compound_head
11.04 -0.4 10.62 -0.3 10.69
perf-profile.children.cycles-pp.__entry_text_start
9.38 -0.3 9.06 -0.3 9.13
perf-profile.children.cycles-pp.syscall_return_via_sysret
3.71 -0.2 3.51 -0.1 3.58
perf-profile.children.cycles-pp.exit_to_user_mode_prepare
5.90 -0.1 5.76 +0.1 5.98
perf-profile.children.cycles-pp.syscall_exit_to_user_mode
3.44 -0.1 3.35 -0.2 3.26
perf-profile.children.cycles-pp.hash_futex
1.27 -0.1 1.21 -0.1 1.21
perf-profile.children.cycles-pp.entry_SYSCALL_64_safe_stack
0.93 -0.0 0.90 -0.0 0.92
perf-profile.children.cycles-pp.rcu_nocb_flush_deferred_wakeup
1.11 -0.0 1.09 -0.0 1.09
perf-profile.children.cycles-pp.syscall_enter_from_user_mode
0.39 ± 2% -0.0 0.38 ± 5% -0.0 0.39 ± 4%
perf-profile.children.cycles-pp.tick_sched_handle
0.39 ± 3% -0.0 0.38 ± 4% -0.0 0.39 ± 4%
perf-profile.children.cycles-pp.update_process_times
0.21 ± 4% -0.0 0.20 ± 4% -0.0 0.21 ± 3%
perf-profile.children.cycles-pp.perf_tp_event
0.21 ± 4% -0.0 0.20 ± 4% -0.0 0.21 ± 3%
perf-profile.children.cycles-pp.perf_trace_sched_stat_runtime
0.22 ± 3% -0.0 0.21 ± 5% -0.0 0.22 ± 2%
perf-profile.children.cycles-pp.update_curr
2.19 -0.0 2.18 -0.0 2.17
perf-profile.children.cycles-pp.get_user_pages_fast
0.33 ± 2% -0.0 0.32 ± 3% -0.0 0.33 ± 3%
perf-profile.children.cycles-pp.scheduler_tick
0.20 ± 3% -0.0 0.19 ± 3% -0.0 0.20 ± 2%
perf-profile.children.cycles-pp.perf_event_output_forward
0.16 ± 4% -0.0 0.16 ± 3% -0.0 0.16 ± 3%
perf-profile.children.cycles-pp.perf_callchain
0.20 ± 3% -0.0 0.20 ± 4% -0.0 0.20 ± 2%
perf-profile.children.cycles-pp.perf_swevent_overflow
0.20 ± 3% -0.0 0.20 ± 4% -0.0 0.20 ± 2%
perf-profile.children.cycles-pp.__perf_event_overflow
0.30 ± 3% -0.0 0.30 ± 3% -0.0 0.30 ± 2%
perf-profile.children.cycles-pp.task_tick_fair
0.45 ± 2% -0.0 0.44 ± 3% +0.0 0.47 ± 3%
perf-profile.children.cycles-pp.tick_sched_timer
98.83 -0.0 98.82 -0.0 98.82
perf-profile.children.cycles-pp.syscall
0.16 ± 2% -0.0 0.16 ± 3% -0.0 0.16 ± 3%
perf-profile.children.cycles-pp.get_perf_callchain
0.17 ± 4% -0.0 0.17 ± 4% -0.0 0.17 ± 3%
perf-profile.children.cycles-pp.perf_prepare_sample
0.15 ± 2% -0.0 0.15 ± 3% -0.0 0.15 ± 3%
perf-profile.children.cycles-pp.perf_callchain_kernel
0.11 ± 6% -0.0 0.11 ± 3% +0.0 0.11 ± 4%
perf-profile.children.cycles-pp.unwind_next_frame
0.06 ± 8% -0.0 0.06 ± 9% -0.0 0.06 ± 8%
perf-profile.children.cycles-pp.__unwind_start
0.16 ± 3% +0.0 0.16 ± 3% -0.0 0.16 ± 3%
perf-profile.children.cycles-pp.__x86_indirect_thunk_rax
0.00 +0.0 0.00 +0.0 0.01 ±264%
perf-profile.children.cycles-pp.ksys_write
0.00 +0.0 0.00 +0.0 0.01 ±264%
perf-profile.children.cycles-pp.vfs_write
0.00 +0.0 0.00 +0.0 0.01 ±264%
perf-profile.children.cycles-pp.new_sync_write
0.00 +0.0 0.00 +0.0 0.01 ±264%
perf-profile.children.cycles-pp.irqtime_account_irq
1.32 ± 5% +0.0 1.32 ± 6% -0.0 1.30 ± 2%
perf-profile.children.cycles-pp.testcase
0.08 ± 17% +0.0 0.08 ± 11% +0.0 0.09 ± 12%
perf-profile.children.cycles-pp.clockevents_program_event
0.11 ± 16% +0.0 0.11 ± 9% +0.0 0.11 ± 13%
perf-profile.children.cycles-pp.ktime_get_update_offsets_now
0.12 ± 26% +0.0 0.12 ± 13% +0.0 0.14 ± 21%
perf-profile.children.cycles-pp.ktime_get
0.32 ± 4% +0.0 0.33 ± 3% +0.0 0.33 ± 5%
perf-profile.children.cycles-pp.pud_huge
0.00 +0.0 0.01 ±223% +0.0 0.01 ±173%
perf-profile.children.cycles-pp.perf_mux_hrtimer_handler
0.50 ± 3% +0.0 0.51 ± 3% +0.0 0.53 ± 2%
perf-profile.children.cycles-pp.__hrtimer_run_queues
0.71 ± 6% +0.0 0.72 ± 3% +0.1 0.76 ± 4%
perf-profile.children.cycles-pp.hrtimer_interrupt
0.71 ± 6% +0.0 0.72 ± 3% +0.1 0.76 ± 5%
perf-profile.children.cycles-pp.__sysvec_apic_timer_interrupt
0.77 ± 5% +0.0 0.78 ± 3% +0.1 0.82 ± 4%
perf-profile.children.cycles-pp.sysvec_apic_timer_interrupt
0.81 ± 6% +0.0 0.83 ± 3% +0.1 0.87 ± 4%
perf-profile.children.cycles-pp.asm_sysvec_apic_timer_interrupt
0.01 ±223% +0.0 0.03 ±102% +0.0 0.02 ±131%
perf-profile.children.cycles-pp.queue_event
0.02 ±142% +0.0 0.04 ± 72% +0.0 0.04 ± 77%
perf-profile.children.cycles-pp.__libc_start_main
0.02 ±142% +0.0 0.04 ± 72% +0.0 0.04 ± 77%
perf-profile.children.cycles-pp.main
0.02 ±142% +0.0 0.04 ± 72% +0.0 0.04 ± 77%
perf-profile.children.cycles-pp.run_builtin
0.01 ±223% +0.0 0.03 ±101% +0.0 0.03 ±102%
perf-profile.children.cycles-pp.ordered_events__queue
0.44 ± 8% +0.0 0.47 ± 2% +0.0 0.47 ± 4%
perf-profile.children.cycles-pp.pmd_huge
0.32 ± 6% +0.0 0.34 ± 21% +0.0 0.34 ± 24%
perf-profile.children.cycles-pp.syscall@plt
0.01 ±223% +0.0 0.04 ± 71% +0.0 0.04 ± 78%
perf-profile.children.cycles-pp.cmd_sched
0.02 ±144% +0.0 0.05 ± 48% +0.0 0.05 ± 60%
perf-profile.children.cycles-pp.cmd_record
0.01 ±223% +0.0 0.05 ± 48% +0.0 0.04 ± 61%
perf-profile.children.cycles-pp.process_simple
0.01 ±223% +0.0 0.05 ± 48% +0.0 0.05 ± 61%
perf-profile.children.cycles-pp.record__finish_output
0.01 ±223% +0.0 0.05 ± 48% +0.0 0.05 ± 61%
perf-profile.children.cycles-pp.perf_session__process_events
0.45 +0.1 0.51 +0.1 0.51
perf-profile.children.cycles-pp.is_valid_gup_flags
1.37 +0.1 1.47 +0.2 1.59
perf-profile.children.cycles-pp.syscall_exit_to_user_mode_prepare
74.78 +0.8 75.63 +0.7 75.51
perf-profile.children.cycles-pp.entry_SYSCALL_64_after_hwframe
65.64 +1.1 66.70 +0.7 66.35
perf-profile.children.cycles-pp.do_syscall_64
63.63 +1.1 64.75 +0.8 64.41
perf-profile.children.cycles-pp.__x64_sys_futex
59.95 +1.3 61.20 +0.9 60.89
perf-profile.children.cycles-pp.do_futex
56.16 +1.4 57.61 +1.1 57.28
perf-profile.children.cycles-pp.futex_wake
47.04 +1.8 48.84 +1.6 48.64
perf-profile.children.cycles-pp.get_futex_key
35.99 +2.2 38.22 +2.0 37.97
perf-profile.children.cycles-pp.internal_get_user_pages_fast
27.76 +2.5 30.23 +2.3 30.03
perf-profile.children.cycles-pp.gup_pgd_range
0.00 +3.2 3.19 ± 2% +3.2 3.23
perf-profile.children.cycles-pp.page_mapping
0.00 +3.7 3.66 ± 2% +0.0 0.00
perf-profile.children.cycles-pp.page_is_secretmem
4.66 -0.6 4.06 -0.6 4.03
perf-profile.self.cycles-pp.try_grab_compound_head
8.97 -0.4 8.54 -0.4 8.59
perf-profile.self.cycles-pp.get_futex_key
22.44 -0.4 22.05 -0.1 22.34
perf-profile.self.cycles-pp.gup_pgd_range
9.31 -0.3 8.99 -0.3 9.06
perf-profile.self.cycles-pp.syscall_return_via_sysret
8.27 -0.3 7.96 -0.3 7.98
perf-profile.self.cycles-pp.syscall
5.54 -0.3 5.25 -0.3 5.21
perf-profile.self.cycles-pp.futex_wake
7.97 -0.3 7.71 -0.3 7.63
perf-profile.self.cycles-pp.internal_get_user_pages_fast
5.01 -0.2 4.82 -0.2 4.86
perf-profile.self.cycles-pp.__entry_text_start
3.82 -0.2 3.64 -0.2 3.66
perf-profile.self.cycles-pp.do_futex
2.73 -0.2 2.56 -0.1 2.61
perf-profile.self.cycles-pp.exit_to_user_mode_prepare
3.76 -0.2 3.61 -0.2 3.58
perf-profile.self.cycles-pp.__x64_sys_futex
3.41 -0.1 3.32 -0.2 3.23
perf-profile.self.cycles-pp.hash_futex
3.30 -0.1 3.23 -0.1 3.23
perf-profile.self.cycles-pp.entry_SYSCALL_64_after_hwframe
1.25 -0.1 1.19 -0.1 1.19
perf-profile.self.cycles-pp.entry_SYSCALL_64_safe_stack
0.74 ± 4% -0.0 0.69 ± 2% -0.1 0.68
perf-profile.self.cycles-pp.do_syscall_64
0.84 -0.0 0.81 -0.0 0.84
perf-profile.self.cycles-pp.rcu_nocb_flush_deferred_wakeup
1.07 -0.0 1.04 +0.0 1.08
perf-profile.self.cycles-pp.syscall_exit_to_user_mode
0.95 -0.0 0.94 -0.0 0.93
perf-profile.self.cycles-pp.syscall_enter_from_user_mode
1.51 -0.0 1.49 -0.0 1.49
perf-profile.self.cycles-pp.get_user_pages_fast
1.04 ± 3% -0.0 1.03 ± 3% -0.0 1.03
perf-profile.self.cycles-pp.testcase
0.05 ± 7% -0.0 0.04 ± 44% -0.0 0.05
perf-profile.self.cycles-pp.unwind_next_frame
0.10 ± 14% -0.0 0.10 ± 10% +0.0 0.11 ± 14%
perf-profile.self.cycles-pp.ktime_get_update_offsets_now
0.13 +0.0 0.13 ± 2% +0.0 0.13
perf-profile.self.cycles-pp.__x86_indirect_thunk_rax
0.11 ± 27% +0.0 0.11 ± 14% +0.0 0.13 ± 23%
perf-profile.self.cycles-pp.ktime_get
0.38 ± 7% +0.0 0.40 +0.0 0.40 ± 3%
perf-profile.self.cycles-pp.pmd_huge
0.01 ±223% +0.0 0.03 ±102% +0.0 0.02 ±176%
perf-profile.self.cycles-pp.queue_event
0.24 +0.0 0.26 ± 3% +0.0 0.26 ± 5%
perf-profile.self.cycles-pp.pud_huge
0.31 +0.0 0.34 +0.0 0.33
perf-profile.self.cycles-pp.is_valid_gup_flags
0.20 ± 6% +0.0 0.23 ± 33% +0.0 0.22 ± 36%
perf-profile.self.cycles-pp.syscall@plt
1.23 +0.1 1.32 +0.2 1.43
perf-profile.self.cycles-pp.syscall_exit_to_user_mode_prepare
0.00 +0.6 0.62 +0.0 0.00
perf-profile.self.cycles-pp.page_is_secretmem
0.00 +2.8 2.81 ± 3% +3.0 2.96
perf-profile.self.cycles-pp.page_mapping
0.01 ± 4% +1.6% 0.01 ± 8% +2.0% 0.01 ± 7%
perf-sched.sch_delay.avg.ms.__x64_sys_pause.do_syscall_64.entry_SYSCALL_64_after_hwframe.[unknown]
1.22 ±220% -98.5% 0.02 ± 6% +191.8% 3.55 ±138%
perf-sched.sch_delay.avg.ms.devkmsg_read.vfs_read.ksys_read.do_syscall_64
0.01 ± 6% +1.6% 0.01 ± 4% +313.1% 0.04 ±198%
perf-sched.sch_delay.avg.ms.do_nanosleep.hrtimer_nanosleep.__x64_sys_nanosleep.do_syscall_64
5.55 ±148% -47.2% 2.93 ± 53% -70.4% 1.65 ±104%
perf-sched.sch_delay.avg.ms.do_syslog.part.0.kmsg_read.vfs_read
0.01 ±143% +264.0% 0.03 ±201% -16.0% 0.01 ±151%
perf-sched.sch_delay.avg.ms.do_task_dead.do_exit.do_group_exit.__x64_sys_exit_group.do_syscall_64
0.01 ± 2% +3901.2% 0.57 ±214% +2978.5% 0.44 ±240%
perf-sched.sch_delay.avg.ms.do_wait.kernel_wait4.__do_sys_wait4.do_syscall_64
0.00 +1.5e+102% 1.47 ±223% +1.5e+102% 1.49 ±133%
perf-sched.sch_delay.avg.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_exc_page_fault.[unknown]
0.00 ±141% -13.3% 0.00 ±142% +15.0% 0.00 ±129%
perf-sched.sch_delay.avg.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_apic_timer_interrupt.[unknown]
0.58 ±223% -100.0% 0.00 +135.1% 1.36 ±187%
perf-sched.sch_delay.avg.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_reschedule_ipi.[unknown]
0.00 ±159% -42.9% 0.00 ±165% -57.1% 0.00 ±100%
perf-sched.sch_delay.avg.ms.exit_to_user_mode_prepare.syscall_exit_to_user_mode.entry_SYSCALL_64_after_hwframe.[unknown]
0.00 +1.5e+102% 1.46 ±223% -100.0% 0.00
perf-sched.sch_delay.avg.ms.exit_to_user_mode_prepare.syscall_exit_to_user_mode.ret_from_fork.[unknown]
0.02 ± 18% +0.0% 0.02 ± 16% +7.5% 0.02 ± 25%
perf-sched.sch_delay.avg.ms.futex_wait_queue_me.futex_wait.do_futex.__x64_sys_futex
0.00 ±223% +55.6% 0.00 ±141% +54.2% 0.00 ±175%
perf-sched.sch_delay.avg.ms.kthreadd.ret_from_fork
0.03 ± 80% -29.2% 0.02 ± 24% +305.7% 0.10 ±201%
perf-sched.sch_delay.avg.ms.pipe_read.new_sync_read.vfs_read.ksys_read
0.00 +2e+99% 0.00 ±223% +1.6e+99% 0.00 ±264%
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.__get_free_pages.pgd_alloc
0.00 +1.8e+99% 0.00 ±223% +1.6e+99% 0.00 ±264%
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.__pmd_alloc.copy_page_range
1.81 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.alloc_pages_vma.wp_page_copy
0.00 ±141% -42.9% 0.00 ±223% -100.0% 0.00
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.pte_alloc_one.__pte_alloc
0.33 ±141% -50.0% 0.17 ±223% +87.7% 0.62 ± 77%
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.__flush_work.lru_add_drain_all.khugepaged
0.00 ±141% -100.0% 0.00 -46.4% 0.00 ±264%
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.__kmalloc.security_task_alloc.copy_process
0.00 ±223% +0.0% 0.00 ±223% -100.0% 0.00
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.__kmalloc_node.__vmalloc_node_range.dup_task_struct
0.00 -100.0% 0.00 +1.4e+99% 0.00 ±264%
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.__vmalloc_node_range.dup_task_struct.copy_process
0.00 +2.5e+99% 0.00 ±223% -100.0% 0.00
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.cgroup_can_fork.copy_process.kernel_clone
0.00 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.copy_page_range.dup_mmap.dup_mm
0.01 ± 45% -61.2% 0.00 ±142% -88.8% 0.00 ±264%
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.copy_pte_range.copy_page_range.dup_mmap
1.15 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.copy_strings.isra.0
0.00 ±223% +375.0% 0.00 ±148% +19681.2% 0.13 ±263%
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.do_user_addr_fault.exc_page_fault.asm_exc_page_fault
0.00 ±223% -100.0% 0.00 +68.7% 0.00 ±173%
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.down_write.anon_vma_clone.anon_vma_fork
0.00 +1.8e+99% 0.00 ±223% +1.6e+99% 0.00 ±264%
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.down_write.anon_vma_fork.dup_mmap
0.01 ± 46% -81.8% 0.00 ±223% -48.2% 0.00 ±130%
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.down_write.dup_mmap.dup_mm
0.67 ±111% -23.7% 0.51 ± 96% -62.5% 0.25 ±173%
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.khugepaged.kthread.ret_from_fork
0.00 ±142% -100.0% 0.00 -66.7% 0.00 ±264%
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.anon_vma_fork.dup_mmap
0.00 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.copy_fs_struct.copy_process
0.00 +3.8e+99% 0.00 ±141% +2.7e+99% 0.00 ±174%
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.prepare_creds.copy_creds
0.00 ±141% -100.0% 0.00 -66.4% 0.00 ±264%
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.vm_area_dup.dup_mmap
0.00 -100.0% 0.00 +3e+99% 0.00 ±264%
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc_node_trace.__get_vm_area_node.__vmalloc_node_range
0.00 ±223% +1300.0% 0.00 ±205% -100.0% 0.00
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.stop_one_cpu.affine_move_task.__set_cpus_allowed_ptr
9.30 -0.1% 9.29 -0.3% 9.28
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.stop_one_cpu.sched_exec.bprm_execve
0.00 ±223% +16.7% 0.00 ±223% -6.3% 0.00 ±264%
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.uprobe_start_dup_mmap.dup_mmap.dup_mm
0.00 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.wp_page_copy.__handle_mm_fault.handle_mm_fault
0.29 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.sch_delay.avg.ms.preempt_schedule_common.__cond_resched.ww_mutex_lock.drm_gem_vram_vunmap.drm_gem_vunmap
0.01 ± 3% +1.4% 0.01 ± 3% -22.9% 0.01 ± 57%
perf-sched.sch_delay.avg.ms.rcu_gp_kthread.kthread.ret_from_fork
0.03 ± 35% +168.4% 0.09 ±145% +1.6% 0.04 ± 37%
perf-sched.sch_delay.avg.ms.schedule_hrtimeout_range_clock.ep_poll.do_epoll_wait.__x64_sys_epoll_wait
0.02 ± 40% +15.4% 0.02 ± 38% +14.1% 0.02 ± 44%
perf-sched.sch_delay.avg.ms.schedule_hrtimeout_range_clock.poll_schedule_timeout.constprop.0.do_select
0.00 ± 55% -12.5% 0.00 ± 31% -25.0% 0.00
perf-sched.sch_delay.avg.ms.schedule_hrtimeout_range_clock.poll_schedule_timeout.constprop.0.do_sys_poll
0.13 ±223% +108.0% 0.27 ±141% +45.9% 0.19 ±173%
perf-sched.sch_delay.avg.ms.schedule_preempt_disabled.kthread.ret_from_fork
0.01 ± 4% +0.0% 0.01 ± 4% -0.5% 0.01 ± 3%
perf-sched.sch_delay.avg.ms.schedule_timeout.kcompactd.kthread.ret_from_fork
0.01 ± 19% -3.6% 0.01 ± 4% -3.2% 0.01 ± 3%
perf-sched.sch_delay.avg.ms.schedule_timeout.rcu_gp_kthread.kthread.ret_from_fork
0.17 ±223% -0.1% 0.17 ±223% -24.8% 0.13 ±264%
perf-sched.sch_delay.avg.ms.schedule_timeout.wait_for_completion.__flush_work.lru_add_drain_all
0.00 ±223% +75.0% 0.00 ±141% +337.5% 0.01 ±175%
perf-sched.sch_delay.avg.ms.schedule_timeout.wait_for_completion_killable.__kthread_create_on_node.kthread_create_on_node
0.01 +0.0% 0.01 +0.0% 0.01
perf-sched.sch_delay.avg.ms.smpboot_thread_fn.kthread.ret_from_fork
0.02 ±223% +151.2% 0.05 ±223% +150.6% 0.05 ±188%
perf-sched.sch_delay.avg.ms.wait_for_partner.fifo_open.do_dentry_open.do_open.isra
0.47 ±203% -92.5% 0.03 ± 98% -88.3% 0.05 ± 96%
perf-sched.sch_delay.avg.ms.worker_thread.kthread.ret_from_fork
0.01 ± 18% -11.2% 0.01 ± 10% -5.6% 0.01 ± 15%
perf-sched.sch_delay.max.ms.__x64_sys_pause.do_syscall_64.entry_SYSCALL_64_after_hwframe.[unknown]
1.43 ±220% -98.4% 0.02 ± 21% +562.2% 9.44 ±180%
perf-sched.sch_delay.max.ms.devkmsg_read.vfs_read.ksys_read.do_syscall_64
0.02 ± 35% +5.9% 0.02 ± 24% +3938.9% 0.68 ±258%
perf-sched.sch_delay.max.ms.do_nanosleep.hrtimer_nanosleep.__x64_sys_nanosleep.do_syscall_64
16.63 ±149% -49.4% 8.41 ± 51% -73.4% 4.42 ± 99%
perf-sched.sch_delay.max.ms.do_syslog.part.0.kmsg_read.vfs_read
1.50 ±220% +44.9% 2.17 ±221% -16.0% 1.26 ±260%
perf-sched.sch_delay.max.ms.do_task_dead.do_exit.do_group_exit.__x64_sys_exit_group.do_syscall_64
0.06 ± 57% +2.8e+05% 170.34 ±219% +2.2e+05% 133.05 ±249%
perf-sched.sch_delay.max.ms.do_wait.kernel_wait4.__do_sys_wait4.do_syscall_64
0.00 +1.5e+102% 1.47 ±223% +3.3e+102% 3.33 ±129%
perf-sched.sch_delay.max.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_exc_page_fault.[unknown]
2.32 ±141% -7.1% 2.15 ±141% +12.5% 2.60 ±128%
perf-sched.sch_delay.max.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_apic_timer_interrupt.[unknown]
1.16 ±223% -100.0% 0.00 +135.1% 2.72 ±187%
perf-sched.sch_delay.max.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_reschedule_ipi.[unknown]
3.11 ±140% +4.5% 3.25 ±140% +37.9% 4.29 ±103%
perf-sched.sch_delay.max.ms.exit_to_user_mode_prepare.syscall_exit_to_user_mode.entry_SYSCALL_64_after_hwframe.[unknown]
0.00 +1.5e+102% 1.46 ±223% -100.0% 0.00
perf-sched.sch_delay.max.ms.exit_to_user_mode_prepare.syscall_exit_to_user_mode.ret_from_fork.[unknown]
0.02 ± 15% +2.1% 0.02 ± 17% +11.2% 0.03 ± 24%
perf-sched.sch_delay.max.ms.futex_wait_queue_me.futex_wait.do_futex.__x64_sys_futex
0.00 ±223% +55.6% 0.00 ±141% +54.2% 0.00 ±175%
perf-sched.sch_delay.max.ms.kthreadd.ret_from_fork
16.52 ± 57% -52.0% 7.93 ± 70% +790.4% 147.09 ±225%
perf-sched.sch_delay.max.ms.pipe_read.new_sync_read.vfs_read.ksys_read
0.00 +2e+99% 0.00 ±223% +1.6e+99% 0.00 ±264%
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.__get_free_pages.pgd_alloc
0.00 +1.8e+99% 0.00 ±223% +1.6e+99% 0.00 ±264%
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.__pmd_alloc.copy_page_range
1.81 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.alloc_pages_vma.wp_page_copy
0.00 ±141% -42.9% 0.00 ±223% -100.0% 0.00
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.pte_alloc_one.__pte_alloc
0.33 ±141% -50.0% 0.17 ±223% +87.7% 0.62 ± 77%
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.__flush_work.lru_add_drain_all.khugepaged
0.00 ±141% -100.0% 0.00 -46.4% 0.00 ±264%
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.__kmalloc.security_task_alloc.copy_process
0.00 ±223% +0.0% 0.00 ±223% -100.0% 0.00
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.__kmalloc_node.__vmalloc_node_range.dup_task_struct
0.00 -100.0% 0.00 +1.4e+99% 0.00 ±264%
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.__vmalloc_node_range.dup_task_struct.copy_process
0.00 +2.5e+99% 0.00 ±223% -100.0% 0.00
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.cgroup_can_fork.copy_process.kernel_clone
0.00 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.copy_page_range.dup_mmap.dup_mm
0.01 ± 45% -59.4% 0.00 ±143% -89.1% 0.00 ±264%
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.copy_pte_range.copy_page_range.dup_mmap
1.15 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.copy_strings.isra.0
0.00 ±223% +100.0% 0.00 ±142% +54586.5% 1.18 ±264%
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.do_user_addr_fault.exc_page_fault.asm_exc_page_fault
0.00 ±223% -100.0% 0.00 +68.7% 0.00 ±173%
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.down_write.anon_vma_clone.anon_vma_fork
0.00 +1.8e+99% 0.00 ±223% +1.8e+99% 0.00 ±264%
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.down_write.anon_vma_fork.dup_mmap
0.01 ± 46% -82.1% 0.00 ±223% -41.1% 0.01 ±136%
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.down_write.dup_mmap.dup_mm
0.67 ±111% -23.7% 0.51 ± 96% -62.5% 0.25 ±173%
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.khugepaged.kthread.ret_from_fork
0.00 ±142% -100.0% 0.00 -63.9% 0.00 ±264%
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.anon_vma_fork.dup_mmap
0.00 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.copy_fs_struct.copy_process
0.00 +3.8e+99% 0.00 ±141% +2.7e+99% 0.00 ±174%
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.prepare_creds.copy_creds
0.00 ±141% -100.0% 0.00 -63.8% 0.00 ±264%
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.vm_area_dup.dup_mmap
0.00 -100.0% 0.00 +3e+99% 0.00 ±264%
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc_node_trace.__get_vm_area_node.__vmalloc_node_range
0.33 ±179% +1481.4% 5.27 ±210% -57.7% 0.14 ±113%
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.stop_one_cpu.affine_move_task.__set_cpus_allowed_ptr
20.25 ± 3% +2.3% 20.71 ± 7% +1.0% 20.46 ± 2%
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.stop_one_cpu.sched_exec.bprm_execve
0.00 ±223% +16.7% 0.00 ±223% -6.3% 0.00 ±264%
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.uprobe_start_dup_mmap.dup_mmap.dup_mm
0.00 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.wp_page_copy.__handle_mm_fault.handle_mm_fault
0.29 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.sch_delay.max.ms.preempt_schedule_common.__cond_resched.ww_mutex_lock.drm_gem_vram_vunmap.drm_gem_vunmap
0.02 ± 27% -9.3% 0.02 ± 30% -36.6% 0.01 ± 59%
perf-sched.sch_delay.max.ms.rcu_gp_kthread.kthread.ret_from_fork
0.18 ± 28% +1158.7% 2.23 ±203% +13.0% 0.20 ± 4%
perf-sched.sch_delay.max.ms.schedule_hrtimeout_range_clock.ep_poll.do_epoll_wait.__x64_sys_epoll_wait
0.03 ± 63% +21.3% 0.04 ± 55% +23.9% 0.04 ± 63%
perf-sched.sch_delay.max.ms.schedule_hrtimeout_range_clock.poll_schedule_timeout.constprop.0.do_select
0.04 ±140% +3.1% 0.04 ±160% -69.8% 0.01 ± 17%
perf-sched.sch_delay.max.ms.schedule_hrtimeout_range_clock.poll_schedule_timeout.constprop.0.do_sys_poll
0.13 ±223% +108.0% 0.27 ±141% +45.9% 0.19 ±173%
perf-sched.sch_delay.max.ms.schedule_preempt_disabled.kthread.ret_from_fork
0.02 ± 30% -13.8% 0.02 ± 28% -18.3% 0.02 ± 25%
perf-sched.sch_delay.max.ms.schedule_timeout.kcompactd.kthread.ret_from_fork
1.54 ±214% -98.0% 0.03 ± 14% -98.1% 0.03 ± 8%
perf-sched.sch_delay.max.ms.schedule_timeout.rcu_gp_kthread.kthread.ret_from_fork
0.17 ±223% -0.1% 0.17 ±223% -24.8% 0.13 ±264%
perf-sched.sch_delay.max.ms.schedule_timeout.wait_for_completion.__flush_work.lru_add_drain_all
0.00 ±223% +75.0% 0.00 ±141% +337.5% 0.01 ±175%
perf-sched.sch_delay.max.ms.schedule_timeout.wait_for_completion_killable.__kthread_create_on_node.kthread_create_on_node
0.10 ± 53% -18.2% 0.08 ± 66% -34.1% 0.07 ± 83%
perf-sched.sch_delay.max.ms.smpboot_thread_fn.kthread.ret_from_fork
1.37 ±223% +56.6% 2.15 ±223% +171.6% 3.73 ±191%
perf-sched.sch_delay.max.ms.wait_for_partner.fifo_open.do_dentry_open.do_open.isra
281.88 ±209% -95.1% 13.89 ±149% -91.5% 24.00 ±118%
perf-sched.sch_delay.max.ms.worker_thread.kthread.ret_from_fork
0.16 ± 18% -0.2% 0.16 ± 15% -2.2% 0.16 ± 21%
perf-sched.total_sch_delay.average.ms
299.16 ±194% -37.7% 186.38 ±197% -42.9% 170.97 ±188%
perf-sched.total_sch_delay.max.ms
138.15 ± 4% +2.7% 141.87 ± 4% -2.8% 134.28 ± 5%
perf-sched.total_wait_and_delay.average.ms
18395 ± 5% -2.3% 17967 ± 6% +3.7% 19075 ± 5%
perf-sched.total_wait_and_delay.count.ms
8283 ± 5% +4.6% 8662 ± 8% -11.3% 7346 ± 9%
perf-sched.total_wait_and_delay.max.ms
137.98 ± 4% +2.7% 141.71 ± 4% -2.8% 134.12 ± 5%
perf-sched.total_wait_time.average.ms
8283 ± 5% +4.6% 8662 ± 8% -11.4% 7339 ± 9%
perf-sched.total_wait_time.max.ms
900.94 -0.2% 899.41 +0.1% 901.69
perf-sched.wait_and_delay.avg.ms.__x64_sys_pause.do_syscall_64.entry_SYSCALL_64_after_hwframe.[unknown]
2175 ± 15% -10.3% 1951 ± 11% -3.3% 2103 ± 23%
perf-sched.wait_and_delay.avg.ms.devkmsg_read.vfs_read.ksys_read.do_syscall_64
786.59 ± 5% +3.0% 809.84 ± 5% +4.1% 818.89 ± 5%
perf-sched.wait_and_delay.avg.ms.do_nanosleep.hrtimer_nanosleep.__x64_sys_nanosleep.do_syscall_64
2122 ± 6% -7.8% 1956 ± 11% -10.5% 1899 ± 12%
perf-sched.wait_and_delay.avg.ms.do_syslog.part.0.kmsg_read.vfs_read
211.03 ± 4% -2.5% 205.76 -0.6% 209.66 ± 4%
perf-sched.wait_and_delay.avg.ms.do_task_dead.do_exit.do_group_exit.__x64_sys_exit_group.do_syscall_64
86.32 ± 8% +8.1% 93.30 ± 6% +12.8% 97.39 ± 9%
perf-sched.wait_and_delay.avg.ms.do_wait.kernel_wait4.__do_sys_wait4.do_syscall_64
0.27 ± 50% -32.5% 0.18 ± 17% -25.0% 0.20 ± 27%
perf-sched.wait_and_delay.avg.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_apic_timer_interrupt.[unknown]
0.13 ± 57% +123.4% 0.29 ± 79% -1.0% 0.13 ± 45%
perf-sched.wait_and_delay.avg.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_call_function_single.[unknown]
0.17 ± 6% +3.5% 0.18 ± 8% +1.4% 0.17 ± 6%
perf-sched.wait_and_delay.avg.ms.exit_to_user_mode_prepare.syscall_exit_to_user_mode.entry_SYSCALL_64_after_hwframe.[unknown]
119.82 ±156% +63.9% 196.38 ±223% -100.0% 0.00
perf-sched.wait_and_delay.avg.ms.futex_wait_queue_me.futex_wait.do_futex.__x64_sys_futex
0.00 +7.8e+99% 0.01 ±223% -100.0% 0.00
perf-sched.wait_and_delay.avg.ms.io_schedule.__lock_page_killable.filemap_fault.__do_fault
90.11 ± 37% +22.5% 110.41 ± 31% -11.0% 80.18 ± 32%
perf-sched.wait_and_delay.avg.ms.pipe_read.new_sync_read.vfs_read.ksys_read
357.66 ±223% -75.7% 86.82 ±223% +89.1% 676.39 ±168%
perf-sched.wait_and_delay.avg.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.alloc_pages_vma.shmem_alloc_page
459.91 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_and_delay.avg.ms.preempt_schedule_common.__cond_resched.__do_fault.do_fault.__handle_mm_fault
0.00 -100.0% 0.00 +2e+104% 196.23 ±264%
perf-sched.wait_and_delay.avg.ms.preempt_schedule_common.__cond_resched.do_user_addr_fault.exc_page_fault.asm_exc_page_fault
0.00 +1.1e+105% 1077 ±223% -100.0% 0.00
perf-sched.wait_and_delay.avg.ms.preempt_schedule_common.__cond_resched.down_write.generic_file_write_iter.new_sync_write
567.81 ± 73% +62.2% 921.21 ± 68% -37.2% 356.42 ± 97%
perf-sched.wait_and_delay.avg.ms.preempt_schedule_common.__cond_resched.generic_perform_write.__generic_file_write_iter.generic_file_write_iter
4.95 ± 9% -1.9% 4.85 ± 7% -4.0% 4.75 ± 10%
perf-sched.wait_and_delay.avg.ms.preempt_schedule_common.__cond_resched.stop_one_cpu.affine_move_task.__set_cpus_allowed_ptr
9.30 -0.1% 9.29 -0.3% 9.28
perf-sched.wait_and_delay.avg.ms.preempt_schedule_common.__cond_resched.stop_one_cpu.sched_exec.bprm_execve
359.76 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_and_delay.avg.ms.preempt_schedule_common.__cond_resched.ww_mutex_lock.drm_gem_vram_vunmap.drm_gem_vunmap
619.14 ± 13% -6.1% 581.61 ± 15% +1.9% 631.03 ± 15%
perf-sched.wait_and_delay.avg.ms.schedule_hrtimeout_range_clock.ep_poll.do_epoll_wait.__x64_sys_epoll_wait
120.65 ± 7% +0.2% 120.88 ± 4% -5.5% 114.08 ± 8%
perf-sched.wait_and_delay.avg.ms.schedule_hrtimeout_range_clock.poll_schedule_timeout.constprop.0.do_sys_poll
478.84 -0.0% 478.64 -0.0% 478.77
perf-sched.wait_and_delay.avg.ms.schedule_timeout.kcompactd.kthread.ret_from_fork
5.48 ± 7% -5.0% 5.21 ± 6% -9.4% 4.97 ± 10%
perf-sched.wait_and_delay.avg.ms.schedule_timeout.rcu_gp_kthread.kthread.ret_from_fork
619.04 ± 2% +0.5% 622.28 +1.3% 627.38
perf-sched.wait_and_delay.avg.ms.smpboot_thread_fn.kthread.ret_from_fork
541.74 ± 4% -0.9% 536.80 ± 4% -4.8% 515.56 ± 4%
perf-sched.wait_and_delay.avg.ms.worker_thread.kthread.ret_from_fork
10.17 ± 3% -1.6% 10.00 +0.8% 10.25 ± 4%
perf-sched.wait_and_delay.count.__x64_sys_pause.do_syscall_64.entry_SYSCALL_64_after_hwframe.[unknown]
3.00 ± 19% +11.1% 3.33 ± 14% +8.3% 3.25 ± 20%
perf-sched.wait_and_delay.count.devkmsg_read.vfs_read.ksys_read.do_syscall_64
23.00 ± 5% -2.2% 22.50 ± 4% -2.7% 22.38 ± 5%
perf-sched.wait_and_delay.count.do_nanosleep.hrtimer_nanosleep.__x64_sys_nanosleep.do_syscall_64
3.00 +11.1% 3.33 ± 14% +16.7% 3.50 ± 14%
perf-sched.wait_and_delay.count.do_syslog.part.0.kmsg_read.vfs_read
282.50 ± 3% +1.0% 285.33 ± 2% +0.9% 285.12 ± 4%
perf-sched.wait_and_delay.count.do_task_dead.do_exit.do_group_exit.__x64_sys_exit_group.do_syscall_64
313.00 ± 2% +0.5% 314.50 +1.4% 317.38 ± 3%
perf-sched.wait_and_delay.count.do_wait.kernel_wait4.__do_sys_wait4.do_syscall_64
882.17 ± 7% +0.8% 889.33 ± 7% +5.4% 930.12 ± 7%
perf-sched.wait_and_delay.count.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_apic_timer_interrupt.[unknown]
282.67 ± 27% -13.9% 243.33 ± 32% +12.2% 317.25 ± 31%
perf-sched.wait_and_delay.count.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_call_function_single.[unknown]
6715 ± 5% -2.7% 6534 ± 6% +3.7% 6963 ± 5%
perf-sched.wait_and_delay.count.exit_to_user_mode_prepare.syscall_exit_to_user_mode.entry_SYSCALL_64_after_hwframe.[unknown]
1.00 ±152% -33.3% 0.67 ±223% -100.0% 0.00
perf-sched.wait_and_delay.count.futex_wait_queue_me.futex_wait.do_futex.__x64_sys_futex
0.00 +2e+103% 20.33 ±223% -100.0% 0.00
perf-sched.wait_and_delay.count.io_schedule.__lock_page_killable.filemap_fault.__do_fault
1577 ± 27% -19.1% 1276 ± 33% +7.1% 1689 ± 22%
perf-sched.wait_and_delay.count.pipe_read.new_sync_read.vfs_read.ksys_read
0.50 ±223% +66.7% 0.83 ±223% +75.0% 0.88 ±133%
perf-sched.wait_and_delay.count.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.alloc_pages_vma.shmem_alloc_page
0.33 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_and_delay.count.preempt_schedule_common.__cond_resched.__do_fault.do_fault.__handle_mm_fault
0.00 -100.0% 0.00 +5e+101% 0.50 ±264%
perf-sched.wait_and_delay.count.preempt_schedule_common.__cond_resched.do_user_addr_fault.exc_page_fault.asm_exc_page_fault
0.00 +1.7e+101% 0.17 ±223% -100.0% 0.00
perf-sched.wait_and_delay.count.preempt_schedule_common.__cond_resched.down_write.generic_file_write_iter.new_sync_write
10.17 ±106% -37.7% 6.33 ± 83% +24.2% 12.62 ± 79%
perf-sched.wait_and_delay.count.preempt_schedule_common.__cond_resched.generic_perform_write.__generic_file_write_iter.generic_file_write_iter
2164 ± 3% -1.0% 2141 ± 2% -0.2% 2160 ± 3%
perf-sched.wait_and_delay.count.preempt_schedule_common.__cond_resched.stop_one_cpu.affine_move_task.__set_cpus_allowed_ptr
281.33 ± 3% +0.8% 283.50 +1.0% 284.12 ± 3%
perf-sched.wait_and_delay.count.preempt_schedule_common.__cond_resched.stop_one_cpu.sched_exec.bprm_execve
0.17 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_and_delay.count.preempt_schedule_common.__cond_resched.ww_mutex_lock.drm_gem_vram_vunmap.drm_gem_vunmap
17.67 ± 54% +36.8% 24.17 ± 40% +13.2% 20.00 ± 52%
perf-sched.wait_and_delay.count.schedule_hrtimeout_range_clock.ep_poll.do_epoll_wait.__x64_sys_epoll_wait
196.50 ± 7% -0.3% 195.83 ± 4% +5.3% 207.00 ± 8%
perf-sched.wait_and_delay.count.schedule_hrtimeout_range_clock.poll_schedule_timeout.constprop.0.do_sys_poll
80.17 ± 2% -0.8% 79.50 ± 2% -0.2% 80.00 ± 2%
perf-sched.wait_and_delay.count.schedule_timeout.kcompactd.kthread.ret_from_fork
1815 ± 6% +5.5% 1916 ± 7% +12.1% 2034 ± 10%
perf-sched.wait_and_delay.count.schedule_timeout.rcu_gp_kthread.kthread.ret_from_fork
2998 ± 2% -0.7% 2978 ± 2% +0.1% 3001 ± 3%
perf-sched.wait_and_delay.count.smpboot_thread_fn.kthread.ret_from_fork
591.67 ± 5% +2.6% 607.00 ± 2% +1.5% 600.62 ± 5%
perf-sched.wait_and_delay.count.worker_thread.kthread.ret_from_fork
999.40 -0.0% 999.39 +0.0% 999.40
perf-sched.wait_and_delay.max.ms.__x64_sys_pause.do_syscall_64.entry_SYSCALL_64_after_hwframe.[unknown]
6262 ± 4% +1.4% 6348 ± 2% +3.4% 6475 ± 3%
perf-sched.wait_and_delay.max.ms.devkmsg_read.vfs_read.ksys_read.do_syscall_64
1000 +0.0% 1000 +0.0% 1000
perf-sched.wait_and_delay.max.ms.do_nanosleep.hrtimer_nanosleep.__x64_sys_nanosleep.do_syscall_64
6288 ± 5% +1.2% 6362 ± 2% +2.9% 6470 ± 2%
perf-sched.wait_and_delay.max.ms.do_syslog.part.0.kmsg_read.vfs_read
1729 ± 94% -42.2% 1000 +11.6% 1930 ±127%
perf-sched.wait_and_delay.max.ms.do_task_dead.do_exit.do_group_exit.__x64_sys_exit_group.do_syscall_64
1018 +0.3% 1022 +0.3% 1022
perf-sched.wait_and_delay.max.ms.do_wait.kernel_wait4.__do_sys_wait4.do_syscall_64
53.78 ±152% -67.7% 17.37 ± 24% -27.4% 39.04 ± 67%
perf-sched.wait_and_delay.max.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_apic_timer_interrupt.[unknown]
7.22 ± 50% +363.1% 33.41 ±116% +2.6% 7.41 ± 52%
perf-sched.wait_and_delay.max.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_call_function_single.[unknown]
55.57 ± 46% +29.7% 72.06 ± 41% +10.6% 61.44 ± 66%
perf-sched.wait_and_delay.max.ms.exit_to_user_mode_prepare.syscall_exit_to_user_mode.entry_SYSCALL_64_after_hwframe.[unknown]
405.17 ±179% +93.7% 784.98 ±223% -100.0% 0.00
perf-sched.wait_and_delay.max.ms.futex_wait_queue_me.futex_wait.do_futex.__x64_sys_futex
0.00 +3.7e+100% 0.04 ±223% -100.0% 0.00
perf-sched.wait_and_delay.max.ms.io_schedule.__lock_page_killable.filemap_fault.__do_fault
6264 ± 4% +1.4% 6351 ± 2% +3.6% 6491 ± 3%
perf-sched.wait_and_delay.max.ms.pipe_read.new_sync_read.vfs_read.ksys_read
1068 ±223% -60.1% 426.41 ±223% +51.4% 1617 ±166%
perf-sched.wait_and_delay.max.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.alloc_pages_vma.shmem_alloc_page
917.65 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_and_delay.max.ms.preempt_schedule_common.__cond_resched.__do_fault.do_fault.__handle_mm_fault
0.00 -100.0% 0.00 +7.8e+104% 779.18 ±264%
perf-sched.wait_and_delay.max.ms.preempt_schedule_common.__cond_resched.do_user_addr_fault.exc_page_fault.asm_exc_page_fault
0.00 +1.1e+105% 1077 ±223% -100.0% 0.00
perf-sched.wait_and_delay.max.ms.preempt_schedule_common.__cond_resched.down_write.generic_file_write_iter.new_sync_write
4186 ± 66% +22.1% 5110 ± 44% +1.3% 4241 ± 64%
perf-sched.wait_and_delay.max.ms.preempt_schedule_common.__cond_resched.generic_perform_write.__generic_file_write_iter.generic_file_write_iter
2308 ± 25% +1.1% 2333 ± 24% -5.3% 2185 ± 31%
perf-sched.wait_and_delay.max.ms.preempt_schedule_common.__cond_resched.stop_one_cpu.affine_move_task.__set_cpus_allowed_ptr
20.25 ± 3% +2.3% 20.71 ± 7% +1.0% 20.46 ± 2%
perf-sched.wait_and_delay.max.ms.preempt_schedule_common.__cond_resched.stop_one_cpu.sched_exec.bprm_execve
359.76 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_and_delay.max.ms.preempt_schedule_common.__cond_resched.ww_mutex_lock.drm_gem_vram_vunmap.drm_gem_vunmap
5932 ± 5% -3.7% 5714 ± 11% +3.8% 6157 ± 3%
perf-sched.wait_and_delay.max.ms.schedule_hrtimeout_range_clock.ep_poll.do_epoll_wait.__x64_sys_epoll_wait
4684 -0.9% 4640 -0.9% 4640
perf-sched.wait_and_delay.max.ms.schedule_hrtimeout_range_clock.poll_schedule_timeout.constprop.0.do_sys_poll
505.02 -0.0% 505.01 -0.0% 505.01
perf-sched.wait_and_delay.max.ms.schedule_timeout.kcompactd.kthread.ret_from_fork
276.17 ± 32% -11.1% 245.51 ± 17% -30.5% 192.01 ± 71%
perf-sched.wait_and_delay.max.ms.schedule_timeout.rcu_gp_kthread.kthread.ret_from_fork
7293 ± 18% -12.8% 6359 ± 28% -17.5% 6020 ± 11%
perf-sched.wait_and_delay.max.ms.smpboot_thread_fn.kthread.ret_from_fork
7627 ± 9% +13.6% 8662 ± 8% -9.1% 6936 ± 10%
perf-sched.wait_and_delay.max.ms.worker_thread.kthread.ret_from_fork
900.93 -0.2% 899.40 +0.1% 901.68
perf-sched.wait_time.avg.ms.__x64_sys_pause.do_syscall_64.entry_SYSCALL_64_after_hwframe.[unknown]
2174 ± 15% -10.3% 1951 ± 11% -3.4% 2100 ± 23%
perf-sched.wait_time.avg.ms.devkmsg_read.vfs_read.ksys_read.do_syscall_64
786.58 ± 5% +3.0% 809.83 ± 5% +4.1% 818.85 ± 5%
perf-sched.wait_time.avg.ms.do_nanosleep.hrtimer_nanosleep.__x64_sys_nanosleep.do_syscall_64
2116 ± 6% -7.7% 1953 ± 11% -10.4% 1897 ± 12%
perf-sched.wait_time.avg.ms.do_syslog.part.0.kmsg_read.vfs_read
211.02 ± 4% -2.5% 205.73 -0.6% 209.65 ± 4%
perf-sched.wait_time.avg.ms.do_task_dead.do_exit.do_group_exit.__x64_sys_exit_group.do_syscall_64
86.31 ± 8% +7.4% 92.73 ± 6% +12.3% 96.95 ± 8%
perf-sched.wait_time.avg.ms.do_wait.kernel_wait4.__do_sys_wait4.do_syscall_64
0.01 ±223% +1871.1% 0.15 ±200% +7690.0% 0.58 ±211%
perf-sched.wait_time.avg.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_exc_page_fault.[unknown]
0.27 ± 51% -32.7% 0.18 ± 18% -25.3% 0.20 ± 26%
perf-sched.wait_time.avg.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_apic_timer_interrupt.[unknown]
0.00 -100.0% 0.00 +1.4e+99% 0.00 ±264%
perf-sched.wait_time.avg.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_call_function.[unknown]
0.13 ± 57% +123.4% 0.29 ± 79% -1.0% 0.13 ± 45%
perf-sched.wait_time.avg.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_call_function_single.[unknown]
0.12 ±110% +171.4% 0.31 ±191% -48.0% 0.06 ±149%
perf-sched.wait_time.avg.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_irq_work.[unknown]
1.11 ±217% -35.4% 0.72 ±206% -26.3% 0.82 ±257%
perf-sched.wait_time.avg.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_reschedule_ipi.[unknown]
0.17 ± 6% +3.9% 0.17 ± 8% +1.8% 0.17 ± 6%
perf-sched.wait_time.avg.ms.exit_to_user_mode_prepare.syscall_exit_to_user_mode.entry_SYSCALL_64_after_hwframe.[unknown]
119.81 ±156% +84.0% 220.40 ±194% -77.1% 27.49 ±140%
perf-sched.wait_time.avg.ms.futex_wait_queue_me.futex_wait.do_futex.__x64_sys_futex
0.00 +7.8e+99% 0.01 ±223% -100.0% 0.00
perf-sched.wait_time.avg.ms.io_schedule.__lock_page_killable.filemap_fault.__do_fault
90.09 ± 37% +22.5% 110.39 ± 31% -11.1% 80.07 ± 33%
perf-sched.wait_time.avg.ms.pipe_read.new_sync_read.vfs_read.ksys_read
1.28 ± 87% -11.1% 1.14 ±104% -46.8% 0.68 ± 37%
perf-sched.wait_time.avg.ms.pipe_write.new_sync_write.vfs_write.ksys_write
0.00 +1.3e+100% 0.01 ±223% +9.9e+99% 0.01 ±264%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.__get_free_pages.pgd_alloc
0.00 +1.4e+100% 0.01 ±223% +1.6e+102% 1.59 ±264%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.__pmd_alloc.copy_page_range
379.68 ±208% -74.7% 95.92 ±198% +79.5% 681.58 ±166%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.alloc_pages_vma.shmem_alloc_page
0.00 -100.0% 0.00 +1e+101% 0.10 ±264%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.alloc_pages_vma.wp_page_copy
0.03 ±141% +5972.1% 1.81 ±223% -100.0% 0.00
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.pte_alloc_one.__pte_alloc
468.38 ±218% -98.2% 8.60 ± 90% -99.1% 4.44 ±113%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.__do_fault.do_fault.__handle_mm_fault
0.00 +2.5e+99% 0.00 ±223% -100.0% 0.00
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.__kmalloc.inotify_handle_inode_event.fsnotify
0.03 ±141% -100.0% 0.00 +6145.8% 1.73 ±264%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.__kmalloc.security_task_alloc.copy_process
0.01 ±223% +16979.0% 2.31 ±223% -100.0% 0.00
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.__kmalloc_node.__vmalloc_node_range.dup_task_struct
0.00 -100.0% 0.00 +1.1e+100% 0.01 ±264%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.__vmalloc_node_range.dup_task_struct.copy_process
0.00 +2.3e+102% 2.28 ±223% -100.0% 0.00
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.cgroup_can_fork.copy_process.kernel_clone
1.30 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.change_p4d_range.change_protection.mprotect_fixup
2.13 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.copy_page_range.dup_mmap.dup_mm
4.91 ±105% -76.4% 1.16 ±220% -99.8% 0.01 ±264%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.copy_pte_range.copy_page_range.dup_mmap
8.56 ± 61% +9.7% 9.40 ± 51% +2258.3% 201.98 ±255%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.do_user_addr_fault.exc_page_fault.asm_exc_page_fault
0.00 +8.6e+100% 0.09 ±223% -100.0% 0.00
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.down_read.walk_component.link_path_walk
0.47 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.down_write.anon_vma_clone.__split_vma
0.01 ±223% -100.0% 0.00 +26655.5% 3.43 ±173%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.down_write.anon_vma_clone.anon_vma_fork
0.00 +1.4e+100% 0.01 ±223% +8.6e+101% 0.86 ±264%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.down_write.anon_vma_fork.dup_mmap
0.07 ± 44% -79.4% 0.01 ±223% +3067.1% 2.17 ±206%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.down_write.dup_mmap.dup_mm
0.00 +1.1e+105% 1077 ±223% -100.0% 0.00
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.down_write.generic_file_write_iter.new_sync_write
2.13 ±223% -54.8% 0.96 ±223% -48.5% 1.10 ±264%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.down_write.unlink_file_vma.free_pgtables
0.00 -100.0% 0.00 +9e+100% 0.09 ±264%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.down_write_killable.vm_mmap_pgoff.ksys_mmap_pgoff
9.96 ± 15% -37.9% 6.19 ± 52% -10.8% 8.89 ± 29%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.dput.__fput.task_work_run
0.00 +8e+101% 0.80 ±223% -100.0% 0.00
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.dput.terminate_walk.path_lookupat
0.00 -100.0% 0.00 +6e+101% 0.60 ±264%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.exit_mmap.mmput.do_exit
569.95 ± 73% +61.8% 922.28 ± 68% -37.1% 358.71 ± 96%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.generic_perform_write.__generic_file_write_iter.generic_file_write_iter
0.01 ±104% -8.1% 0.01 ±141% -0.7% 0.01 ± 81%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.khugepaged.kthread.ret_from_fork
0.00 +5.4e+100% 0.05 ±223% -100.0% 0.00
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.__alloc_file.alloc_empty_file
3.46 ±152% -100.0% 0.00 -80.1% 0.69 ±264%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.anon_vma_fork.dup_mmap
1.81 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.copy_fs_struct.copy_process
0.00 +3e+100% 0.03 ±141% +2.3e+100% 0.02 ±173%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.prepare_creds.copy_creds
0.09 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.vm_area_alloc.mmap_region
0.07 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.vm_area_dup.__split_vma
4.42 ±142% -100.0% 0.00 -80.4% 0.87 ±264%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.vm_area_dup.dup_mmap
0.00 -100.0% 0.00 +1.3e+102% 1.35 ±264%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc_node_trace.__get_vm_area_node.__vmalloc_node_range
0.00 +3.2e+101% 0.32 ±223% -100.0% 0.00
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc_trace.perf_event_mmap.mmap_region
0.00 +6.6e+101% 0.66 ±222% -100.0% 0.00
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.mutex_lock.perf_event_ctx_lock_nested.isra
0.84 ±160% +32.2% 1.11 ±128% +621.6% 6.04 ± 75%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.mutex_lock.perf_poll.do_sys_poll
0.00 +3.1e+101% 0.31 ±223% +1.5e+102% 1.47 ±264%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.remove_vma.exit_mmap.mmput
4.95 ± 9% -2.0% 4.85 ± 8% -4.0% 4.75 ± 10%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.stop_one_cpu.affine_move_task.__set_cpus_allowed_ptr
0.00 +1.7e+98% 0.00 ±223% +3.7e+98% 0.00 ±264%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.stop_one_cpu.sched_exec.bprm_execve
0.00 -100.0% 0.00 +3.5e+101% 0.35 ±264%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.task_work_run.do_exit.do_group_exit
0.01 ±223% +15879.1% 2.29 ±223% -25.9% 0.01 ±264%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.uprobe_start_dup_mmap.dup_mmap.dup_mm
0.01 ±223% -100.0% 0.00 +2592.4% 0.35 ±264%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.wp_page_copy.__handle_mm_fault.handle_mm_fault
359.47 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.ww_mutex_lock.drm_gem_vram_vunmap.drm_gem_vunmap
0.14 ±223% +832.9% 1.30 ±223% +151.9% 0.35 ±264%
perf-sched.wait_time.avg.ms.preempt_schedule_common.__cond_resched.zap_pte_range.unmap_page_range.unmap_vmas
2.72 ± 6% +3.3% 2.81 ± 4% -25.2% 2.04 ± 58%
perf-sched.wait_time.avg.ms.rcu_gp_kthread.kthread.ret_from_fork
619.11 ± 13% -6.1% 581.52 ± 15% +1.9% 630.99 ± 15%
perf-sched.wait_time.avg.ms.schedule_hrtimeout_range_clock.ep_poll.do_epoll_wait.__x64_sys_epoll_wait
120.65 ± 7% +0.2% 120.88 ± 4% -5.4% 114.08 ± 8%
perf-sched.wait_time.avg.ms.schedule_hrtimeout_range_clock.poll_schedule_timeout.constprop.0.do_sys_poll
478.83 -0.0% 478.63 -0.0% 478.76
perf-sched.wait_time.avg.ms.schedule_timeout.kcompactd.kthread.ret_from_fork
3.34 ± 21% -0.7% 3.31 ± 8% +10.3% 3.68 ± 6%
perf-sched.wait_time.avg.ms.schedule_timeout.khugepaged.kthread.ret_from_fork
5.47 ± 7% -5.0% 5.20 ± 6% -9.4% 4.96 ± 10%
perf-sched.wait_time.avg.ms.schedule_timeout.rcu_gp_kthread.kthread.ret_from_fork
0.01 ± 52% -0.0% 0.01 ± 56% -22.9% 0.01 ± 59%
perf-sched.wait_time.avg.ms.schedule_timeout.wait_for_completion.stop_one_cpu.affine_move_task
619.04 ± 2% +0.5% 622.27 +1.3% 627.37
perf-sched.wait_time.avg.ms.smpboot_thread_fn.kthread.ret_from_fork
1.96 ± 14% -4.6% 1.87 ± 12% -1.1% 1.94 ± 9%
perf-sched.wait_time.avg.ms.wait_for_partner.fifo_open.do_dentry_open.do_open.isra
541.27 ± 4% -0.8% 536.77 ± 4% -4.8% 515.51 ± 4%
perf-sched.wait_time.avg.ms.worker_thread.kthread.ret_from_fork
999.39 -0.0% 999.38 +0.0% 999.39
perf-sched.wait_time.max.ms.__x64_sys_pause.do_syscall_64.entry_SYSCALL_64_after_hwframe.[unknown]
6261 ± 4% +1.4% 6348 ± 2% +3.3% 6467 ± 3%
perf-sched.wait_time.max.ms.devkmsg_read.vfs_read.ksys_read.do_syscall_64
1000 +0.0% 1000 +0.0% 1000
perf-sched.wait_time.max.ms.do_nanosleep.hrtimer_nanosleep.__x64_sys_nanosleep.do_syscall_64
6273 ± 5% +1.3% 6355 ± 2% +3.1% 6466 ± 3%
perf-sched.wait_time.max.ms.do_syslog.part.0.kmsg_read.vfs_read
1729 ± 94% -42.2% 1000 +11.6% 1930 ±127%
perf-sched.wait_time.max.ms.do_task_dead.do_exit.do_group_exit.__x64_sys_exit_group.do_syscall_64
1018 +0.3% 1022 +0.3% 1022
perf-sched.wait_time.max.ms.do_wait.kernel_wait4.__do_sys_wait4.do_syscall_64
0.01 ±223% +1922.2% 0.15 ±194% +20633.3% 1.55 ±225%
perf-sched.wait_time.max.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_exc_page_fault.[unknown]
52.64 ±157% -69.6% 16.01 ± 26% -28.7% 37.54 ± 73%
perf-sched.wait_time.max.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_apic_timer_interrupt.[unknown]
0.00 -100.0% 0.00 +1.4e+99% 0.00 ±264%
perf-sched.wait_time.max.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_call_function.[unknown]
7.22 ± 50% +363.1% 33.41 ±116% +2.6% 7.41 ± 52%
perf-sched.wait_time.max.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_call_function_single.[unknown]
0.20 ±116% +209.0% 0.62 ±190% -37.4% 0.13 ±195%
perf-sched.wait_time.max.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_irq_work.[unknown]
2.19 ±220% -66.2% 0.74 ±199% -25.4% 1.63 ±257%
perf-sched.wait_time.max.ms.exit_to_user_mode_prepare.irqentry_exit_to_user_mode.asm_sysvec_reschedule_ipi.[unknown]
55.56 ± 46% +28.0% 71.14 ± 43% +9.6% 60.88 ± 67%
perf-sched.wait_time.max.ms.exit_to_user_mode_prepare.syscall_exit_to_user_mode.entry_SYSCALL_64_after_hwframe.[unknown]
405.17 ±179% +105.6% 833.04 ±208% -86.4% 54.98 ±140%
perf-sched.wait_time.max.ms.futex_wait_queue_me.futex_wait.do_futex.__x64_sys_futex
0.00 +3.7e+100% 0.04 ±223% -100.0% 0.00
perf-sched.wait_time.max.ms.io_schedule.__lock_page_killable.filemap_fault.__do_fault
6264 ± 4% +1.4% 6351 ± 2% +3.5% 6480 ± 3%
perf-sched.wait_time.max.ms.pipe_read.new_sync_read.vfs_read.ksys_read
1.28 ± 87% -11.1% 1.14 ±104% -46.8% 0.68 ± 37%
perf-sched.wait_time.max.ms.pipe_write.new_sync_write.vfs_write.ksys_write
0.00 +1.3e+100% 0.01 ±223% +9.9e+99% 0.01 ±264%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.__get_free_pages.pgd_alloc
0.00 +1.4e+100% 0.01 ±223% +1.6e+102% 1.59 ±264%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.__pmd_alloc.copy_page_range
1125 ±210% -61.1% 437.24 ±216% +44.9% 1630 ±164%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.alloc_pages_vma.shmem_alloc_page
0.00 -100.0% 0.00 +1e+101% 0.10 ±264%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.alloc_pages_vma.wp_page_copy
0.03 ±141% +5972.1% 1.81 ±223% -100.0% 0.00
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.__alloc_pages_nodemask.pte_alloc_one.__pte_alloc
931.70 ±219% -98.6% 12.73 ± 99% -99.3% 6.40 ± 88%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.__do_fault.do_fault.__handle_mm_fault
0.00 +5e+99% 0.01 ±223% -100.0% 0.00
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.__kmalloc.inotify_handle_inode_event.fsnotify
0.03 ±141% -100.0% 0.00 +6145.8% 1.73 ±264%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.__kmalloc.security_task_alloc.copy_process
0.01 ±223% +16979.0% 2.31 ±223% -100.0% 0.00
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.__kmalloc_node.__vmalloc_node_range.dup_task_struct
0.00 -100.0% 0.00 +1.1e+100% 0.01 ±264%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.__vmalloc_node_range.dup_task_struct.copy_process
0.00 +2.3e+102% 2.28 ±223% -100.0% 0.00
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.cgroup_can_fork.copy_process.kernel_clone
1.30 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.change_p4d_range.change_protection.mprotect_fixup
2.13 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.copy_page_range.dup_mmap.dup_mm
6.22 ±100% -63.1% 2.29 ±222% -99.8% 0.01 ±264%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.copy_pte_range.copy_page_range.dup_mmap
11.82 ± 48% -8.4% 10.82 ± 44% +6637.8% 796.18 ±258%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.do_user_addr_fault.exc_page_fault.asm_exc_page_fault
0.00 +8.6e+100% 0.09 ±223% -100.0% 0.00
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.down_read.walk_component.link_path_walk
0.47 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.down_write.anon_vma_clone.__split_vma
0.01 ±223% -100.0% 0.00 +23580.2% 3.43 ±173%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.down_write.anon_vma_clone.anon_vma_fork
0.00 +1.4e+100% 0.01 ±223% +1.7e+102% 1.71 ±264%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.down_write.anon_vma_fork.dup_mmap
0.07 ± 44% -79.4% 0.01 ±223% +4360.6% 3.07 ±173%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.down_write.dup_mmap.dup_mm
0.00 +1.1e+105% 1077 ±223% -100.0% 0.00
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.down_write.generic_file_write_iter.new_sync_write
2.13 ±223% -54.8% 0.96 ±223% -48.5% 1.10 ±264%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.down_write.unlink_file_vma.free_pgtables
0.00 -100.0% 0.00 +9e+100% 0.09 ±264%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.down_write_killable.vm_mmap_pgoff.ksys_mmap_pgoff
13.16 -16.7% 10.97 ± 44% -0.9% 13.04 ± 2%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.dput.__fput.task_work_run
0.00 +8e+101% 0.80 ±223% -100.0% 0.00
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.dput.terminate_walk.path_lookupat
0.00 -100.0% 0.00 +6e+101% 0.60 ±264%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.exit_mmap.mmput.do_exit
4189 ± 66% +22.1% 5113 ± 44% +1.3% 4244 ± 64%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.generic_perform_write.__generic_file_write_iter.generic_file_write_iter
0.01 ±104% -8.1% 0.01 ±141% -0.7% 0.01 ± 81%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.khugepaged.kthread.ret_from_fork
0.00 +5.4e+100% 0.05 ±223% -100.0% 0.00
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.__alloc_file.alloc_empty_file
4.60 ±141% -100.0% 0.00 -70.4% 1.36 ±264%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.anon_vma_fork.dup_mmap
1.81 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.copy_fs_struct.copy_process
0.00 +3e+100% 0.03 ±141% +2.3e+100% 0.02 ±173%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.prepare_creds.copy_creds
0.09 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.vm_area_alloc.mmap_region
0.13 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.vm_area_dup.__split_vma
4.60 ±141% -100.0% 0.00 -62.5% 1.72 ±264%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc.vm_area_dup.dup_mmap
0.00 -100.0% 0.00 +1.3e+102% 1.35 ±264%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc_node_trace.__get_vm_area_node.__vmalloc_node_range
0.00 +6.4e+101% 0.64 ±223% -100.0% 0.00
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.kmem_cache_alloc_trace.perf_event_mmap.mmap_region
0.00 +6.6e+101% 0.66 ±222% -100.0% 0.00
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.mutex_lock.perf_event_ctx_lock_nested.isra
1.53 ±186% -23.7% 1.17 ±121% +438.5% 8.22 ± 65%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.mutex_lock.perf_poll.do_sys_poll
0.00 +3.1e+101% 0.31 ±223% +1.5e+102% 1.47 ±264%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.remove_vma.exit_mmap.mmput
2308 ± 25% +0.9% 2328 ± 24% -5.3% 2185 ± 31%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.stop_one_cpu.affine_move_task.__set_cpus_allowed_ptr
0.02 ±142% +40.5% 0.03 ±205% +569.4% 0.13 ±195%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.stop_one_cpu.sched_exec.bprm_execve
0.00 -100.0% 0.00 +3.5e+101% 0.35 ±264%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.task_work_run.do_exit.do_group_exit
0.01 ±223% +15879.1% 2.29 ±223% -25.9% 0.01 ±264%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.uprobe_start_dup_mmap.dup_mmap.dup_mm
0.01 ±223% -100.0% 0.00 +2592.4% 0.35 ±264%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.wp_page_copy.__handle_mm_fault.handle_mm_fault
359.47 ±223% -100.0% 0.00 -100.0% 0.00
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.ww_mutex_lock.drm_gem_vram_vunmap.drm_gem_vunmap
0.14 ±223% +832.9% 1.30 ±223% +151.9% 0.35 ±264%
perf-sched.wait_time.max.ms.preempt_schedule_common.__cond_resched.zap_pte_range.unmap_page_range.unmap_vmas
5.00 -0.1% 4.99 -25.1% 3.74 ± 57%
perf-sched.wait_time.max.ms.rcu_gp_kthread.kthread.ret_from_fork
5932 ± 5% -3.7% 5714 ± 11% +3.8% 6157 ± 3%
perf-sched.wait_time.max.ms.schedule_hrtimeout_range_clock.ep_poll.do_epoll_wait.__x64_sys_epoll_wait
4684 -0.9% 4640 -0.9% 4640
perf-sched.wait_time.max.ms.schedule_hrtimeout_range_clock.poll_schedule_timeout.constprop.0.do_sys_poll
505.00 -0.0% 505.00 -0.0% 504.99
perf-sched.wait_time.max.ms.schedule_timeout.kcompactd.kthread.ret_from_fork
3.34 ± 21% -0.7% 3.31 ± 8% +10.3% 3.68 ± 6%
perf-sched.wait_time.max.ms.schedule_timeout.khugepaged.kthread.ret_from_fork
276.16 ± 32% -11.1% 245.49 ± 17% -30.5% 192.00 ± 71%
perf-sched.wait_time.max.ms.schedule_timeout.rcu_gp_kthread.kthread.ret_from_fork
0.01 ± 52% +4.2% 0.01 ± 54% -11.5% 0.01 ± 67%
perf-sched.wait_time.max.ms.schedule_timeout.wait_for_completion.stop_one_cpu.affine_move_task
7293 ± 18% -12.8% 6359 ± 28% -17.5% 6020 ± 11%
perf-sched.wait_time.max.ms.smpboot_thread_fn.kthread.ret_from_fork
11.63 ± 7% +7.5% 12.50 ± 3% +5.0% 12.21 ± 5%
perf-sched.wait_time.max.ms.wait_for_partner.fifo_open.do_dentry_open.do_open.isra
7627 ± 9% +13.6% 8662 ± 8% -9.1% 6936 ± 10%
perf-sched.wait_time.max.ms.worker_thread.kthread.ret_from_fork
382430 -0.0% 382412 +0.0% 382505
slabinfo.Acpi-Operand.active_objs
6830 -0.0% 6828 +0.0% 6831
slabinfo.Acpi-Operand.active_slabs
382510 -0.0% 382422 +0.0% 382550
slabinfo.Acpi-Operand.num_objs
6830 -0.0% 6828 +0.0% 6831
slabinfo.Acpi-Operand.num_slabs
1338 ± 9% +11.8% 1496 ± 8% +7.7% 1441 ± 10%
slabinfo.Acpi-Parse.active_objs
18.33 ± 9% +11.8% 20.50 ± 8% +7.7% 19.75 ± 10%
slabinfo.Acpi-Parse.active_slabs
1338 ± 9% +11.8% 1496 ± 8% +7.7% 1441 ± 10%
slabinfo.Acpi-Parse.num_objs
18.33 ± 9% +11.8% 20.50 ± 8% +7.7% 19.75 ± 10%
slabinfo.Acpi-Parse.num_slabs
8034 ± 6% +4.1% 8360 ± 9% -0.7% 7980 ± 10%
slabinfo.Acpi-State.active_objs
157.17 ± 6% +4.0% 163.50 ± 9% -0.7% 156.00 ± 10%
slabinfo.Acpi-State.active_slabs
8034 ± 6% +4.1% 8360 ± 9% -0.7% 7980 ± 10%
slabinfo.Acpi-State.num_objs
157.17 ± 6% +4.0% 163.50 ± 9% -0.7% 156.00 ± 10%
slabinfo.Acpi-State.num_slabs
2911 ± 3% -2.7% 2833 ± 8% -2.5% 2839 ± 6%
slabinfo.PING.active_objs
90.33 ± 3% -2.6% 88.00 ± 7% -2.4% 88.12 ± 6%
slabinfo.PING.active_slabs
2911 ± 3% -2.7% 2833 ± 8% -2.5% 2839 ± 6%
slabinfo.PING.num_objs
90.33 ± 3% -2.6% 88.00 ± 7% -2.4% 88.12 ± 6%
slabinfo.PING.num_slabs
384.00 +0.0% 384.00 +0.0% 384.00
slabinfo.RAW.active_objs
12.00 +0.0% 12.00 +0.0% 12.00
slabinfo.RAW.active_slabs
384.00 +0.0% 384.00 +0.0% 384.00
slabinfo.RAW.num_objs
12.00 +0.0% 12.00 +0.0% 12.00
slabinfo.RAW.num_slabs
221.00 ± 5% -2.0% 216.67 ± 5% -5.9% 208.00
slabinfo.RAWv6.active_objs
8.50 ± 5% -2.0% 8.33 ± 5% -5.9% 8.00
slabinfo.RAWv6.active_slabs
221.00 ± 5% -2.0% 216.67 ± 5% -5.9% 208.00
slabinfo.RAWv6.num_objs
8.50 ± 5% -2.0% 8.33 ± 5% -5.9% 8.00
slabinfo.RAWv6.num_slabs
49.00 ± 14% +9.5% 53.67 ± 9% +14.3% 56.00
slabinfo.TCP.active_objs
3.50 ± 14% +9.5% 3.83 ± 9% +14.3% 4.00
slabinfo.TCP.active_slabs
49.00 ± 14% +9.5% 53.67 ± 9% +14.3% 56.00
slabinfo.TCP.num_objs
3.50 ± 14% +9.5% 3.83 ± 9% +14.3% 4.00
slabinfo.TCP.num_slabs
39.00 +0.0% 39.00 +0.0% 39.00
slabinfo.TCPv6.active_objs
3.00 +0.0% 3.00 +0.0% 3.00
slabinfo.TCPv6.active_slabs
39.00 +0.0% 39.00 +0.0% 39.00
slabinfo.TCPv6.num_objs
3.00 +0.0% 3.00 +0.0% 3.00
slabinfo.TCPv6.num_slabs
151.00 ± 10% +5.0% 158.50 ± 5% -0.7% 150.00 ± 8%
slabinfo.UDPv6.active_objs
5.67 ± 8% +2.9% 5.83 ± 6% -2.9% 5.50 ± 9%
slabinfo.UDPv6.active_slabs
151.00 ± 10% +5.0% 158.50 ± 5% -0.7% 150.00 ± 8%
slabinfo.UDPv6.num_objs
5.67 ± 8% +2.9% 5.83 ± 6% -2.9% 5.50 ± 9%
slabinfo.UDPv6.num_slabs
37124 ± 2% -1.2% 36674 ± 3% +0.7% 37399
slabinfo.anon_vma.active_objs
806.50 ± 2% -1.2% 796.50 ± 3% +0.7% 812.38
slabinfo.anon_vma.active_slabs
37124 ± 2% -1.2% 36674 ± 3% +0.7% 37399
slabinfo.anon_vma.num_objs
806.50 ± 2% -1.2% 796.50 ± 3% +0.7% 812.38
slabinfo.anon_vma.num_slabs
80309 -1.4% 79189 ± 2% +0.8% 80960 ± 2%
slabinfo.anon_vma_chain.active_objs
1254 -1.4% 1236 ± 2% +0.8% 1264 ± 2%
slabinfo.anon_vma_chain.active_slabs
80309 -1.4% 79189 ± 2% +0.8% 80960 ± 2%
slabinfo.anon_vma_chain.num_objs
1254 -1.4% 1236 ± 2% +0.8% 1264 ± 2%
slabinfo.anon_vma_chain.num_slabs
43.33 ± 17% -7.7% 40.00 -1.9% 42.50 ± 15%
slabinfo.bdev_cache.active_objs
2.17 ± 17% -7.7% 2.00 -1.9% 2.12 ± 15%
slabinfo.bdev_cache.active_slabs
43.33 ± 17% -7.7% 40.00 -1.9% 42.50 ± 15%
slabinfo.bdev_cache.num_objs
2.17 ± 17% -7.7% 2.00 -1.9% 2.12 ± 15%
slabinfo.bdev_cache.num_slabs
24.00 ± 33% +33.3% 32.00 +8.3% 26.00 ± 29%
slabinfo.biovec-128.active_objs
1.50 ± 33% +33.3% 2.00 +8.3% 1.62 ± 29%
slabinfo.biovec-128.active_slabs
24.00 ± 33% +33.3% 32.00 +8.3% 26.00 ± 29%
slabinfo.biovec-128.num_objs
1.50 ± 33% +33.3% 2.00 +8.3% 1.62 ± 29%
slabinfo.biovec-128.num_slabs
277.33 ± 25% -1.9% 272.00 ± 26% +1.0% 280.00 ± 24%
slabinfo.biovec-64.active_objs
8.67 ± 25% -1.9% 8.50 ± 26% +1.0% 8.75 ± 24%
slabinfo.biovec-64.active_slabs
277.33 ± 25% -1.9% 272.00 ± 26% +1.0% 280.00 ± 24%
slabinfo.biovec-64.num_objs
8.67 ± 25% -1.9% 8.50 ± 26% +1.0% 8.75 ± 24%
slabinfo.biovec-64.num_slabs
64.00 +0.0% 64.00 +1.6% 65.00 ± 4%
slabinfo.biovec-max.active_objs
8.00 +0.0% 8.00 +1.6% 8.12 ± 4%
slabinfo.biovec-max.active_slabs
64.00 +0.0% 64.00 +1.6% 65.00 ± 4%
slabinfo.biovec-max.num_objs
8.00 +0.0% 8.00 +1.6% 8.12 ± 4%
slabinfo.biovec-max.num_slabs
78.00 +0.0% 78.00 +6.2% 82.88 ± 15%
slabinfo.buffer_head.active_objs
2.00 +0.0% 2.00 +6.2% 2.12 ± 15%
slabinfo.buffer_head.active_slabs
78.00 +0.0% 78.00 +6.2% 82.88 ± 15%
slabinfo.buffer_head.num_objs
2.00 +0.0% 2.00 +6.2% 2.12 ± 15%
slabinfo.buffer_head.num_slabs
10150 -1.4% 10009 ± 2% +0.6% 10209
slabinfo.cred_jar.active_objs
241.00 -1.3% 237.83 ± 2% +0.7% 242.62
slabinfo.cred_jar.active_slabs
10150 -1.4% 10009 ± 2% +0.6% 10209
slabinfo.cred_jar.num_objs
241.00 -1.3% 237.83 ± 2% +0.7% 242.62
slabinfo.cred_jar.num_slabs
42.00 +0.0% 42.00 +0.0% 42.00
slabinfo.dax_cache.active_objs
1.00 +0.0% 1.00 +0.0% 1.00
slabinfo.dax_cache.active_slabs
42.00 +0.0% 42.00 +0.0% 42.00
slabinfo.dax_cache.num_objs
1.00 +0.0% 1.00 +0.0% 1.00
slabinfo.dax_cache.num_slabs
169835 +1.3% 172012 ± 3% +0.1% 170067 ± 2%
slabinfo.dentry.active_objs
4077 +1.2% 4125 ± 3% +0.2% 4085 ± 2%
slabinfo.dentry.active_slabs
171255 +1.2% 173272 ± 3% +0.2% 171607 ± 2%
slabinfo.dentry.num_objs
4077 +1.2% 4125 ± 3% +0.2% 4085 ± 2%
slabinfo.dentry.num_slabs
30.00 +0.0% 30.00 +0.0% 30.00
slabinfo.dmaengine-unmap-128.active_objs
1.00 +0.0% 1.00 +0.0% 1.00
slabinfo.dmaengine-unmap-128.active_slabs
30.00 +0.0% 30.00 +0.0% 30.00
slabinfo.dmaengine-unmap-128.num_objs
1.00 +0.0% 1.00 +0.0% 1.00
slabinfo.dmaengine-unmap-128.num_slabs
1366 ± 18% -3.6% 1316 ± 11% +7.2% 1465 ± 23%
slabinfo.dmaengine-unmap-16.active_objs
32.00 ± 17% -3.6% 30.83 ± 11% +7.4% 34.38 ± 24%
slabinfo.dmaengine-unmap-16.active_slabs
1366 ± 18% -3.6% 1316 ± 11% +7.2% 1465 ± 23%
slabinfo.dmaengine-unmap-16.num_objs
32.00 ± 17% -3.6% 30.83 ± 11% +7.4% 34.38 ± 24%
slabinfo.dmaengine-unmap-16.num_slabs
15.00 +0.0% 15.00 +0.0% 15.00
slabinfo.dmaengine-unmap-256.active_objs
1.00 +0.0% 1.00 +0.0% 1.00
slabinfo.dmaengine-unmap-256.active_slabs
15.00 +0.0% 15.00 +0.0% 15.00
slabinfo.dmaengine-unmap-256.num_objs
1.00 +0.0% 1.00 +0.0% 1.00
slabinfo.dmaengine-unmap-256.num_slabs
32407 ± 9% -4.4% 30987 ± 15% +11.6% 36161 ± 18%
slabinfo.ep_head.active_objs
126.33 ± 9% -4.5% 120.67 ± 16% +11.5% 140.88 ± 18%
slabinfo.ep_head.active_slabs
32407 ± 9% -4.4% 30987 ± 15% +11.6% 36161 ± 18%
slabinfo.ep_head.num_objs
126.33 ± 9% -4.5% 120.67 ± 16% +11.5% 140.88 ± 18%
slabinfo.ep_head.num_slabs
1166 ± 12% +1.0% 1177 ± 14% -2.3% 1139 ± 8%
slabinfo.file_lock_cache.active_objs
31.33 ± 12% +1.1% 31.67 ± 13% -3.1% 30.38 ± 7%
slabinfo.file_lock_cache.active_slabs
1166 ± 12% +1.0% 1177 ± 14% -2.3% 1139 ± 8%
slabinfo.file_lock_cache.num_objs
31.33 ± 12% +1.1% 31.67 ± 13% -3.1% 30.38 ± 7%
slabinfo.file_lock_cache.num_slabs
6601 ± 4% -0.4% 6578 ± 11% +1.9% 6726 ± 12%
slabinfo.files_cache.active_objs
143.17 ± 4% -0.5% 142.50 ± 11% +1.8% 145.75 ± 12%
slabinfo.files_cache.active_slabs
6601 ± 4% -0.4% 6578 ± 11% +1.9% 6726 ± 12%
slabinfo.files_cache.num_objs
143.17 ± 4% -0.5% 142.50 ± 11% +1.8% 145.75 ± 12%
slabinfo.files_cache.num_slabs
75065 ± 3% +3.5% 77711 ± 9% +2.0% 76559 ± 7%
slabinfo.filp.active_objs
1178 ± 3% +3.5% 1219 ± 10% +2.0% 1202 ± 7%
slabinfo.filp.active_slabs
75430 ± 3% +3.5% 78047 ± 10% +2.0% 76964 ± 7%
slabinfo.filp.num_objs
1178 ± 3% +3.5% 1219 ± 10% +2.0% 1202 ± 7%
slabinfo.filp.num_slabs
2575 ± 10% +2.7% 2645 ± 10% +5.9% 2727 ± 11%
slabinfo.fsnotify_mark_connector.active_objs
20.00 ± 10% +3.3% 20.67 ± 10% +5.6% 21.12 ± 10%
slabinfo.fsnotify_mark_connector.active_slabs
2575 ± 10% +2.7% 2645 ± 10% +5.9% 2727 ± 11%
slabinfo.fsnotify_mark_connector.num_objs
20.00 ± 10% +3.3% 20.67 ± 10% +5.6% 21.12 ± 10%
slabinfo.fsnotify_mark_connector.num_slabs
50405 +0.1% 50433 +0.2% 50490
slabinfo.ftrace_event_field.active_objs
593.00 +0.1% 593.33 +0.2% 594.00
slabinfo.ftrace_event_field.active_slabs
50405 +0.1% 50433 +0.2% 50490
slabinfo.ftrace_event_field.num_objs
593.00 +0.1% 593.33 +0.2% 594.00
slabinfo.ftrace_event_field.num_slabs
104.00 +0.0% 104.00 +0.0% 104.00
slabinfo.hugetlbfs_inode_cache.active_objs
2.00 +0.0% 2.00 +0.0% 2.00
slabinfo.hugetlbfs_inode_cache.active_slabs
104.00 +0.0% 104.00 +0.0% 104.00
slabinfo.hugetlbfs_inode_cache.num_objs
2.00 +0.0% 2.00 +0.0% 2.00
slabinfo.hugetlbfs_inode_cache.num_slabs
96529 -0.6% 95978 -0.4% 96130
slabinfo.inode_cache.active_objs
1790 -0.6% 1780 -0.4% 1783
slabinfo.inode_cache.active_slabs
96720 -0.6% 96163 -0.4% 96330
slabinfo.inode_cache.num_objs
1790 -0.6% 1780 -0.4% 1783
slabinfo.inode_cache.num_slabs
44.00 +0.0% 44.00 +0.0% 44.00
slabinfo.ip6-frags.active_objs
1.00 +0.0% 1.00 +0.0% 1.00
slabinfo.ip6-frags.active_slabs
44.00 +0.0% 44.00 +0.0% 44.00
slabinfo.ip6-frags.num_objs
1.00 +0.0% 1.00 +0.0% 1.00
slabinfo.ip6-frags.num_slabs
130233 -0.2% 130010 -0.0% 130171
slabinfo.kernfs_node_cache.active_objs
2034 -0.2% 2031 -0.0% 2033
slabinfo.kernfs_node_cache.active_slabs
130233 -0.2% 130010 -0.0% 130171
slabinfo.kernfs_node_cache.num_objs
2034 -0.2% 2031 -0.0% 2033
slabinfo.kernfs_node_cache.num_slabs
1847 ± 8% -7.2% 1714 ± 7% -4.5% 1763 ± 8%
slabinfo.khugepaged_mm_slot.active_objs
50.33 ± 9% -7.3% 46.67 ± 7% -4.6% 48.00 ± 8%
slabinfo.khugepaged_mm_slot.active_slabs
1847 ± 8% -7.2% 1714 ± 7% -4.5% 1763 ± 8%
slabinfo.khugepaged_mm_slot.num_objs
50.33 ± 9% -7.3% 46.67 ± 7% -4.6% 48.00 ± 8%
slabinfo.khugepaged_mm_slot.num_slabs
15107 -0.4% 15048 -0.5% 15033
slabinfo.kmalloc-128.active_objs
238.33 -0.7% 236.67 -0.8% 236.38
slabinfo.kmalloc-128.active_slabs
15284 -0.7% 15181 -0.8% 15161
slabinfo.kmalloc-128.num_objs
238.33 -0.7% 236.67 -0.8% 236.38
slabinfo.kmalloc-128.num_slabs
61993 -0.3% 61820 -0.3% 61828
slabinfo.kmalloc-16.active_objs
242.67 -0.1% 242.33 -0.2% 242.12
slabinfo.kmalloc-16.active_slabs
62122 -0.1% 62037 -0.2% 61984
slabinfo.kmalloc-16.num_objs
242.67 -0.1% 242.33 -0.2% 242.12
slabinfo.kmalloc-16.num_slabs
10584 -1.0% 10477 -0.9% 10490
slabinfo.kmalloc-192.active_objs
258.00 -1.0% 255.50 -1.1% 255.12
slabinfo.kmalloc-192.active_slabs
10842 -1.0% 10731 -1.2% 10715
slabinfo.kmalloc-192.num_objs
258.00 -1.0% 255.50 -1.1% 255.12
slabinfo.kmalloc-192.num_slabs
9964 ± 2% +0.8% 10039 ± 2% -0.6% 9902
slabinfo.kmalloc-1k.active_objs
317.67 ± 2% +0.6% 319.67 ± 2% -0.7% 315.38
slabinfo.kmalloc-1k.active_slabs
10176 ± 2% +0.7% 10246 ± 2% -0.8% 10099
slabinfo.kmalloc-1k.num_objs
317.67 ± 2% +0.6% 319.67 ± 2% -0.7% 315.38
slabinfo.kmalloc-1k.num_slabs
16719 -0.1% 16701 -0.1% 16705
slabinfo.kmalloc-256.active_objs
265.50 +0.1% 265.67 +0.2% 266.12
slabinfo.kmalloc-256.active_slabs
17020 +0.2% 17052 +0.2% 17061
slabinfo.kmalloc-256.num_objs
265.50 +0.1% 265.67 +0.2% 266.12
slabinfo.kmalloc-256.num_slabs
12125 -0.6% 12058 +0.7% 12209
slabinfo.kmalloc-2k.active_objs
770.67 -0.5% 766.67 +0.6% 775.00
slabinfo.kmalloc-2k.active_slabs
12334 -0.5% 12273 +0.6% 12406
slabinfo.kmalloc-2k.num_objs
770.67 -0.5% 766.67 +0.6% 775.00
slabinfo.kmalloc-2k.num_slabs
137577 +0.7% 138500 +0.4% 138183
slabinfo.kmalloc-32.active_objs
1078 +0.8% 1086 +0.4% 1082
slabinfo.kmalloc-32.active_slabs
138071 +0.7% 139060 +0.4% 138589
slabinfo.kmalloc-32.num_objs
1078 +0.8% 1086 +0.4% 1082
slabinfo.kmalloc-32.num_slabs
3140 -0.2% 3132 -0.7% 3118
slabinfo.kmalloc-4k.active_objs
396.83 +0.2% 397.67 -0.6% 394.50
slabinfo.kmalloc-4k.active_slabs
3179 +0.1% 3183 -0.6% 3160
slabinfo.kmalloc-4k.num_objs
396.83 +0.2% 397.67 -0.6% 394.50
slabinfo.kmalloc-4k.num_slabs
28067 ± 2% +1.2% 28411 ± 3% -0.7% 27873 ± 3%
slabinfo.kmalloc-512.active_objs
444.17 ± 2% +1.3% 450.00 ± 4% -0.5% 442.12 ± 3%
slabinfo.kmalloc-512.active_slabs
28466 ± 2% +1.3% 28850 ± 3% -0.5% 28332 ± 3%
slabinfo.kmalloc-512.num_objs
444.17 ± 2% +1.3% 450.00 ± 4% -0.5% 442.12 ± 3%
slabinfo.kmalloc-512.num_slabs
88949 -0.1% 88878 +0.2% 89086
slabinfo.kmalloc-64.active_objs
1394 +0.0% 1394 +0.2% 1397
slabinfo.kmalloc-64.active_slabs
89251 +0.0% 89252 +0.2% 89445
slabinfo.kmalloc-64.num_objs
1394 +0.0% 1394 +0.2% 1397
slabinfo.kmalloc-64.num_slabs
105170 +0.1% 105276 +0.4% 105553
slabinfo.kmalloc-8.active_objs
211.33 +0.4% 212.17 +1.1% 213.62
slabinfo.kmalloc-8.active_slabs
108237 +0.7% 108949 +1.4% 109779
slabinfo.kmalloc-8.num_objs
211.33 +0.4% 212.17 +1.1% 213.62
slabinfo.kmalloc-8.num_slabs
1481 -0.0% 1481 -0.0% 1481
slabinfo.kmalloc-8k.active_objs
383.50 -0.1% 383.17 -0.0% 383.38
slabinfo.kmalloc-8k.active_slabs
1535 -0.1% 1535 -0.0% 1535
slabinfo.kmalloc-8k.num_objs
383.50 -0.1% 383.17 -0.0% 383.38
slabinfo.kmalloc-8k.num_slabs
15674 ± 3% -0.2% 15642 ± 2% +1.1% 15848 ± 2%
slabinfo.kmalloc-96.active_objs
375.83 ± 3% -0.2% 375.17 +1.2% 380.25 ± 2%
slabinfo.kmalloc-96.active_slabs
15804 ± 3% -0.2% 15767 ± 2% +1.2% 15994 ± 2%
slabinfo.kmalloc-96.num_objs
375.83 ± 3% -0.2% 375.17 +1.2% 380.25 ± 2%
slabinfo.kmalloc-96.num_slabs
576.00 ± 6% +9.3% 629.33 ± 9% +8.3% 624.00 ± 6%
slabinfo.kmalloc-rcl-128.active_objs
9.00 ± 6% +9.3% 9.83 ± 9% +8.3% 9.75 ± 6%
slabinfo.kmalloc-rcl-128.active_slabs
576.00 ± 6% +9.3% 629.33 ± 9% +8.3% 624.00 ± 6%
slabinfo.kmalloc-rcl-128.num_objs
9.00 ± 6% +9.3% 9.83 ± 9% +8.3% 9.75 ± 6%
slabinfo.kmalloc-rcl-128.num_slabs
91.00 ± 17% -7.7% 84.00 -1.9% 89.25 ± 15%
slabinfo.kmalloc-rcl-192.active_objs
2.17 ± 17% -7.7% 2.00 -1.9% 2.12 ± 15%
slabinfo.kmalloc-rcl-192.active_slabs
91.00 ± 17% -7.7% 84.00 -1.9% 89.25 ± 15%
slabinfo.kmalloc-rcl-192.num_objs
2.17 ± 17% -7.7% 2.00 -1.9% 2.12 ± 15%
slabinfo.kmalloc-rcl-192.num_slabs
192.00 +0.0% 192.00 +0.0% 192.00
slabinfo.kmalloc-rcl-256.active_objs
3.00 +0.0% 3.00 +0.0% 3.00
slabinfo.kmalloc-rcl-256.active_slabs
192.00 +0.0% 192.00 +0.0% 192.00
slabinfo.kmalloc-rcl-256.num_objs
3.00 +0.0% 3.00 +0.0% 3.00
slabinfo.kmalloc-rcl-256.num_slabs
14228 -0.5% 14155 -0.1% 14215
slabinfo.kmalloc-rcl-512.active_objs
222.17 -0.5% 221.00 -0.1% 221.88
slabinfo.kmalloc-rcl-512.active_slabs
14240 -0.6% 14155 -0.1% 14226
slabinfo.kmalloc-rcl-512.num_objs
222.17 -0.5% 221.00 -0.1% 221.88
slabinfo.kmalloc-rcl-512.num_slabs
6907 ± 2% +0.1% 6914 -1.6% 6793 ± 6%
slabinfo.kmalloc-rcl-64.active_objs
107.50 ± 2% -0.2% 107.33 -2.0% 105.38 ± 6%
slabinfo.kmalloc-rcl-64.active_slabs
6907 ± 2% +0.1% 6914 -1.6% 6793 ± 6%
slabinfo.kmalloc-rcl-64.num_objs
107.50 ± 2% -0.2% 107.33 -2.0% 105.38 ± 6%
slabinfo.kmalloc-rcl-64.num_slabs
2059 ± 6% -2.3% 2012 ± 5% -2.9% 2000 ± 4%
slabinfo.kmalloc-rcl-96.active_objs
48.67 ± 6% -2.1% 47.67 ± 5% -2.9% 47.25 ± 4%
slabinfo.kmalloc-rcl-96.active_slabs
2059 ± 6% -2.3% 2012 ± 5% -2.9% 2000 ± 4%
slabinfo.kmalloc-rcl-96.num_objs
48.67 ± 6% -2.1% 47.67 ± 5% -2.9% 47.25 ± 4%
slabinfo.kmalloc-rcl-96.num_slabs
746.67 ± 10% -1.4% 736.00 ± 8% -2.5% 728.00 ± 6%
slabinfo.kmem_cache.active_objs
11.67 ± 10% -1.4% 11.50 ± 8% -2.5% 11.38 ± 6%
slabinfo.kmem_cache.active_slabs
746.67 ± 10% -1.4% 736.00 ± 8% -2.5% 728.00 ± 6%
slabinfo.kmem_cache.num_objs
11.67 ± 10% -1.4% 11.50 ± 8% -2.5% 11.38 ± 6%
slabinfo.kmem_cache.num_slabs
1217 ± 6% -0.9% 1207 ± 5% -1.5% 1199 ± 3%
slabinfo.kmem_cache_node.active_objs
20.67 ± 6% -0.8% 20.50 ± 4% -1.4% 20.38 ± 3%
slabinfo.kmem_cache_node.active_slabs
1322 ± 6% -0.8% 1312 ± 4% -1.4% 1304 ± 3%
slabinfo.kmem_cache_node.num_objs
20.67 ± 6% -0.8% 20.50 ± 4% -1.4% 20.38 ± 3%
slabinfo.kmem_cache_node.num_slabs
36193 -0.2% 36109 -0.3% 36068
slabinfo.lsm_file_cache.active_objs
212.00 -0.2% 211.50 -0.4% 211.25
slabinfo.lsm_file_cache.active_slabs
36193 -0.2% 36109 -0.3% 36068
slabinfo.lsm_file_cache.num_objs
212.00 -0.2% 211.50 -0.4% 211.25
slabinfo.lsm_file_cache.num_slabs
5327 ± 3% +1.7% 5416 ± 7% +4.1% 5544 ± 7%
slabinfo.mm_struct.active_objs
176.83 ± 3% +1.9% 180.17 ± 7% +4.2% 184.25 ± 6%
slabinfo.mm_struct.active_slabs
5327 ± 3% +1.7% 5416 ± 7% +4.1% 5544 ± 7%
slabinfo.mm_struct.num_objs
176.83 ± 3% +1.9% 180.17 ± 7% +4.2% 184.25 ± 6%
slabinfo.mm_struct.num_slabs
900.00 ± 7% +7.6% 968.00 ± 8% +6.1% 955.25 ± 7%
slabinfo.mnt_cache.active_objs
16.67 ± 7% +8.0% 18.00 ± 8% +6.5% 17.75 ± 7%
slabinfo.mnt_cache.active_slabs
900.00 ± 7% +7.6% 968.00 ± 8% +6.1% 955.25 ± 7%
slabinfo.mnt_cache.num_objs
16.67 ± 7% +8.0% 18.00 ± 8% +6.5% 17.75 ± 7%
slabinfo.mnt_cache.num_slabs
34.00 +0.0% 34.00 +0.0% 34.00
slabinfo.mqueue_inode_cache.active_objs
1.00 +0.0% 1.00 +0.0% 1.00
slabinfo.mqueue_inode_cache.active_slabs
34.00 +0.0% 34.00 +0.0% 34.00
slabinfo.mqueue_inode_cache.num_objs
1.00 +0.0% 1.00 +0.0% 1.00
slabinfo.mqueue_inode_cache.num_slabs
1536 +0.0% 1536 +0.1% 1537
slabinfo.names_cache.active_objs
192.00 +0.0% 192.00 +0.1% 192.12
slabinfo.names_cache.active_slabs
1536 +0.0% 1536 +0.1% 1537
slabinfo.names_cache.num_objs
192.00 +0.0% 192.00 +0.1% 192.12
slabinfo.names_cache.num_slabs
36.00 +0.0% 36.00 +0.0% 36.00
slabinfo.nfs_read_data.active_objs
1.00 +0.0% 1.00 +0.0% 1.00
slabinfo.nfs_read_data.active_slabs
36.00 +0.0% 36.00 +0.0% 36.00
slabinfo.nfs_read_data.num_objs
1.00 +0.0% 1.00 +0.0% 1.00
slabinfo.nfs_read_data.num_slabs
310.00 -6.7% 289.33 ± 10% +0.0% 310.00
slabinfo.numa_policy.active_objs
5.00 -6.7% 4.67 ± 10% +0.0% 5.00
slabinfo.numa_policy.active_slabs
310.00 -6.7% 289.33 ± 10% +0.0% 310.00
slabinfo.numa_policy.num_objs
5.00 -6.7% 4.67 ± 10% +0.0% 5.00
slabinfo.numa_policy.num_slabs
13716 ± 5% +3.6% 14207 ± 10% +3.1% 14135 ± 8%
slabinfo.pde_opener.active_objs
134.17 ± 5% +3.4% 138.67 ± 10% +3.0% 138.12 ± 8%
slabinfo.pde_opener.active_slabs
13716 ± 5% +3.6% 14207 ± 10% +3.1% 14135 ± 8%
slabinfo.pde_opener.num_objs
134.17 ± 5% +3.4% 138.67 ± 10% +3.0% 138.12 ± 8%
slabinfo.pde_opener.num_slabs
13947 ± 2% +0.7% 14042 +0.9% 14078
slabinfo.pid.active_objs
217.17 ± 2% +0.7% 218.67 +0.9% 219.12
slabinfo.pid.active_slabs
13947 ± 2% +0.7% 14042 +0.9% 14078
slabinfo.pid.num_objs
217.17 ± 2% +0.7% 218.67 +0.9% 219.12
slabinfo.pid.num_slabs
3230 ± 8% +5.1% 3393 ± 8% +5.4% 3405 ± 5%
slabinfo.pool_workqueue.active_objs
53.00 ± 8% +4.1% 55.17 ± 8% +5.0% 55.62 ± 4%
slabinfo.pool_workqueue.active_slabs
3399 ± 8% +4.4% 3549 ± 8% +5.3% 3579 ± 4%
slabinfo.pool_workqueue.num_objs
53.00 ± 8% +4.1% 55.17 ± 8% +5.0% 55.62 ± 4%
slabinfo.pool_workqueue.num_slabs
2772 ± 3% +2.5% 2842 ± 2% +1.3% 2808 ± 2%
slabinfo.proc_dir_entry.active_objs
66.00 ± 3% +2.5% 67.67 ± 2% +1.3% 66.88 ± 2%
slabinfo.proc_dir_entry.active_slabs
2772 ± 3% +2.5% 2842 ± 2% +1.3% 2808 ± 2%
slabinfo.proc_dir_entry.num_objs
66.00 ± 3% +2.5% 67.67 ± 2% +1.3% 66.88 ± 2%
slabinfo.proc_dir_entry.num_slabs
21723 ± 2% +1.9% 22136 ± 2% +3.2% 22418 ± 2%
slabinfo.proc_inode_cache.active_objs
460.00 ± 2% +1.6% 467.17 ± 3% +3.6% 476.62 ± 2%
slabinfo.proc_inode_cache.active_slabs
22090 ± 2% +1.6% 22440 ± 3% +3.7% 22908 ± 2%
slabinfo.proc_inode_cache.num_objs
460.00 ± 2% +1.6% 467.17 ± 3% +3.6% 476.62 ± 2%
slabinfo.proc_inode_cache.num_slabs
28677 +0.1% 28720 +0.4% 28798
slabinfo.radix_tree_node.active_objs
511.50 +0.2% 512.33 +0.4% 513.75
slabinfo.radix_tree_node.active_slabs
28677 +0.1% 28720 +0.4% 28798
slabinfo.radix_tree_node.num_objs
511.50 +0.2% 512.33 +0.4% 513.75
slabinfo.radix_tree_node.num_slabs
24.00 ± 33% -11.1% 21.33 ± 35% +8.3% 26.00 ± 29%
slabinfo.request_queue.active_objs
1.50 ± 33% -11.1% 1.33 ± 35% +8.3% 1.62 ± 29%
slabinfo.request_queue.active_slabs
24.00 ± 33% -11.1% 21.33 ± 35% +8.3% 26.00 ± 29%
slabinfo.request_queue.num_objs
1.50 ± 33% -11.1% 1.33 ± 35% +8.3% 1.62 ± 29%
slabinfo.request_queue.num_slabs
51.00 +0.0% 51.00 +0.0% 51.00
slabinfo.rpc_inode_cache.active_objs
1.00 +0.0% 1.00 +0.0% 1.00
slabinfo.rpc_inode_cache.active_slabs
51.00 +0.0% 51.00 +0.0% 51.00
slabinfo.rpc_inode_cache.num_objs
1.00 +0.0% 1.00 +0.0% 1.00
slabinfo.rpc_inode_cache.num_slabs
320.00 +0.0% 320.00 +0.0% 320.00
slabinfo.scsi_sense_cache.active_objs
5.00 +0.0% 5.00 +0.0% 5.00
slabinfo.scsi_sense_cache.active_slabs
320.00 +0.0% 320.00 +0.0% 320.00
slabinfo.scsi_sense_cache.num_objs
5.00 +0.0% 5.00 +0.0% 5.00
slabinfo.scsi_sense_cache.num_slabs
13056 +0.0% 13056 +0.0% 13056
slabinfo.seq_file.active_objs
192.00 +0.0% 192.00 +0.0% 192.00
slabinfo.seq_file.active_slabs
13056 +0.0% 13056 +0.0% 13056
slabinfo.seq_file.num_objs
192.00 +0.0% 192.00 +0.0% 192.00
slabinfo.seq_file.num_slabs
8140 ± 6% +5.6% 8592 ± 6% +3.3% 8409 ± 7%
slabinfo.shmem_inode_cache.active_objs
176.50 ± 6% +5.5% 186.17 ± 6% +3.3% 182.38 ± 7%
slabinfo.shmem_inode_cache.active_slabs
8140 ± 6% +5.6% 8592 ± 6% +3.3% 8409 ± 7%
slabinfo.shmem_inode_cache.num_objs
176.50 ± 6% +5.5% 186.17 ± 6% +3.3% 182.38 ± 7%
slabinfo.shmem_inode_cache.num_slabs
3784 ± 2% +0.4% 3801 ± 6% +0.4% 3798 ± 6%
slabinfo.sighand_cache.active_objs
254.67 -0.3% 254.00 ± 6% +0.4% 255.62 ± 6%
slabinfo.sighand_cache.active_slabs
3825 -0.3% 3813 ± 6% +0.4% 3840 ± 6%
slabinfo.sighand_cache.num_objs
254.67 -0.3% 254.00 ± 6% +0.4% 255.62 ± 6%
slabinfo.sighand_cache.num_slabs
5880 ± 4% -0.8% 5833 ± 7% -0.9% 5826 ± 6%
slabinfo.signal_cache.active_objs
212.33 ± 3% -2.0% 208.00 ± 7% -1.2% 209.88 ± 6%
slabinfo.signal_cache.active_slabs
5955 ± 3% -1.8% 5845 ± 7% -1.1% 5891 ± 6%
slabinfo.signal_cache.num_objs
212.33 ± 3% -2.0% 208.00 ± 7% -1.2% 209.88 ± 6%
slabinfo.signal_cache.num_slabs
128.00 +0.0% 128.00 +0.0% 128.00
slabinfo.skbuff_fclone_cache.active_objs
2.00 +0.0% 2.00 +0.0% 2.00
slabinfo.skbuff_fclone_cache.active_slabs
128.00 +0.0% 128.00 +0.0% 128.00
slabinfo.skbuff_fclone_cache.num_objs
2.00 +0.0% 2.00 +0.0% 2.00
slabinfo.skbuff_fclone_cache.num_slabs
13365 ± 2% -1.4% 13184 ± 2% +0.3% 13408 ± 3%
slabinfo.skbuff_head_cache.active_objs
208.83 ± 2% -1.2% 206.33 ± 2% +0.3% 209.50 ± 3%
slabinfo.skbuff_head_cache.active_slabs
13365 ± 2% -1.2% 13205 ± 2% +0.3% 13408 ± 3%
slabinfo.skbuff_head_cache.num_objs
208.83 ± 2% -1.2% 206.33 ± 2% +0.3% 209.50 ± 3%
slabinfo.skbuff_head_cache.num_slabs
4947 ± 3% +0.7% 4980 ± 5% -0.9% 4904 ± 4%
slabinfo.sock_inode_cache.active_objs
126.33 ± 3% +0.7% 127.17 ± 5% -1.0% 125.12 ± 5%
slabinfo.sock_inode_cache.active_slabs
4947 ± 3% +0.7% 4980 ± 5% -0.9% 4904 ± 4%
slabinfo.sock_inode_cache.num_objs
126.33 ± 3% +0.7% 127.17 ± 5% -1.0% 125.12 ± 5%
slabinfo.sock_inode_cache.num_slabs
11698 ± 2% +1.3% 11854 +1.5% 11874
slabinfo.task_delay_info.active_objs
228.83 ± 2% +1.4% 232.00 +1.5% 232.38
slabinfo.task_delay_info.active_slabs
11698 ± 2% +1.3% 11854 +1.5% 11874
slabinfo.task_delay_info.num_objs
228.83 ± 2% +1.4% 232.00 +1.5% 232.38
slabinfo.task_delay_info.num_slabs
1450 ± 9% -2.0% 1421 ± 6% -0.2% 1448 ± 4%
slabinfo.task_group.active_objs
31.00 ± 8% -1.1% 30.67 ± 5% +0.0% 31.00 ± 3%
slabinfo.task_group.active_slabs
1450 ± 9% -2.0% 1421 ± 6% -0.2% 1448 ± 4%
slabinfo.task_group.num_objs
31.00 ± 8% -1.1% 30.67 ± 5% +0.0% 31.00 ± 3%
slabinfo.task_group.num_slabs
2322 -0.3% 2315 +0.1% 2323
slabinfo.task_struct.active_objs
2337 -0.3% 2330 +0.1% 2339
slabinfo.task_struct.active_slabs
2337 -0.3% 2330 +0.1% 2339
slabinfo.task_struct.num_objs
2337 -0.3% 2330 +0.1% 2339
slabinfo.task_struct.num_slabs
145.33 +0.1% 145.50 +0.3% 145.75
slabinfo.taskstats.active_objs
3.00 +0.0% 3.00 +0.0% 3.00
slabinfo.taskstats.active_slabs
145.33 +0.1% 145.50 +0.3% 145.75
slabinfo.taskstats.num_objs
3.00 +0.0% 3.00 +0.0% 3.00
slabinfo.taskstats.num_slabs
3798 ± 2% +2.0% 3875 ± 3% +0.6% 3820 ± 2%
slabinfo.trace_event_file.active_objs
82.33 ± 2% +2.0% 84.00 ± 3% +0.7% 82.88 ± 2%
slabinfo.trace_event_file.active_slabs
3798 ± 2% +2.0% 3875 ± 3% +0.6% 3820 ± 2%
slabinfo.trace_event_file.num_objs
82.33 ± 2% +2.0% 84.00 ± 3% +0.7% 82.88 ± 2%
slabinfo.trace_event_file.num_slabs
66.00 +0.0% 66.00 +0.0% 66.00
slabinfo.tw_sock_TCP.active_objs
1.00 +0.0% 1.00 +0.0% 1.00
slabinfo.tw_sock_TCP.active_slabs
66.00 +0.0% 66.00 +0.0% 66.00
slabinfo.tw_sock_TCP.num_objs
1.00 +0.0% 1.00 +0.0% 1.00
slabinfo.tw_sock_TCP.num_slabs
88773 -1.2% 87704 ± 4% +1.9% 90479 ± 2%
slabinfo.vm_area_struct.active_objs
2226 -1.1% 2202 ± 4% +1.9% 2268 ± 2%
slabinfo.vm_area_struct.active_slabs
89080 -1.1% 88120 ± 4% +1.9% 90758 ± 2%
slabinfo.vm_area_struct.num_objs
2226 -1.1% 2202 ± 4% +1.9% 2268 ± 2%
slabinfo.vm_area_struct.num_slabs
22474 -0.8% 22304 -0.8% 22297
slabinfo.vmap_area.active_objs
350.83 -0.7% 348.50 -0.8% 348.00
slabinfo.vmap_area.active_slabs
22487 -0.7% 22328 -0.8% 22314
slabinfo.vmap_area.num_objs
350.83 -0.7% 348.50 -0.8% 348.00
slabinfo.vmap_area.num_slabs
42.00 +0.0% 42.00 +0.0% 42.00
slabinfo.xfrm_state.active_objs
1.00 +0.0% 1.00 +0.0% 1.00
slabinfo.xfrm_state.active_slabs
42.00 +0.0% 42.00 +0.0% 42.00
slabinfo.xfrm_state.num_objs
1.00 +0.0% 1.00 +0.0% 1.00
slabinfo.xfrm_state.num_slabs
60.00 ± 28% +10.0% 66.00 ± 20% -10.0% 54.00 ± 33%
slabinfo.xfs_btree_cur.active_objs
1.67 ± 28% +10.0% 1.83 ± 20% -10.0% 1.50 ± 33%
slabinfo.xfs_btree_cur.active_slabs
60.00 ± 28% +10.0% 66.00 ± 20% -10.0% 54.00 ± 33%
slabinfo.xfs_btree_cur.num_objs
1.67 ± 28% +10.0% 1.83 ± 20% -10.0% 1.50 ± 33%
slabinfo.xfs_btree_cur.num_slabs
196.00 ± 10% +0.0% 196.00 ± 10% -0.9% 194.25 ± 15%
slabinfo.xfs_buf.active_objs
4.67 ± 10% +0.0% 4.67 ± 10% -0.9% 4.62 ± 15%
slabinfo.xfs_buf.active_slabs
196.00 ± 10% +0.0% 196.00 ± 10% -0.9% 194.25 ± 15%
slabinfo.xfs_buf.num_objs
4.67 ± 10% +0.0% 4.67 ± 10% -0.9% 4.62 ± 15%
slabinfo.xfs_buf.num_slabs
38.00 +0.0% 38.00 +12.5% 42.75 ± 29%
slabinfo.xfs_efi_item.active_objs
1.00 +0.0% 1.00 +12.5% 1.12 ± 29%
slabinfo.xfs_efi_item.active_slabs
38.00 +0.0% 38.00 +12.5% 42.75 ± 29%
slabinfo.xfs_efi_item.num_objs
1.00 +0.0% 1.00 +12.5% 1.12 ± 29%
slabinfo.xfs_efi_item.num_slabs
96.00 +0.0% 96.00 +0.0% 96.00
slabinfo.xfs_inode.active_objs
3.00 +0.0% 3.00 +0.0% 3.00
slabinfo.xfs_inode.active_slabs
96.00 +0.0% 96.00 +0.0% 96.00
slabinfo.xfs_inode.num_objs
3.00 +0.0% 3.00 +0.0% 3.00
slabinfo.xfs_inode.num_slabs
261.00 +0.0% 261.00 +0.0% 261.00 softirqs.BLOCK
1.00 +0.0% 1.00 +0.0% 1.00
softirqs.CPU0.HI
18671 ± 14% -2.7% 18175 ± 15% -5.4% 17656 ± 11%
softirqs.CPU0.RCU
7475 ± 12% +2.8% 7685 ± 12% +4.9% 7839 ± 7%
softirqs.CPU0.SCHED
105.50 -0.3% 105.17 -0.4% 105.12
softirqs.CPU0.TASKLET
2639 ± 20% +3.0% 2719 ± 5% -11.8% 2327 ± 22%
softirqs.CPU0.TIMER
16884 ± 5% -2.5% 16458 ± 5% +2.8% 17358 ± 7%
softirqs.CPU1.RCU
5689 ± 13% +1.1% 5750 ± 16% +5.6% 6006 ± 11%
softirqs.CPU1.SCHED
0.00 -100.0% 0.00 -100.0% 0.00
softirqs.CPU1.TASKLET
867.83 ± 75% -5.1% 824.00 ± 61% -7.6% 801.62 ± 76%
softirqs.CPU1.TIMER
5488 ± 78% -66.9% 1817 ±139% +35.5% 7435 ±242%
softirqs.CPU10.NET_RX
2.50 ± 55% +0.0% 2.50 ± 38% +0.0% 2.50 ± 20%
softirqs.CPU10.NET_TX
18039 ± 18% -15.4% 15258 ± 3% -9.7% 16293 ± 15%
softirqs.CPU10.RCU
5363 ± 14% -8.7% 4896 ± 10% +1.2% 5427 ± 18%
softirqs.CPU10.SCHED
0.00 -100.0% 0.00 +1.2e+101% 0.12 ±264%
softirqs.CPU10.TASKLET
1304 ± 66% -65.3% 452.50 ± 56% -67.4% 425.62 ± 58%
softirqs.CPU10.TIMER
15447 ± 3% -2.5% 15068 ± 3% +0.7% 15563 ± 7%
softirqs.CPU100.RCU
4896 ± 9% -0.1% 4890 ± 11% +3.0% 5045
softirqs.CPU100.SCHED
272.33 ± 44% -13.5% 235.67 ± 72% -33.7% 180.62 ± 28%
softirqs.CPU100.TIMER
15269 ± 4% -2.3% 14922 ± 2% +4.0% 15887 ± 8%
softirqs.CPU101.RCU
4864 ± 12% -0.4% 4843 ± 10% +4.9% 5102 ± 3%
softirqs.CPU101.SCHED
116.83 ± 25% +21.3% 141.67 ± 10% +101.4% 235.25 ± 79%
softirqs.CPU101.TIMER
15197 ± 4% -0.5% 15125 ± 4% +1.6% 15444 ± 7%
softirqs.CPU102.RCU
4855 ± 10% +0.4% 4875 ± 10% +4.6% 5077
softirqs.CPU102.SCHED
158.83 ± 12% +57.1% 249.50 ± 91% +9.8% 174.38 ± 27%
softirqs.CPU102.TIMER
15404 ± 3% -2.2% 15072 ± 2% +1.5% 15632 ± 7%
softirqs.CPU103.RCU
4835 ± 11% +0.8% 4873 ± 10% +6.7% 5157 ± 10%
softirqs.CPU103.SCHED
0.00 -100.0% 0.00 +1.2e+101% 0.12 ±264%
softirqs.CPU103.TASKLET
170.00 ± 8% -28.0% 122.33 ± 15% +218.8% 541.88 ±139%
softirqs.CPU103.TIMER
15396 ± 3% -1.9% 15102 ± 2% -2.2% 15059 ± 13%
softirqs.CPU104.RCU
4911 ± 12% -0.9% 4867 ± 10% +4.0% 5108
softirqs.CPU104.SCHED
153.67 ± 18% -5.2% 145.67 ± 24% +24.4% 191.12 ± 43%
softirqs.CPU104.TIMER
15223 ± 4% -2.3% 14874 ± 2% +1.9% 15517 ± 6%
softirqs.CPU105.RCU
4790 ± 11% +1.6% 4866 ± 11% +6.7% 5112
softirqs.CPU105.SCHED
0.17 ±223% -100.0% 0.00 -100.0% 0.00
softirqs.CPU105.TASKLET
151.17 ± 15% +6.7% 161.33 ± 44% +40.4% 212.25 ± 43%
softirqs.CPU105.TIMER
15217 ± 3% -2.1% 14894 ± 2% -4.8% 14494 ± 14%
softirqs.CPU106.RCU
4811 ± 11% +1.3% 4874 ± 10% +5.0% 5050 ± 2%
softirqs.CPU106.SCHED
136.17 ± 18% +19.7% 163.00 ± 12% +37.5% 187.25 ± 30%
softirqs.CPU106.TIMER
15091 ± 3% -2.5% 14707 ± 2% +0.9% 15234 ± 7%
softirqs.CPU107.RCU
4849 ± 11% +0.8% 4890 ± 10% +4.5% 5067
softirqs.CPU107.SCHED
164.50 ± 13% -2.3% 160.67 ± 33% +2.9% 169.25 ± 29%
softirqs.CPU107.TIMER
14981 ± 6% -0.6% 14889 ± 2% -0.1% 14968 ± 13%
softirqs.CPU108.RCU
4824 ± 11% +0.6% 4854 ± 10% +9.5% 5280 ± 11%
softirqs.CPU108.SCHED
199.67 ± 73% -24.7% 150.33 ± 19% +95.7% 390.75 ±167%
softirqs.CPU108.TIMER
15271 ± 6% +0.4% 15336 ± 4% +1.5% 15505 ± 7%
softirqs.CPU109.RCU
4601 ± 14% +5.5% 4855 ± 10% +10.5% 5083
softirqs.CPU109.SCHED
0.17 ±223% -100.0% 0.00 -100.0% 0.00
softirqs.CPU109.TASKLET
168.67 ± 19% -25.9% 125.00 ± 14% +77.1% 298.75 ±106%
softirqs.CPU109.TIMER
2116 ±115% +99.2% 4215 ±103% +308.4% 8641 ±192%
softirqs.CPU11.NET_RX
2.00 ± 28% -33.3% 1.33 ± 35% -12.5% 1.75 ± 37%
softirqs.CPU11.NET_TX
15687 ± 4% -0.5% 15615 ± 3% +6.6% 16719 ± 15%
softirqs.CPU11.RCU
4939 ± 12% +3.6% 5118 +11.2% 5493 ± 21%
softirqs.CPU11.SCHED
461.50 ± 58% +38.0% 636.83 ± 54% -7.3% 427.62 ± 75%
softirqs.CPU11.TIMER
15129 ± 6% -1.1% 14965 ± 2% +2.7% 15543 ± 7%
softirqs.CPU110.RCU
4851 ± 11% +0.8% 4889 ± 10% +1.1% 4903 ± 9%
softirqs.CPU110.SCHED
0.00 -100.0% 0.00 +1.2e+101% 0.12 ±264%
softirqs.CPU110.TASKLET
153.17 ± 25% -33.2% 102.33 ± 22% -8.4% 140.25 ± 20%
softirqs.CPU110.TIMER
15016 ± 6% +0.9% 15152 ± 4% +7.9% 16197 ± 9%
softirqs.CPU111.RCU
4849 ± 11% +1.1% 4902 ± 10% +5.2% 5103 ± 3%
softirqs.CPU111.SCHED
0.00 -100.0% 0.00 +2.4e+102% 2.38 ±264%
softirqs.CPU111.TASKLET
95.17 ± 17% +84.6% 175.67 ± 26% +273.8% 355.75 ±127%
softirqs.CPU111.TIMER
15435 ± 5% -2.4% 15068 ± 4% +1.4% 15655 ± 7%
softirqs.CPU112.RCU
4845 ± 11% +2.2% 4950 ± 8% +5.4% 5108
softirqs.CPU112.SCHED
0.00 +1.7e+101% 0.17 ±223% -100.0% 0.00
softirqs.CPU112.TASKLET
253.67 ± 60% -10.2% 227.67 ±111% -46.0% 137.00 ± 27%
softirqs.CPU112.TIMER
15195 ± 4% -1.9% 14910 ± 3% +3.2% 15685 ± 7%
softirqs.CPU113.RCU
4842 ± 11% +3.2% 4995 ± 10% +5.2% 5095
softirqs.CPU113.SCHED
136.00 ± 27% +26.3% 171.83 ± 19% +21.7% 165.50 ± 19%
softirqs.CPU113.TIMER
15314 ± 10% -3.8% 14731 ± 3% +1.5% 15536 ± 7%
softirqs.CPU114.RCU
4941 ± 13% -0.3% 4924 ± 9% +3.2% 5099
softirqs.CPU114.SCHED
0.00 +1.7e+101% 0.17 ±223% +2.5e+102% 2.50 ±264%
softirqs.CPU114.TASKLET
286.67 ± 67% -38.8% 175.33 ± 32% -38.9% 175.25 ± 24%
softirqs.CPU114.TIMER
15301 ± 4% -3.4% 14778 ± 3% +4.0% 15907 ± 7%
softirqs.CPU115.RCU
4832 ± 11% +0.4% 4850 ± 10% +5.5% 5095
softirqs.CPU115.SCHED
0.00 -100.0% 0.00 +1.2e+101% 0.12 ±264%
softirqs.CPU115.TASKLET
207.50 ± 50% -1.1% 205.17 ± 54% -21.6% 162.75 ± 21%
softirqs.CPU115.TIMER
15534 ± 7% -5.2% 14719 ± 3% +1.6% 15786 ± 7%
softirqs.CPU116.RCU
4846 ± 12% -0.2% 4838 ± 10% +5.8% 5126
softirqs.CPU116.SCHED
172.17 ± 17% -7.7% 158.83 ± 14% +25.9% 216.75 ± 69%
softirqs.CPU116.TIMER
15157 ± 4% -2.5% 14773 ± 4% +2.7% 15570 ± 8%
softirqs.CPU117.RCU
4829 ± 11% +0.0% 4829 ± 9% +5.5% 5095 ± 2%
softirqs.CPU117.SCHED
0.00 -100.0% 0.00 +1.2e+101% 0.12 ±264%
softirqs.CPU117.TASKLET
177.33 ± 39% -6.9% 165.17 ± 67% +20.4% 213.50 ± 46%
softirqs.CPU117.TIMER
15156 ± 3% -3.1% 14684 ± 3% +3.0% 15616 ± 8%
softirqs.CPU118.RCU
4937 ± 13% -1.4% 4869 ± 10% +5.6% 5215 ± 6%
softirqs.CPU118.SCHED
6.67 ±141% -97.5% 0.17 ±223% -98.1% 0.12 ±264%
softirqs.CPU118.TASKLET
380.00 ±136% -61.9% 144.67 ± 19% -4.7% 362.25 ± 96%
softirqs.CPU118.TIMER
15270 ± 4% -4.2% 14635 ± 4% +0.7% 15373 ± 7%
softirqs.CPU119.RCU
5211 ± 5% -11.9% 4592 ± 15% -2.3% 5090
softirqs.CPU119.SCHED
0.00 +6.7e+101% 0.67 ±165% +1.2e+101% 0.12 ±264%
softirqs.CPU119.TASKLET
837.33 ±104% -78.7% 178.00 ± 17% -70.3% 248.38 ± 48%
softirqs.CPU119.TIMER
1639 ±118% +263.5% 5958 ±189% +245.4% 5661 ±162%
softirqs.CPU12.NET_RX
1.83 ± 20% +0.0% 1.83 ± 37% -18.2% 1.50 ± 47%
softirqs.CPU12.NET_TX
15652 ± 5% +1.4% 15864 ± 8% +3.7% 16224 ± 9%
softirqs.CPU12.RCU
4819 ± 11% +2.5% 4940 ± 11% +13.6% 5472 ± 17%
softirqs.CPU12.SCHED
416.83 ± 42% +15.9% 483.00 ± 42% +32.4% 551.88 ± 73%
softirqs.CPU12.TIMER
22824 ± 10% -3.5% 22036 ± 7% +5.0% 23968 ± 5%
softirqs.CPU120.RCU
4926 ± 11% +0.7% 4962 ± 11% +4.0% 5124
softirqs.CPU120.SCHED
562.83 ± 12% +20.5% 678.17 ± 30% -17.2% 465.88 ± 23%
softirqs.CPU120.TIMER
17846 ± 4% +1.1% 18034 ± 6% +5.3% 18788 ± 6%
softirqs.CPU121.RCU
4887 ± 11% +0.7% 4919 ± 12% +4.9% 5127
softirqs.CPU121.SCHED
0.00 -100.0% 0.00 -100.0% 0.00
softirqs.CPU121.TASKLET
440.00 ± 6% -8.6% 402.33 ± 13% -16.0% 369.62 ± 15%
softirqs.CPU121.TIMER
15925 ± 4% -1.2% 15734 ± 4% +5.1% 16740 ± 7%
softirqs.CPU122.RCU
4886 ± 11% +0.6% 4914 ± 10% +1.5% 4958 ± 9%
softirqs.CPU122.SCHED
0.00 -100.0% 0.00 +8.8e+101% 0.88 ±264%
softirqs.CPU122.TASKLET
213.00 ± 7% -3.4% 205.83 ± 13% +3.2% 219.75 ± 12%
softirqs.CPU122.TIMER
15523 ± 4% -2.2% 15175 ± 3% +4.5% 16221 ± 7%
softirqs.CPU123.RCU
4865 ± 11% +0.3% 4881 ± 10% +4.9% 5102
softirqs.CPU123.SCHED
0.00 -100.0% 0.00 +8.8e+101% 0.88 ±175%
softirqs.CPU123.TASKLET
112.83 ± 18% +40.3% 158.33 ± 18% +31.1% 147.88 ± 17%
softirqs.CPU123.TIMER
15605 ± 4% -3.2% 15111 ± 2% +3.2% 16111 ± 7%
softirqs.CPU124.RCU
4759 ± 16% +3.8% 4938 ± 11% +8.1% 5145 ± 2%
softirqs.CPU124.SCHED
0.00 -100.0% 0.00 +1.2e+101% 0.12 ±264%
softirqs.CPU124.TASKLET
156.83 ± 16% -13.9% 135.00 ± 29% +13.2% 177.50 ± 61%
softirqs.CPU124.TIMER
15337 ± 4% -2.6% 14944 ± 2% +4.9% 16083 ± 7%
softirqs.CPU125.RCU
4876 ± 11% +0.6% 4907 ± 11% +4.8% 5112
softirqs.CPU125.SCHED
178.50 ± 24% -11.3% 158.33 ± 12% +43.3% 255.75 ± 56%
softirqs.CPU125.TIMER
15390 ± 4% -2.5% 15001 ± 3% +3.3% 15898 ± 7%
softirqs.CPU126.RCU
4949 ± 11% -1.3% 4884 ± 10% +3.2% 5110
softirqs.CPU126.SCHED
0.00 +3.2e+102% 3.17 ±223% -100.0% 0.00
softirqs.CPU126.TASKLET
224.50 ± 57% -51.4% 109.00 ± 30% -22.2% 174.75 ± 36%
softirqs.CPU126.TIMER
15512 ± 4% -7.4% 14361 ± 11% +4.2% 16165 ± 7%
softirqs.CPU127.RCU
4650 ± 14% +5.9% 4925 ± 10% +9.4% 5085
softirqs.CPU127.SCHED
0.00 -100.0% 0.00 +1.3e+102% 1.25 ±264%
softirqs.CPU127.TASKLET
121.00 ± 12% +23.3% 149.17 ± 22% +51.1% 182.88 ± 22%
softirqs.CPU127.TIMER
14902 ± 3% -2.5% 14534 ± 2% +2.7% 15311 ± 8%
softirqs.CPU128.RCU
4857 ± 11% -3.8% 4670 ± 14% +6.2% 5158 ± 4%
softirqs.CPU128.SCHED
161.83 ± 19% -3.0% 157.00 ± 20% +134.3% 379.12 ±114%
softirqs.CPU128.TIMER
14833 ± 3% -1.3% 14637 ± 3% +3.1% 15299 ± 7%
softirqs.CPU129.RCU
4882 ± 11% -0.3% 4865 ± 10% +4.9% 5122
softirqs.CPU129.SCHED
130.67 ± 4% +47.6% 192.83 ± 28% +48.2% 193.62 ± 31%
softirqs.CPU129.TIMER
842.17 ± 87% +324.7% 3576 ±130% +230.1% 2779 ±129%
softirqs.CPU13.NET_RX
1.50 ± 63% +22.2% 1.83 ± 20% +33.3% 2.00 ± 55%
softirqs.CPU13.NET_TX
15350 ± 4% -0.4% 15292 ± 6% +2.0% 15660 ± 9%
softirqs.CPU13.RCU
4947 ± 7% -1.1% 4891 ± 12% +5.3% 5209 ± 16%
softirqs.CPU13.SCHED
323.67 ± 26% +129.5% 742.67 ± 59% +67.5% 542.25 ±120%
softirqs.CPU13.TIMER
14816 ± 3% -2.1% 14509 ± 3% +3.3% 15298 ± 7%
softirqs.CPU130.RCU
4885 ± 11% +0.5% 4910 ± 10% +4.2% 5090
softirqs.CPU130.SCHED
0.00 +3.2e+102% 3.17 ±223% +2.5e+101% 0.25 ±264%
softirqs.CPU130.TASKLET
165.50 ± 12% +0.7% 166.67 ± 19% +7.2% 177.38 ± 22%
softirqs.CPU130.TIMER
14742 ± 3% -2.3% 14410 ± 3% +2.6% 15126 ± 6%
softirqs.CPU131.RCU
4876 ± 11% +3.1% 5026 ± 13% +4.7% 5104
softirqs.CPU131.SCHED
0.00 -100.0% 0.00 +2.4e+102% 2.38 ±264%
softirqs.CPU131.TASKLET
149.17 ± 11% +133.2% 347.83 ±107% +6.1% 158.25 ± 25%
softirqs.CPU131.TIMER
14906 ± 3% -2.8% 14493 ± 3% +2.2% 15233 ± 7%
softirqs.CPU132.RCU
4885 ± 11% +0.4% 4907 ± 10% +4.4% 5100
softirqs.CPU132.SCHED
163.17 ± 18% -8.5% 149.33 ± 11% +8.5% 177.00 ± 11%
softirqs.CPU132.TIMER
14876 ± 3% -2.5% 14507 ± 2% +2.1% 15190 ± 7%
softirqs.CPU133.RCU
4880 ± 11% +0.1% 4887 ± 11% +3.3% 5042
softirqs.CPU133.SCHED
236.50 ± 45% -16.3% 197.83 ± 43% -33.1% 158.12 ± 25%
softirqs.CPU133.TIMER
15020 ± 3% -3.3% 14524 ± 3% +1.6% 15261 ± 7%
softirqs.CPU134.RCU
4896 ± 9% -0.1% 4889 ± 10% +3.3% 5057
softirqs.CPU134.SCHED
189.17 ± 64% -8.7% 172.67 ± 11% -11.5% 167.50 ± 25%
softirqs.CPU134.TIMER
14843 ± 3% -2.6% 14458 ± 3% +3.0% 15288 ± 7%
softirqs.CPU135.RCU
4916 ± 8% -0.5% 4889 ± 10% +3.6% 5094
softirqs.CPU135.SCHED
0.00 -100.0% 0.00 +2e+102% 2.00 ±246%
softirqs.CPU135.TASKLET
223.67 ± 58% -11.5% 198.00 ± 74% -9.8% 201.75 ± 29%
softirqs.CPU135.TIMER
15051 ± 3% -3.6% 14504 ± 2% +2.2% 15385 ± 6%
softirqs.CPU136.RCU
4897 ± 11% -0.2% 4889 ± 10% +3.9% 5086
softirqs.CPU136.SCHED
0.00 -100.0% 0.00 +5e+101% 0.50 ±264%
softirqs.CPU136.TASKLET
157.50 ± 30% +59.5% 251.17 ± 69% +2.4% 161.25 ± 14%
softirqs.CPU136.TIMER
14218 ± 10% +2.6% 14594 ± 3% +6.8% 15181 ± 7%
softirqs.CPU137.RCU
4863 ± 11% +0.8% 4901 ± 11% +4.8% 5097
softirqs.CPU137.SCHED
134.33 ± 22% +7.9% 145.00 ± 18% +30.5% 175.25 ± 41%
softirqs.CPU137.TIMER
14677 ± 3% -2.3% 14335 ± 2% +4.7% 15365 ± 9%
softirqs.CPU138.RCU
4863 ± 11% +0.8% 4900 ± 10% +3.7% 5045 ± 2%
softirqs.CPU138.SCHED
0.00 -100.0% 0.00 +1.2e+101% 0.12 ±264%
softirqs.CPU138.TASKLET
192.00 ± 56% -23.7% 146.50 ± 15% +5.7% 202.88 ± 60%
softirqs.CPU138.TIMER
14952 ± 2% -2.1% 14637 ± 2% +3.6% 15492 ± 8%
softirqs.CPU139.RCU
4911 ± 10% -2.1% 4810 ± 11% +3.6% 5088
softirqs.CPU139.SCHED
0.33 ±223% +0.0% 0.33 ±223% -100.0% 0.00
softirqs.CPU139.TASKLET
209.67 ± 44% -30.1% 146.50 ± 28% -12.8% 182.88 ± 20%
softirqs.CPU139.TIMER
15748 ± 2% -3.4% 15218 ± 3% +1.8% 16034 ± 9%
softirqs.CPU14.RCU
4851 ± 11% +0.7% 4884 ± 10% +3.9% 5039 ± 2%
softirqs.CPU14.SCHED
213.17 ± 28% -37.1% 134.00 ± 13% -0.9% 211.25 ± 53%
softirqs.CPU14.TIMER
14985 ± 2% -2.3% 14638 ± 2% +1.9% 15266 ± 6%
softirqs.CPU140.RCU
4928 ± 11% -0.7% 4894 ± 10% +3.4% 5093
softirqs.CPU140.SCHED
156.00 ± 26% -21.5% 122.50 ± 29% -19.2% 126.12 ± 28%
softirqs.CPU140.TIMER
14835 ± 3% -1.8% 14564 ± 3% +2.7% 15230 ± 6%
softirqs.CPU141.RCU
4854 ± 11% +0.9% 4900 ± 11% +5.3% 5109
softirqs.CPU141.SCHED
0.17 ±223% -100.0% 0.00 -25.0% 0.12 ±264%
softirqs.CPU141.TASKLET
175.00 ± 10% -9.0% 159.33 ± 23% -3.6% 168.75 ± 22%
softirqs.CPU141.TIMER
14802 ± 9% +1.0% 14948 ± 9% +1.6% 15042 ± 6%
softirqs.CPU142.RCU
5060 ± 14% -3.8% 4869 ± 11% +0.9% 5108
softirqs.CPU142.SCHED
381.50 ±131% -57.6% 161.67 ± 47% -31.7% 260.50 ±105%
softirqs.CPU142.TIMER
14789 ± 9% -2.8% 14368 ± 2% +2.4% 15147 ± 7%
softirqs.CPU143.RCU
4908 ± 11% +0.5% 4934 ± 10% +4.0% 5104
softirqs.CPU143.SCHED
3.33 ±223% -100.0% 0.00 -100.0% 0.00
softirqs.CPU143.TASKLET
215.17 ± 43% -20.4% 171.33 ± 26% -14.3% 184.38 ± 23%
softirqs.CPU143.TIMER
21903 ± 6% +1.9% 22314 +2.2% 22379 ± 9%
softirqs.CPU144.RCU
4830 ± 12% +1.9% 4920 ± 9% +5.7% 5106
softirqs.CPU144.SCHED
646.33 ± 9% +7.2% 692.83 ± 26% -6.4% 605.25 ± 26%
softirqs.CPU144.TIMER
18094 ± 4% -2.4% 17655 ± 4% +1.3% 18324 ± 6%
softirqs.CPU145.RCU
4867 ± 10% +1.1% 4920 ± 9% +5.5% 5137
softirqs.CPU145.SCHED
0.17 ±223% -100.0% 0.00 -100.0% 0.00
softirqs.CPU145.TASKLET
394.17 ± 13% -6.1% 370.00 ± 8% -7.2% 365.75 ± 18%
softirqs.CPU145.TIMER
15881 ± 3% -2.8% 15442 ± 4% -0.0% 15879 ± 6%
softirqs.CPU146.RCU
4875 ± 10% +0.9% 4918 ± 10% +5.4% 5139
softirqs.CPU146.SCHED
256.83 ± 19% -9.6% 232.17 ± 13% -7.7% 237.12 ± 17%
softirqs.CPU146.TIMER
15165 ± 4% -2.5% 14778 ± 5% +0.9% 15304 ± 6%
softirqs.CPU147.RCU
4817 ± 10% +2.0% 4912 ± 10% +6.3% 5120
softirqs.CPU147.SCHED
213.50 ± 37% -16.2% 178.83 ± 10% -24.9% 160.25 ± 23%
softirqs.CPU147.TIMER
15338 ± 4% -2.3% 14983 ± 5% +0.8% 15466 ± 6%
softirqs.CPU148.RCU
4862 ± 11% +1.1% 4916 ± 10% +5.5% 5127
softirqs.CPU148.SCHED
0.00 +1.7e+101% 0.17 ±223% -100.0% 0.00
softirqs.CPU148.TASKLET
173.83 ± 38% -1.1% 172.00 ± 16% +4.6% 181.88 ± 25%
softirqs.CPU148.TIMER
15336 ± 4% -1.2% 15148 ± 6% +0.4% 15399 ± 6%
softirqs.CPU149.RCU
4859 ± 11% +0.3% 4873 ± 10% +6.1% 5154
softirqs.CPU149.SCHED
148.83 ± 35% +21.9% 181.50 ± 33% +16.4% 173.25 ± 22%
softirqs.CPU149.TIMER
15423 ± 4% +1.2% 15609 ± 5% +2.6% 15823 ± 8%
softirqs.CPU15.RCU
4834 ± 11% -4.1% 4637 ± 16% +4.8% 5066
softirqs.CPU15.SCHED
2.00 +0.0% 2.00 +0.0% 2.00
softirqs.CPU15.TASKLET
182.00 ± 69% +12.8% 205.33 ± 50% -8.2% 167.00 ± 30%
softirqs.CPU15.TIMER
15310 ± 5% -2.8% 14882 ± 5% +0.9% 15455 ± 6%
softirqs.CPU150.RCU
4837 ± 10% +1.0% 4887 ± 10% +6.1% 5134
softirqs.CPU150.SCHED
0.33 ±223% -100.0% 0.00 -100.0% 0.00
softirqs.CPU150.TASKLET
170.67 ± 23% -16.3% 142.83 ± 18% +1.4% 173.12 ± 28%
softirqs.CPU150.TIMER
15511 ± 6% -4.6% 14801 ± 4% -1.5% 15272 ± 6%
softirqs.CPU151.RCU
4857 ± 10% +1.4% 4923 ± 10% +5.2% 5111
softirqs.CPU151.SCHED
176.00 ± 22% -12.4% 154.17 ± 26% +11.7% 196.62 ± 45%
softirqs.CPU151.TIMER
15119 ± 4% -3.2% 14640 ± 5% +0.3% 15161 ± 6%
softirqs.CPU152.RCU
4851 ± 10% +1.0% 4898 ± 10% +5.6% 5121
softirqs.CPU152.SCHED
156.67 ± 15% +0.1% 156.83 ± 32% +24.2% 194.62 ± 62%
softirqs.CPU152.TIMER
15679 ± 8% -5.5% 14810 ± 5% -1.6% 15425 ± 6%
softirqs.CPU153.RCU
5070 ± 16% -3.5% 4894 ± 10% +1.8% 5162
softirqs.CPU153.SCHED
376.67 ±130% -59.3% 153.33 ± 17% -38.6% 231.38 ± 65%
softirqs.CPU153.TIMER
15657 ± 7% -4.8% 14909 ± 5% -0.5% 15585 ± 6%
softirqs.CPU154.RCU
4908 ± 11% -0.7% 4875 ± 10% +5.1% 5157 ± 3%
softirqs.CPU154.SCHED
0.00 -100.0% 0.00 +2.4e+102% 2.38 ±264%
softirqs.CPU154.TASKLET
187.33 ± 30% -35.1% 121.67 ± 40% +22.8% 230.12 ± 74%
softirqs.CPU154.TIMER
15611 ± 6% -3.9% 15005 ± 4% -0.7% 15495 ± 6%
softirqs.CPU155.RCU
4881 ± 11% +0.6% 4911 ± 10% +4.8% 5115
softirqs.CPU155.SCHED
207.00 ± 71% -30.0% 145.00 ± 24% -6.9% 192.75 ± 30%
softirqs.CPU155.TIMER
15127 ± 5% -1.8% 14860 ± 4% +1.4% 15335 ± 6%
softirqs.CPU156.RCU
4838 ± 11% +1.5% 4909 ± 10% +5.4% 5101
softirqs.CPU156.SCHED
141.67 ± 11% +0.0% 141.67 ± 32% +16.6% 165.25 ± 29%
softirqs.CPU156.TIMER
15109 ± 5% -2.3% 14769 ± 5% +1.3% 15308 ± 6%
softirqs.CPU157.RCU
4848 ± 10% +2.2% 4952 ± 10% +5.1% 5096
softirqs.CPU157.SCHED
190.83 ± 63% +19.0% 227.00 ± 69% -17.5% 157.50 ± 29%
softirqs.CPU157.TIMER
15079 ± 6% -1.1% 14917 ± 8% +1.9% 15362 ± 6%
softirqs.CPU158.RCU
4862 ± 11% +0.2% 4874 ± 10% +5.5% 5130
softirqs.CPU158.SCHED
152.33 ± 12% -15.2% 129.17 ± 15% -5.4% 144.12 ± 22%
softirqs.CPU158.TIMER
15149 ± 6% -0.8% 15029 ± 6% +1.8% 15427 ± 6%
softirqs.CPU159.RCU
4849 ± 10% +1.9% 4941 ± 11% +5.5% 5115
softirqs.CPU159.SCHED
134.83 ± 14% +28.1% 172.67 ± 61% +15.4% 155.62 ± 22%
softirqs.CPU159.TIMER
15793 ± 6% -6.9% 14698 ± 11% +1.8% 16085 ± 8%
softirqs.CPU16.RCU
4884 ± 12% -1.2% 4824 ± 10% -1.0% 4836 ± 11%
softirqs.CPU16.SCHED
2.00 +0.0% 2.00 -6.2% 1.88 ± 41%
softirqs.CPU16.TASKLET
220.17 ± 55% -42.8% 126.00 ± 21% -36.0% 140.88 ± 40%
softirqs.CPU16.TIMER
15270 ± 5% -2.4% 14909 ± 5% +3.0% 15736 ± 7%
softirqs.CPU160.RCU
4866 ± 9% -3.4% 4699 ± 12% +5.0% 5107
softirqs.CPU160.SCHED
0.00 -100.0% 0.00 +1.2e+101% 0.12 ±264%
softirqs.CPU160.TASKLET
144.17 ± 10% +7.9% 155.50 ± 17% +23.9% 178.62 ± 33%
softirqs.CPU160.TIMER
15245 ± 5% -2.0% 14947 ± 5% +2.6% 15643 ± 7%
softirqs.CPU161.RCU
4872 ± 9% +0.8% 4914 ± 10% +4.3% 5082
softirqs.CPU161.SCHED
129.50 ± 19% +38.1% 178.83 ± 33% +30.8% 169.38 ± 24%
softirqs.CPU161.TIMER
15119 ± 5% -2.0% 14824 ± 6% +2.7% 15532 ± 7%
softirqs.CPU162.RCU
4875 ± 10% -0.4% 4856 ± 10% +4.9% 5115
softirqs.CPU162.SCHED
160.17 ± 26% -4.2% 153.50 ± 15% +1.1% 162.00 ± 36%
softirqs.CPU162.TIMER
15017 ± 5% -1.9% 14730 ± 5% +2.9% 15460 ± 7%
softirqs.CPU163.RCU
4848 ± 9% +0.2% 4860 ± 10% +5.2% 5103
softirqs.CPU163.SCHED
0.00 +3.3e+101% 0.33 ±223% +1.2e+101% 0.12 ±264%
softirqs.CPU163.TASKLET
152.00 ± 15% +21.1% 184.00 ± 33% +25.7% 191.12 ± 22%
softirqs.CPU163.TIMER
15152 ± 5% -3.2% 14667 ± 5% +2.5% 15526 ± 6%
softirqs.CPU164.RCU
4964 ± 12% -1.4% 4896 ± 10% -0.3% 4947 ± 7%
softirqs.CPU164.SCHED
261.83 ±101% -38.3% 161.67 ± 26% -27.5% 189.88 ± 31%
softirqs.CPU164.TIMER
15145 ± 5% -2.0% 14841 ± 5% +4.5% 15831 ± 7%
softirqs.CPU165.RCU
4846 ± 10% +0.5% 4870 ± 10% +4.8% 5080
softirqs.CPU165.SCHED
139.83 ± 17% +81.9% 254.33 ± 58% +27.4% 178.12 ± 32%
softirqs.CPU165.TIMER
15212 ± 5% -1.3% 15018 ± 4% +3.5% 15746 ± 7%
softirqs.CPU166.RCU
4868 ± 10% +0.5% 4892 ± 10% +4.5% 5084
softirqs.CPU166.SCHED
148.17 ± 22% +27.4% 188.83 ± 51% +2.1% 151.25 ± 21%
softirqs.CPU166.TIMER
15284 ± 10% +6.4% 16262 ± 12% -1.2% 15096 ± 11%
softirqs.CPU167.RCU
4879 ± 11% +1.5% 4951 ± 11% +4.5% 5099
softirqs.CPU167.SCHED
0.00 +1.7e+101% 0.17 ±223% -100.0% 0.00
softirqs.CPU167.TASKLET
160.17 ± 16% +127.1% 363.67 ±136% +19.8% 191.88 ± 22%
softirqs.CPU167.TIMER
21139 ± 5% -1.6% 20806 ± 5% +5.0% 22199 ± 5%
softirqs.CPU168.RCU
4861 ± 10% +1.4% 4930 ± 10% +7.3% 5215 ± 5%
softirqs.CPU168.SCHED
604.83 ± 7% -10.7% 540.33 ± 11% +9.4% 661.75 ± 87%
softirqs.CPU168.TIMER
16441 ± 2% -3.0% 15945 ± 2% +2.6% 16866 ± 6%
softirqs.CPU169.RCU
4926 ± 11% -0.7% 4894 ± 10% +3.7% 5107
softirqs.CPU169.SCHED
376.17 ± 12% -2.0% 368.50 ± 14% -5.1% 357.00 ± 11%
softirqs.CPU169.TIMER
15538 ± 7% -0.8% 15415 ± 3% +8.9% 16927 ± 13%
softirqs.CPU17.RCU
4811 ± 11% +1.0% 4859 ± 10% +5.9% 5094
softirqs.CPU17.SCHED
1.67 ± 44% +20.0% 2.00 +20.0% 2.00
softirqs.CPU17.TASKLET
172.67 ± 53% +19.0% 205.50 ± 56% +109.9% 362.38 ±126%
softirqs.CPU17.TIMER
14480 ± 3% -2.3% 14146 ± 4% +2.3% 14811 ± 7%
softirqs.CPU170.RCU
4925 ± 11% -0.2% 4915 ± 10% +3.3% 5090
softirqs.CPU170.SCHED
0.00 -100.0% 0.00 +5e+101% 0.50 ±264%
softirqs.CPU170.TASKLET
218.67 ± 16% +33.1% 291.00 ± 49% +30.0% 284.25 ± 23%
softirqs.CPU170.TIMER
14111 ± 3% -2.1% 13818 ± 3% +2.4% 14448 ± 7%
softirqs.CPU171.RCU
4883 ± 10% -0.6% 4854 ± 10% +4.6% 5107
softirqs.CPU171.SCHED
0.00 -100.0% 0.00 -100.0% 0.00
softirqs.CPU171.TASKLET
135.00 ± 42% +7.8% 145.50 ± 16% -13.1% 117.25 ± 8%
softirqs.CPU171.TIMER
14149 ± 3% -1.2% 13983 ± 6% +2.6% 14510 ± 7%
softirqs.CPU172.RCU
4867 ± 10% -4.0% 4670 ± 13% +4.7% 5093
softirqs.CPU172.SCHED
155.67 ± 18% -6.6% 145.33 ± 10% +13.2% 176.25 ± 26%
softirqs.CPU172.TIMER
14135 ± 3% -3.2% 13686 ± 3% +2.9% 14549 ± 7%
softirqs.CPU173.RCU
4865 ± 10% +0.7% 4901 ± 10% +4.8% 5096
softirqs.CPU173.SCHED
154.50 ± 15% -5.2% 146.50 ± 53% +7.9% 166.75 ± 27%
softirqs.CPU173.TIMER
14293 ± 4% -2.9% 13873 ± 4% +1.9% 14568 ± 7%
softirqs.CPU174.RCU
4894 ± 11% -0.2% 4882 ± 10% +4.4% 5108
softirqs.CPU174.SCHED
0.17 ±223% -100.0% 0.00 -100.0% 0.00
softirqs.CPU174.TASKLET
159.50 ± 15% +16.9% 186.50 ± 53% -6.4% 149.25 ± 44%
softirqs.CPU174.TIMER
14009 ± 3% -2.4% 13674 ± 3% +2.6% 14372 ± 6%
softirqs.CPU175.RCU
4827 ± 10% +1.2% 4887 ± 10% +6.2% 5128
softirqs.CPU175.SCHED
159.00 ± 18% +0.9% 160.50 ± 13% +18.9% 189.00 ± 50%
softirqs.CPU175.TIMER
13834 ± 2% -3.6% 13342 ± 3% +2.2% 14136 ± 7%
softirqs.CPU176.RCU
4844 ± 11% +0.3% 4858 ± 10% +5.4% 5106
softirqs.CPU176.SCHED
1.33 ±223% -100.0% 0.00 -100.0% 0.00
softirqs.CPU176.TASKLET
149.67 ± 31% +5.0% 157.17 ± 24% +35.1% 202.12 ± 12%
softirqs.CPU176.TIMER
13769 ± 2% -4.5% 13142 ± 3% +0.9% 13896 ± 7%
softirqs.CPU177.RCU
4858 ± 10% +0.0% 4859 ± 11% +8.0% 5246 ± 9%
softirqs.CPU177.SCHED
1.33 ±223% -100.0% 0.00 -100.0% 0.00
softirqs.CPU177.TASKLET
135.50 ± 15% +56.2% 211.67 ± 60% +263.8% 493.00 ±173%
softirqs.CPU177.TIMER
13868 ± 2% -2.4% 13535 ± 4% +2.0% 14147 ± 7%
softirqs.CPU178.RCU
4820 ± 11% +3.0% 4964 ± 12% +5.4% 5079
softirqs.CPU178.SCHED
144.83 ± 27% +163.1% 381.00 ±132% +12.5% 162.88 ± 14%
softirqs.CPU178.TIMER
14098 ± 2% -0.7% 14003 ± 4% +0.5% 14173 ± 7%
softirqs.CPU179.RCU
4995 ± 13% +2.0% 5096 ± 2% +2.7% 5131
softirqs.CPU179.SCHED
0.00 +3.3e+101% 0.33 ±223% -100.0% 0.00
softirqs.CPU179.TASKLET
316.83 ±121% +33.9% 424.17 ±115% -40.7% 188.00 ± 24%
softirqs.CPU179.TIMER
0.00 +4.3e+103% 43.50 ±223% -100.0% 0.00
softirqs.CPU18.BLOCK
15988 ± 6% -3.3% 15461 ± 3% +1.2% 16178 ± 8%
softirqs.CPU18.RCU
4832 ± 11% +0.6% 4858 ± 10% +4.5% 5050
softirqs.CPU18.SCHED
4.67 ±109% -67.9% 1.50 ± 50% -57.1% 2.00
softirqs.CPU18.TASKLET
196.33 ± 33% -19.0% 159.00 ± 24% -0.9% 194.62 ± 22%
softirqs.CPU18.TIMER
14039 ± 2% -2.8% 13650 ± 3% +1.6% 14258 ± 7%
softirqs.CPU180.RCU
4833 ± 11% +1.2% 4892 ± 10% +5.1% 5079
softirqs.CPU180.SCHED
0.00 +2.8e+102% 2.83 ±223% -100.0% 0.00
softirqs.CPU180.TASKLET
149.50 ± 22% +3.1% 154.17 ± 25% -3.8% 143.75 ± 16%
softirqs.CPU180.TIMER
13802 ± 2% -3.1% 13368 ± 3% +2.0% 14080 ± 7%
softirqs.CPU181.RCU
4851 ± 11% +1.5% 4924 ± 9% +5.0% 5091
softirqs.CPU181.SCHED
137.17 ± 20% +36.2% 186.83 ± 19% +20.8% 165.75 ± 16%
softirqs.CPU181.TIMER
13866 ± 2% -2.7% 13491 ± 4% +1.5% 14079 ± 7%
softirqs.CPU182.RCU
4824 ± 10% +1.9% 4918 ± 9% +5.8% 5105
softirqs.CPU182.SCHED
0.00 -100.0% 0.00 +3.7e+101% 0.38 ±185%
softirqs.CPU182.TASKLET
124.83 ± 13% +10.1% 137.50 ± 30% +33.4% 166.50 ± 17%
softirqs.CPU182.TIMER
13796 ± 2% -0.5% 13727 ± 4% +3.7% 14300 ± 5%
softirqs.CPU183.RCU
4818 ± 11% +1.3% 4880 ± 10% +5.5% 5085
softirqs.CPU183.SCHED
0.00 +1.7e+101% 0.17 ±223% -100.0% 0.00
softirqs.CPU183.TASKLET
169.00 ± 15% -5.3% 160.00 ± 17% +7.8% 182.25 ± 14%
softirqs.CPU183.TIMER
13921 ± 2% -3.2% 13475 ± 4% +1.6% 14139 ± 7%
softirqs.CPU184.RCU
4874 ± 11% +1.6% 4953 ± 10% +0.6% 4906 ± 9%
softirqs.CPU184.SCHED
146.50 ± 24% +91.8% 281.00 ± 67% +31.2% 192.25 ± 31%
softirqs.CPU184.TIMER
14047 ± 2% +11.5% 15658 ± 17% +1.2% 14220 ± 7%
softirqs.CPU185.RCU
4842 ± 11% +4.4% 5055 ± 11% +5.1% 5090
softirqs.CPU185.SCHED
203.67 ± 27% +251.3% 715.50 ± 85% -19.2% 164.50 ± 17%
softirqs.CPU185.TIMER
13908 ± 2% -3.1% 13479 ± 4% +6.8% 14855 ± 17%
softirqs.CPU186.RCU
4811 ± 11% +4.2% 5012 ± 12% +6.7% 5134
softirqs.CPU186.SCHED
146.83 ± 19% +115.0% 315.67 ±102% +155.6% 375.25 ±118%
softirqs.CPU186.TIMER
13811 ± 2% -3.4% 13347 ± 3% +2.2% 14114 ± 6%
softirqs.CPU187.RCU
4812 ± 11% -2.9% 4673 ± 22% +5.7% 5086
softirqs.CPU187.SCHED
113.33 ± 15% +76.0% 199.50 ±126% +7.2% 121.50 ± 27%
softirqs.CPU187.TIMER
13634 ± 3% -2.9% 13238 ± 4% +1.8% 13877 ± 7%
softirqs.CPU188.RCU
4839 ± 11% +0.5% 4864 ± 9% +5.2% 5089
softirqs.CPU188.SCHED
134.17 ± 22% +4.3% 140.00 ± 13% +24.7% 167.25 ± 24%
softirqs.CPU188.TIMER
13851 ± 2% -3.9% 13306 ± 3% +1.3% 14031 ± 7%
softirqs.CPU189.RCU
4971 ± 12% -1.8% 4880 ± 10% +2.1% 5078
softirqs.CPU189.SCHED
375.33 ±129% -44.5% 208.33 ± 47% -48.7% 192.50 ± 28%
softirqs.CPU189.TIMER
0.00 -100.0% 0.00 +3.3e+103% 33.00 ±261%
softirqs.CPU19.BLOCK
15761 ± 5% -2.4% 15389 ± 3% +2.8% 16200 ± 8%
softirqs.CPU19.RCU
4806 ± 11% +0.9% 4851 ± 10% +5.5% 5069
softirqs.CPU19.SCHED
2.00 +0.0% 2.00 -12.5% 1.75 ± 37%
softirqs.CPU19.TASKLET
266.17 ± 75% -37.8% 165.50 ± 12% -30.1% 186.12 ± 31%
softirqs.CPU19.TIMER
13932 ± 3% -1.4% 13735 ± 5% +1.0% 14075 ± 7%
softirqs.CPU190.RCU
4613 ± 13% +8.6% 5011 ± 12% +10.4% 5092
softirqs.CPU190.SCHED
156.50 ± 8% +132.8% 364.33 ±140% +6.7% 167.00 ± 17%
softirqs.CPU190.TIMER
14153 ± 7% -0.9% 14033 ± 4% +7.2% 15173 ± 8%
softirqs.CPU191.RCU
4863 ± 10% +1.2% 4920 ± 10% +5.5% 5130
softirqs.CPU191.SCHED
178.17 ± 15% +2.8% 183.17 ± 16% +37.7% 245.25 ± 20%
softirqs.CPU191.TIMER
15995 ± 5% -1.0% 15832 ± 2% +1.7% 16269 ± 8%
softirqs.CPU2.RCU
4972 ± 11% +1.2% 5032 ± 8% +6.0% 5272
softirqs.CPU2.SCHED
255.67 ± 22% +64.1% 419.50 ± 35% -10.7% 228.38 ± 18%
softirqs.CPU2.TIMER
0.00 -100.0% 0.00 +3.2e+103% 32.25 ±264%
softirqs.CPU20.BLOCK
15659 ± 5% -1.9% 15362 ± 3% +2.7% 16087 ± 8%
softirqs.CPU20.RCU
4811 ± 11% +0.6% 4841 ± 10% +5.1% 5057
softirqs.CPU20.SCHED
2.00 +0.0% 2.00 -12.5% 1.75 ± 37%
softirqs.CPU20.TASKLET
139.17 ± 14% +41.7% 197.17 ± 28% +21.0% 168.38 ± 33%
softirqs.CPU20.TIMER
43.50 ±223% -100.0% 0.00 -100.0% 0.00
softirqs.CPU21.BLOCK
15650 ± 5% -1.9% 15354 ± 3% +3.1% 16132 ± 8%
softirqs.CPU21.RCU
4839 ± 12% -0.8% 4802 ± 10% +4.4% 5053
softirqs.CPU21.SCHED
2.00 ± 57% +0.0% 2.00 -12.5% 1.75 ± 37%
softirqs.CPU21.TASKLET
146.83 ± 25% +21.6% 178.50 ± 38% +18.6% 174.12 ± 24%
softirqs.CPU21.TIMER
43.50 ±223% -100.0% 0.00 -100.0% 0.00
softirqs.CPU22.BLOCK
15977 ± 6% -3.6% 15396 ± 3% +1.6% 16229 ± 8%
softirqs.CPU22.RCU
4834 ± 11% -0.2% 4826 ± 10% +5.3% 5090
softirqs.CPU22.SCHED
1.83 ± 48% +181.8% 5.17 ±137% -18.2% 1.50 ± 57%
softirqs.CPU22.TASKLET
172.50 ± 4% +2.1% 176.17 ± 18% -9.1% 156.88 ± 41%
softirqs.CPU22.TIMER
0.00 +4.3e+103% 43.50 ±223% -100.0% 0.00
softirqs.CPU23.BLOCK
16728 ± 16% -7.3% 15501 ± 3% -1.5% 16475 ± 8%
softirqs.CPU23.RCU
4839 ± 11% +1.0% 4885 ± 12% +6.6% 5161 ± 6%
softirqs.CPU23.SCHED
0.83 ±107% -100.0% 0.00 -10.0% 0.75 ±129%
softirqs.CPU23.TASKLET
386.33 ±131% -46.0% 208.67 ± 95% +7.7% 416.00 ±109%
softirqs.CPU23.TIMER
15805 ± 6% -2.6% 15396 ± 2% +10.5% 17461 ± 15%
softirqs.CPU24.RCU
4864 ± 11% -0.5% 4839 ± 10% +7.5% 5228 ± 5%
softirqs.CPU24.SCHED
2.00 +8.3% 2.17 ± 17% +6.2% 2.12 ± 15%
softirqs.CPU24.TASKLET
408.83 ± 27% -22.8% 315.67 ± 14% +55.5% 635.75 ± 78%
softirqs.CPU24.TIMER
16494 ± 6% +0.6% 16599 ± 5% +7.4% 17711 ± 8%
softirqs.CPU25.RCU
4923 ± 12% -0.7% 4888 ± 11% +8.3% 5333 ± 10%
softirqs.CPU25.SCHED
2.00 +0.0% 2.00 +0.0% 2.00
softirqs.CPU25.TASKLET
492.33 ± 45% -38.0% 305.17 ± 15% +23.8% 609.75 ± 92%
softirqs.CPU25.TIMER
15799 ± 6% -2.4% 15416 ± 3% +5.6% 16682 ± 7%
softirqs.CPU26.RCU
4840 ± 10% +0.8% 4881 ± 10% +4.2% 5042 ± 3%
softirqs.CPU26.SCHED
2.00 +0.0% 2.00 +0.0% 2.00
softirqs.CPU26.TASKLET
200.17 ± 20% +76.4% 353.17 ± 44% +33.1% 266.38 ± 20%
softirqs.CPU26.TIMER
15697 ± 5% +0.5% 15772 ± 5% +5.6% 16576 ± 6%
softirqs.CPU27.RCU
4864 ± 12% +0.9% 4908 ± 10% +4.1% 5064
softirqs.CPU27.SCHED
2.00 +0.0% 2.00 +0.0% 2.00
softirqs.CPU27.TASKLET
145.33 ± 28% -7.7% 134.17 ± 20% +18.1% 171.62 ± 32%
softirqs.CPU27.TIMER
15725 ± 5% -2.9% 15270 ± 3% +5.0% 16518 ± 6%
softirqs.CPU28.RCU
4858 ± 11% +0.5% 4883 ± 11% +1.0% 4908 ± 9%
softirqs.CPU28.SCHED
2.00 +0.0% 2.00 +0.0% 2.00
softirqs.CPU28.TASKLET
161.00 ± 26% +7.5% 173.00 ± 81% -10.2% 144.50 ± 15%
softirqs.CPU28.TIMER
15818 ± 6% -3.3% 15295 ± 3% +6.3% 16809 ± 8%
softirqs.CPU29.RCU
4871 ± 11% -0.4% 4852 ± 10% +6.2% 5172 ± 4%
softirqs.CPU29.SCHED
2.00 +0.0% 2.00 +0.0% 2.00
softirqs.CPU29.TASKLET
156.00 ± 24% -10.5% 139.67 ± 17% +75.3% 273.50 ±106%
softirqs.CPU29.TIMER
15636 ± 4% -1.0% 15480 ± 2% +3.1% 16117 ± 8%
softirqs.CPU3.RCU
4919 ± 11% -1.0% 4872 ± 10% +3.7% 5102
softirqs.CPU3.SCHED
211.50 ± 26% -19.6% 170.00 ± 17% -7.0% 196.62 ± 29%
softirqs.CPU3.TIMER
15717 ± 5% -1.7% 15451 ± 3% +5.1% 16517 ± 7%
softirqs.CPU30.RCU
4639 ± 14% +4.9% 4865 ± 11% +5.5% 4896 ± 9%
softirqs.CPU30.SCHED
2.00 +0.0% 2.00 +0.0% 2.00
softirqs.CPU30.TASKLET
156.83 ± 13% -9.5% 142.00 ± 24% +6.6% 167.12 ± 18%
softirqs.CPU30.TIMER
15720 ± 5% -2.4% 15341 ± 3% +5.5% 16582 ± 7%
softirqs.CPU31.RCU
4885 ± 11% +0.2% 4896 ± 10% +3.8% 5069
softirqs.CPU31.SCHED
2.00 +0.0% 2.00 +43.8% 2.88 ± 80%
softirqs.CPU31.TASKLET
119.83 ± 21% +71.6% 205.67 ± 54% +58.0% 189.38 ± 32%
softirqs.CPU31.TIMER
15996 ± 5% -2.1% 15660 ± 2% +3.9% 16618 ± 7%
softirqs.CPU32.RCU
4910 ± 11% -1.8% 4821 ± 11% +5.6% 5187 ± 2%
softirqs.CPU32.SCHED
138.83 ± 5% +31.9% 183.17 ± 22% +50.0% 208.25 ± 31%
softirqs.CPU32.TIMER
16040 ± 5% -0.9% 15898 ± 4% +5.4% 16909 ± 7%
softirqs.CPU33.RCU
4874 ± 11% -0.2% 4865 ± 10% +9.1% 5316 ± 10%
softirqs.CPU33.SCHED
156.33 ± 28% -1.0% 154.83 ± 14% +202.6% 473.12 ±173%
softirqs.CPU33.TIMER
16102 ± 5% -1.5% 15858 ± 3% +4.1% 16768 ± 6%
softirqs.CPU34.RCU
4853 ± 11% -0.4% 4833 ± 11% +4.1% 5051
softirqs.CPU34.SCHED
0.00 -100.0% 0.00 +3.7e+101% 0.38 ±185%
softirqs.CPU34.TASKLET
185.33 ± 6% -9.4% 168.00 ± 14% +38.5% 256.62 ± 43%
softirqs.CPU34.TIMER
16372 ± 3% -2.8% 15910 ± 3% +3.4% 16924 ± 6%
softirqs.CPU35.RCU
4858 ± 11% +0.2% 4868 ± 10% +5.8% 5140 ± 2%
softirqs.CPU35.SCHED
0.00 +1.7e+101% 0.17 ±223% -100.0% 0.00
softirqs.CPU35.TASKLET
165.83 ± 21% -1.7% 163.00 ± 26% +48.5% 246.25 ± 70%
softirqs.CPU35.TIMER
16247 ± 5% -1.0% 16081 ± 3% +3.5% 16819 ± 6%
softirqs.CPU36.RCU
4857 ± 11% -0.4% 4839 ± 11% +3.6% 5034
softirqs.CPU36.SCHED
0.00 -100.0% 0.00 +1.2e+101% 0.12 ±264%
softirqs.CPU36.TASKLET
170.00 ± 11% +11.4% 189.33 ± 33% +10.4% 187.75 ± 21%
softirqs.CPU36.TIMER
15849 ± 4% -1.8% 15557 ± 2% +9.7% 17386 ± 17%
softirqs.CPU37.RCU
4886 ± 11% +0.3% 4903 ± 11% +9.8% 5366 ± 13%
softirqs.CPU37.SCHED
190.33 ± 70% -38.8% 116.50 ± 25% +234.3% 636.25 ±182%
softirqs.CPU37.TIMER
16023 ± 4% -2.0% 15698 ± 2% +3.2% 16534 ± 6%
softirqs.CPU38.RCU
4842 ± 11% +1.3% 4903 ± 10% +4.7% 5071
softirqs.CPU38.SCHED
0.00 -100.0% 0.00 +1.2e+101% 0.12 ±264%
softirqs.CPU38.TASKLET
179.50 ± 18% -10.7% 160.33 ± 8% +27.6% 229.12 ± 51%
softirqs.CPU38.TIMER
16413 ± 6% -3.9% 15766 ± 2% +1.1% 16595 ± 6%
softirqs.CPU39.RCU
4917 ± 9% -1.0% 4867 ± 10% +2.8% 5056
softirqs.CPU39.SCHED
0.17 ±223% -100.0% 0.00 +275.0% 0.62 ±264%
softirqs.CPU39.TASKLET
250.17 ± 37% -43.2% 142.17 ± 17% -20.0% 200.25 ± 30%
softirqs.CPU39.TIMER
15631 ± 5% -1.8% 15353 ± 2% +1.9% 15927 ± 7%
softirqs.CPU4.RCU
4634 ± 15% +4.7% 4854 ± 10% +10.8% 5134 ± 2%
softirqs.CPU4.SCHED
0.00 -100.0% 0.00 +1.2e+101% 0.12 ±264%
softirqs.CPU4.TASKLET
153.17 ± 23% +10.6% 169.33 ± 22% +57.1% 240.62 ± 56%
softirqs.CPU4.TIMER
16214 ± 5% +0.1% 16233 ± 6% +4.6% 16952 ± 7%
softirqs.CPU40.RCU
4945 ± 8% -1.6% 4865 ± 10% +2.2% 5054
softirqs.CPU40.SCHED
0.17 ±223% -100.0% 0.00 -100.0% 0.00
softirqs.CPU40.TASKLET
215.00 ± 72% -31.8% 146.67 ± 21% +12.8% 242.62 ± 48%
softirqs.CPU40.TIMER
16169 ± 5% -0.9% 16022 ± 3% +4.5% 16899 ± 8%
softirqs.CPU41.RCU
4876 ± 11% +0.8% 4914 ± 11% +3.1% 5027
softirqs.CPU41.SCHED
162.33 ± 19% +7.7% 174.83 ± 19% +24.4% 202.00 ± 28%
softirqs.CPU41.TIMER
0.00 -100.0% 0.00 +2.5e+101% 0.25 ±173%
softirqs.CPU42.NET_TX
16195 ± 5% -1.7% 15914 ± 2% +4.1% 16860 ± 6%
softirqs.CPU42.RCU
4858 ± 11% -4.0% 4663 ± 13% +2.6% 4984 ± 5%
softirqs.CPU42.SCHED
212.83 ± 57% -38.6% 130.67 ± 22% -19.5% 171.38 ± 47%
softirqs.CPU42.TIMER
16015 ± 5% -1.2% 15826 ± 2% +4.6% 16753 ± 7%
softirqs.CPU43.RCU
4855 ± 11% -1.8% 4766 ± 11% +6.9% 5191 ± 4%
softirqs.CPU43.SCHED
134.33 ± 21% +9.6% 147.17 ± 31% +127.1% 305.12 ± 83%
softirqs.CPU43.TIMER
16000 ± 4% -1.0% 15846 ± 2% +4.6% 16735 ± 6%
softirqs.CPU44.RCU
4867 ± 11% +0.5% 4890 ± 11% +4.2% 5073 ± 2%
softirqs.CPU44.SCHED
150.67 ± 19% +19.5% 180.00 ± 28% +25.3% 188.75 ± 58%
softirqs.CPU44.TIMER
16221 ± 6% -2.2% 15871 ± 3% +5.4% 17093 ± 8%
softirqs.CPU45.RCU
4893 ± 11% -0.1% 4890 ± 11% +2.9% 5035
softirqs.CPU45.SCHED
162.17 ± 21% +5.3% 170.83 ± 14% +18.2% 191.75 ± 17%
softirqs.CPU45.TIMER
16047 ± 5% +1.0% 16204 ± 4% +6.4% 17073 ± 8%
softirqs.CPU46.RCU
4849 ± 11% +0.5% 4876 ± 12% +1.4% 4919 ± 9%
softirqs.CPU46.SCHED
0.00 -100.0% 0.00 -100.0% 0.00
softirqs.CPU46.TASKLET
185.17 ± 22% +3.6% 191.83 ± 43% +26.8% 234.75 ± 47%
softirqs.CPU46.TIMER
16321 ± 5% -2.6% 15893 ± 2% +4.2% 17007 ± 8%
softirqs.CPU47.RCU
4977 ± 13% -1.5% 4904 ± 11% +2.9% 5120 ± 2%
softirqs.CPU47.SCHED
343.33 ± 78% -48.5% 176.83 ± 12% -42.7% 196.62 ± 16%
softirqs.CPU47.TIMER
15277 ± 4% -3.9% 14680 ± 4% +1.6% 15515 ± 6%
softirqs.CPU48.RCU
4886 ± 10% -0.8% 4845 ± 10% +4.7% 5113 ± 2%
softirqs.CPU48.SCHED
2.00 +0.0% 2.00 +0.0% 2.00
softirqs.CPU48.TASKLET
495.17 ± 34% -19.4% 399.33 ± 36% +3.4% 512.12 ± 32%
softirqs.CPU48.TIMER
15664 ± 5% +0.3% 15711 ± 5% +3.5% 16215 ± 7%
softirqs.CPU49.RCU
4831 ± 10% -0.0% 4830 ± 10% +6.5% 5146 ± 3%
softirqs.CPU49.SCHED
2.00 +0.0% 2.00 +0.0% 2.00
softirqs.CPU49.TASKLET
415.67 ± 36% -28.1% 298.67 ± 14% -27.6% 300.75 ± 12%
softirqs.CPU49.TIMER
15666 ± 5% -2.0% 15346 ± 2% +7.6% 16857 ± 12%
softirqs.CPU5.RCU
4848 ± 11% -0.4% 4829 ± 10% +2.0% 4944 ± 9%
softirqs.CPU5.SCHED
110.17 ± 13% +16.9% 128.83 ± 14% +260.5% 397.12 ±112%
softirqs.CPU5.TIMER
15433 ± 3% -2.4% 15062 ± 5% +0.0% 15439 ± 7%
softirqs.CPU50.RCU
4833 ± 10% -0.2% 4824 ± 10% +4.7% 5059 ± 2%
softirqs.CPU50.SCHED
1.83 ± 20% +9.1% 2.00 +9.1% 2.00
softirqs.CPU50.TASKLET
213.00 ± 21% +8.6% 231.33 ± 16% +9.2% 232.62 ± 12%
softirqs.CPU50.TIMER
14780 ± 5% -1.5% 14561 ± 4% +2.4% 15129 ± 6%
softirqs.CPU51.RCU
4828 ± 10% -0.5% 4801 ± 10% +4.5% 5044
softirqs.CPU51.SCHED
2.00 +0.0% 2.00 +6.2% 2.12 ± 15%
softirqs.CPU51.TASKLET
181.17 ± 34% -29.3% 128.17 ± 27% -15.9% 152.38 ± 30%
softirqs.CPU51.TIMER
15197 ± 6% -4.1% 14579 ± 4% -0.8% 15068 ± 6%
softirqs.CPU52.RCU
4837 ± 10% -0.6% 4809 ± 10% +5.1% 5083
softirqs.CPU52.SCHED
2.00 +0.0% 2.00 +0.0% 2.00
softirqs.CPU52.TASKLET
144.17 ± 12% +10.8% 159.67 ± 13% +4.8% 151.12 ± 15%
softirqs.CPU52.TIMER
14956 ± 5% -1.1% 14790 ± 5% +0.9% 15084 ± 6%
softirqs.CPU53.RCU
4833 ± 10% -0.3% 4820 ± 10% +4.4% 5044
softirqs.CPU53.SCHED
1.83 ± 20% +9.1% 2.00 +9.1% 2.00
softirqs.CPU53.TASKLET
143.00 ± 12% +26.6% 181.00 ± 18% +25.3% 179.25 ± 36%
softirqs.CPU53.TIMER
15036 ± 4% -2.8% 14612 ± 4% +0.3% 15081 ± 6%
softirqs.CPU54.RCU
4831 ± 10% -0.5% 4804 ± 10% +4.4% 5044
softirqs.CPU54.SCHED
2.17 ± 17% -7.7% 2.00 -7.7% 2.00
softirqs.CPU54.TASKLET
153.00 ± 15% -13.6% 132.17 ± 10% +29.6% 198.25 ± 51%
softirqs.CPU54.TIMER
15105 ± 6% -3.4% 14598 ± 3% -0.1% 15088 ± 7%
softirqs.CPU55.RCU
4827 ± 10% +0.2% 4835 ± 10% +5.0% 5070
softirqs.CPU55.SCHED
2.00 +0.0% 2.00 +0.0% 2.00
softirqs.CPU55.TASKLET
178.33 ± 25% -3.2% 172.67 ± 17% -3.7% 171.75 ± 32%
softirqs.CPU55.TIMER
14745 ± 5% -2.1% 14440 ± 3% +1.6% 14978 ± 7%
softirqs.CPU56.RCU
4605 ± 22% +5.0% 4837 ± 10% +10.6% 5093
softirqs.CPU56.SCHED
147.33 ± 19% -7.2% 136.67 ± 37% -6.1% 138.38 ± 21%
softirqs.CPU56.TIMER
14711 ± 5% -2.6% 14335 ± 4% +2.2% 15035 ± 6%
softirqs.CPU57.RCU
4981 ± 4% -2.9% 4836 ± 10% +1.3% 5045 ± 2%
softirqs.CPU57.SCHED
158.50 ± 12% +6.9% 169.50 ± 25% -5.7% 149.50 ± 29%
softirqs.CPU57.TIMER
14859 ± 4% -2.5% 14483 ± 4% +1.0% 15011 ± 7%
softirqs.CPU58.RCU
4898 ± 6% -1.1% 4845 ± 10% +3.7% 5080
softirqs.CPU58.SCHED
219.00 ± 74% -39.1% 133.33 ± 14% -26.0% 162.12 ± 25%
softirqs.CPU58.TIMER
0.00 -100.0% 0.00 +1.2e+101% 0.12 ±264%
softirqs.CPU59.NET_TX
15281 -3.9% 14678 ± 4% -1.4% 15070 ± 6%
softirqs.CPU59.RCU
4797 ± 10% +1.3% 4859 ± 10% +5.6% 5063
softirqs.CPU59.SCHED
140.67 ± 8% +5.3% 148.17 ± 33% +46.6% 206.25 ± 41%
softirqs.CPU59.TIMER
1.00 +0.0% 1.00 +0.0% 1.00
softirqs.CPU6.HI
15611 ± 5% -1.4% 15397 ± 2% +1.2% 15805 ± 7%
softirqs.CPU6.RCU
4825 ± 11% -1.3% 4763 ± 10% +5.2% 5078 ± 2%
softirqs.CPU6.SCHED
36.00 +0.0% 36.00 +0.0% 36.00
softirqs.CPU6.TASKLET
164.50 ± 19% -3.7% 158.33 ± 20% +24.4% 204.62 ± 36%
softirqs.CPU6.TIMER
14897 ± 5% -2.0% 14592 ± 4% +1.5% 15117 ± 6%
softirqs.CPU60.RCU
4983 ± 12% -2.3% 4870 ± 10% +2.3% 5099
softirqs.CPU60.SCHED
315.50 ±107% -37.0% 198.83 ± 70% -46.2% 169.62 ± 31%
softirqs.CPU60.TIMER
14828 ± 5% -2.1% 14520 ± 3% +1.7% 15079 ± 6%
softirqs.CPU61.RCU
4813 ± 10% +0.6% 4840 ± 10% +5.1% 5057
softirqs.CPU61.SCHED
164.00 ± 11% -3.0% 159.00 ± 19% +3.0% 168.88 ± 16%
softirqs.CPU61.TIMER
14605 ± 7% -4.7% 13918 ± 11% -2.0% 14319 ± 9%
softirqs.CPU62.RCU
4968 ± 13% -0.6% 4940 ± 12% +2.0% 5068 ± 2%
softirqs.CPU62.SCHED
364.33 ±130% -57.6% 154.33 ± 55% -61.0% 142.00 ± 46%
softirqs.CPU62.TIMER
14535 ± 7% -1.0% 14396 ± 4% +3.2% 14995 ± 6%
softirqs.CPU63.RCU
4827 ± 11% +0.6% 4856 ± 9% +5.7% 5101
softirqs.CPU63.SCHED
0.17 ±223% +0.0% 0.17 ±223% -100.0% 0.00
softirqs.CPU63.TASKLET
146.00 ± 17% -0.3% 145.50 ± 20% +15.6% 168.75 ± 41%
softirqs.CPU63.TIMER
15716 ± 6% -2.3% 15353 ± 4% +4.1% 16354 ± 6%
softirqs.CPU64.RCU
4833 ± 11% +1.6% 4910 ± 12% +4.9% 5072
softirqs.CPU64.SCHED
150.83 ± 20% +18.2% 178.33 ± 15% +13.5% 171.12 ± 29%
softirqs.CPU64.TIMER
15679 ± 6% -2.3% 15319 ± 4% +3.9% 16288 ± 6%
softirqs.CPU65.RCU
4856 ± 10% +1.0% 4906 ± 11% +4.6% 5080 ± 2%
softirqs.CPU65.SCHED
130.33 ± 22% +69.1% 220.33 ± 56% +38.1% 180.00 ± 49%
softirqs.CPU65.TIMER
15748 ± 7% -3.9% 15127 ± 4% +1.0% 15905 ± 6%
softirqs.CPU66.RCU
4861 ± 10% +0.2% 4872 ± 11% +3.8% 5046 ± 2%
softirqs.CPU66.SCHED
222.83 ± 39% -33.7% 147.67 ± 19% -23.9% 169.50 ± 24%
softirqs.CPU66.TIMER
15436 ± 5% -1.8% 15166 ± 5% +3.5% 15969 ± 6%
softirqs.CPU67.RCU
4833 ± 11% +0.3% 4847 ± 11% +6.3% 5137 ± 4%
softirqs.CPU67.SCHED
0.00 +3e+102% 3.00 ±223% -100.0% 0.00
softirqs.CPU67.TASKLET
167.67 ± 12% -1.0% 166.00 ± 13% +12.3% 188.25 ± 25%
softirqs.CPU67.TIMER
15466 ± 6% -2.3% 15118 ± 4% +3.7% 16031 ± 6%
softirqs.CPU68.RCU
4812 ± 10% +0.1% 4817 ± 10% +6.1% 5107 ± 2%
softirqs.CPU68.SCHED
240.83 ± 80% -44.2% 134.33 ± 14% -21.5% 189.00 ± 40%
softirqs.CPU68.TIMER
15506 ± 6% -2.2% 15165 ± 4% +3.3% 16010 ± 6%
softirqs.CPU69.RCU
4848 ± 10% +0.7% 4884 ± 11% +5.1% 5096
softirqs.CPU69.SCHED
145.00 ± 7% +59.4% 231.17 ± 51% +28.0% 185.62 ± 27%
softirqs.CPU69.TIMER
15302 ± 4% -1.6% 15061 ± 2% +2.0% 15603 ± 8%
softirqs.CPU7.RCU
4889 ± 11% -3.4% 4722 ± 18% +1.3% 4953 ± 6%
softirqs.CPU7.SCHED
0.00 +3.3e+101% 0.33 ±141% -100.0% 0.00
softirqs.CPU7.TASKLET
198.67 ± 44% +81.5% 360.67 ± 99% +20.3% 239.00 ± 48%
softirqs.CPU7.TIMER
15445 ± 5% -1.3% 15238 ± 5% +4.3% 16112 ± 6%
softirqs.CPU70.RCU
4810 ± 10% +0.8% 4847 ± 10% +5.6% 5079
softirqs.CPU70.SCHED
0.17 ±223% -100.0% 0.00 -100.0% 0.00
softirqs.CPU70.TASKLET
204.33 ± 53% -27.5% 148.17 ± 72% -20.2% 163.00 ± 31%
softirqs.CPU70.TIMER
15352 ± 10% -0.6% 15261 ± 4% +3.9% 15947 ± 14%
softirqs.CPU71.RCU
4832 ± 10% -3.4% 4665 ± 11% +5.3% 5089 ± 2%
softirqs.CPU71.SCHED
202.67 ± 53% -36.8% 128.17 ± 20% +1.8% 206.38 ± 20%
softirqs.CPU71.TIMER
14481 ± 5% -2.1% 14171 ± 2% +2.8% 14879 ± 7%
softirqs.CPU72.RCU
4832 ± 10% +0.5% 4856 ± 10% +5.1% 5077
softirqs.CPU72.SCHED
2.00 +0.0% 2.00 +0.0% 2.00
softirqs.CPU72.TASKLET
371.67 ± 31% -22.5% 288.17 ± 7% -18.3% 303.62 ± 6%
softirqs.CPU72.TIMER
15465 ± 2% -3.5% 14919 ± 4% +2.0% 15770 ± 6%
softirqs.CPU73.RCU
4803 ± 11% +0.1% 4808 ± 10% +5.5% 5065
softirqs.CPU73.SCHED
2.00 +0.0% 2.00 +0.0% 2.00
softirqs.CPU73.TASKLET
332.50 ± 29% +1.6% 337.67 ± 37% +24.2% 413.00 ± 45%
softirqs.CPU73.TIMER
14716 ± 4% -2.7% 14325 ± 4% +3.9% 15296 ± 6%
softirqs.CPU74.RCU
4927 ± 13% -0.7% 4892 ± 4% +3.5% 5101
softirqs.CPU74.SCHED
2.00 +0.0% 2.00 +31.2% 2.62 ± 62%
softirqs.CPU74.TASKLET
347.83 ± 89% +35.3% 470.50 ±104% -34.8% 226.75 ± 19%
softirqs.CPU74.TIMER
14419 ± 3% -2.1% 14119 ± 4% +3.5% 14921 ± 6%
softirqs.CPU75.RCU
4831 ± 12% -0.3% 4815 ± 10% +4.7% 5057
softirqs.CPU75.SCHED
2.00 +0.0% 2.00 +0.0% 2.00
softirqs.CPU75.TASKLET
138.33 ± 74% +30.2% 180.17 ± 64% +0.8% 139.38 ± 30%
softirqs.CPU75.TIMER
14519 ± 4% -2.3% 14180 ± 4% +2.7% 14917 ± 6%
softirqs.CPU76.RCU
4869 ± 12% -1.7% 4784 ± 9% +4.3% 5077
softirqs.CPU76.SCHED
2.00 +0.0% 2.00 +0.0% 2.00
softirqs.CPU76.TASKLET
275.33 ± 66% -46.4% 147.50 ± 28% -21.7% 215.50 ± 49%
softirqs.CPU76.TIMER
14545 ± 4% -1.8% 14288 ± 4% +2.7% 14942 ± 6%
softirqs.CPU77.RCU
4833 ± 11% +3.8% 5017 ± 15% +5.8% 5114
softirqs.CPU77.SCHED
2.83 ± 65% -29.4% 2.00 -29.4% 2.00
softirqs.CPU77.TASKLET
153.50 ± 16% +231.3% 508.50 ±158% -7.2% 142.50 ± 32%
softirqs.CPU77.TIMER
14495 ± 4% -1.2% 14314 ± 3% +3.2% 14959 ± 7%
softirqs.CPU78.RCU
4864 ± 12% -0.3% 4850 ± 10% +3.5% 5036
softirqs.CPU78.SCHED
2.00 +0.0% 2.00 +0.0% 2.00
softirqs.CPU78.TASKLET
197.33 ± 53% -36.9% 124.50 ± 29% -28.4% 141.38 ± 19%
softirqs.CPU78.TIMER
14257 ± 3% -1.4% 14051 ± 4% +4.1% 14841 ± 6%
softirqs.CPU79.RCU
4794 ± 11% +0.7% 4826 ± 10% +8.1% 5184 ± 4%
softirqs.CPU79.SCHED
2.83 ± 65% -29.4% 2.00 -29.4% 2.00
softirqs.CPU79.TASKLET
212.50 ± 47% -40.2% 127.00 ± 18% +47.8% 314.00 ±139%
softirqs.CPU79.TIMER
15585 ± 6% -3.2% 15093 ± 3% -1.4% 15371 ± 8%
softirqs.CPU8.RCU
4882 ± 12% -0.8% 4844 ± 10% +3.1% 5034
softirqs.CPU8.SCHED
197.00 ± 42% -16.4% 164.67 ± 17% -2.4% 192.25 ± 34%
softirqs.CPU8.TIMER
14465 ± 6% -1.6% 14230 ± 3% +5.4% 15242 ± 8%
softirqs.CPU80.RCU
4801 ± 11% +0.5% 4826 ± 10% +5.9% 5087
softirqs.CPU80.SCHED
178.50 ± 27% -4.3% 170.83 ± 21% -6.7% 166.50 ± 23%
softirqs.CPU80.TIMER
14449 ± 6% -1.4% 14250 ± 3% +2.5% 14817 ± 7%
softirqs.CPU81.RCU
4794 ± 11% +1.1% 4848 ± 10% +5.7% 5067
softirqs.CPU81.SCHED
109.50 ± 21% +92.7% 211.00 ± 29% +62.0% 177.38 ± 33%
softirqs.CPU81.TIMER
14427 ± 6% -0.8% 14317 ± 2% +3.9% 14985 ± 6%
softirqs.CPU82.RCU
4804 ± 11% +0.7% 4836 ± 10% +5.3% 5060
softirqs.CPU82.SCHED
160.50 ± 20% +3.4% 166.00 ± 47% +3.3% 165.75 ± 12%
softirqs.CPU82.TIMER
14499 ± 3% -5.6% 13687 ± 5% +2.6% 14873 ± 7%
softirqs.CPU83.RCU
4776 ± 11% +1.0% 4823 ± 10% +9.8% 5243 ± 7%
softirqs.CPU83.SCHED
125.17 ± 20% +32.5% 165.83 ± 46% +301.5% 502.50 ±170%
softirqs.CPU83.TIMER
14776 ± 5% -2.4% 14425 ± 4% +0.4% 14842 ± 6%
softirqs.CPU84.RCU
4817 ± 11% -0.0% 4817 ± 10% +5.5% 5081
softirqs.CPU84.SCHED
0.17 ±223% -100.0% 0.00 +425.0% 0.88 ±264%
softirqs.CPU84.TASKLET
213.33 ± 56% -48.3% 110.33 ± 18% -40.2% 127.62 ± 29%
softirqs.CPU84.TIMER
14559 ± 3% -1.1% 14392 ± 3% +2.7% 14949 ± 6%
softirqs.CPU85.RCU
4788 ± 11% +5.6% 5055 ± 15% +6.3% 5089
softirqs.CPU85.SCHED
186.50 ± 58% +191.2% 543.17 ±167% -8.4% 170.88 ± 20%
softirqs.CPU85.TIMER
14647 ± 3% -2.1% 14336 ± 3% +3.2% 15109 ± 5%
softirqs.CPU86.RCU
4832 ± 11% -0.3% 4819 ± 9% +6.9% 5164 ± 4%
softirqs.CPU86.SCHED
145.50 ± 12% +1.6% 147.83 ± 7% +108.2% 302.88 ±141%
softirqs.CPU86.TIMER
14539 ± 3% -2.3% 14207 ± 4% +2.6% 14910 ± 7%
softirqs.CPU87.RCU
4783 ± 11% +0.8% 4820 ± 10% +5.9% 5063
softirqs.CPU87.SCHED
152.67 ± 13% -12.7% 133.33 ± 21% +35.6% 207.00 ± 40%
softirqs.CPU87.TIMER
14615 ± 3% -0.8% 14497 ± 6% +3.0% 15055 ± 7%
softirqs.CPU88.RCU
4833 ± 10% +0.1% 4837 ± 9% +5.4% 5096
softirqs.CPU88.SCHED
117.67 ± 14% +46.3% 172.17 ± 12% +29.1% 151.88 ± 27%
softirqs.CPU88.TIMER
14491 ± 4% -2.2% 14177 ± 3% +3.8% 15047 ± 7%
softirqs.CPU89.RCU
4843 ± 11% +2.2% 4949 ± 11% +4.3% 5053
softirqs.CPU89.SCHED
131.50 ± 16% +193.0% 385.33 ±134% +15.5% 151.88 ± 27%
softirqs.CPU89.TIMER
29.00 +0.6% 29.17 +1.3% 29.38
softirqs.CPU9.NET_TX
15724 ± 5% -1.6% 15465 ± 4% -0.7% 15622 ± 8%
softirqs.CPU9.RCU
4351 ± 17% +13.9% 4954 ± 11% +13.1% 4919 ± 11%
softirqs.CPU9.SCHED
0.83 ±128% -100.0% 0.00 -85.0% 0.12 ±264%
softirqs.CPU9.TASKLET
274.67 ± 16% +35.0% 370.83 ± 43% +5.5% 289.88 ± 12%
softirqs.CPU9.TIMER
14478 ± 3% -2.3% 14143 ± 3% +2.3% 14808 ± 7%
softirqs.CPU90.RCU
4752 ± 10% +1.5% 4822 ± 10% +7.0% 5084
softirqs.CPU90.SCHED
140.00 ± 21% +5.8% 148.17 ± 25% +58.8% 222.38 ± 68%
softirqs.CPU90.TIMER
14733 ± 3% -2.2% 14405 ± 3% +2.4% 15082 ± 6%
softirqs.CPU91.RCU
4817 ± 11% +1.1% 4872 ± 10% +6.1% 5109 ± 2%
softirqs.CPU91.SCHED
196.17 ± 58% -44.9% 108.00 ± 21% -13.0% 170.75 ± 92%
softirqs.CPU91.TIMER
14404 ± 5% -0.5% 14332 ± 3% +4.1% 14994 ± 7%
softirqs.CPU92.RCU
4807 ± 11% +0.5% 4832 ± 10% +5.1% 5053
softirqs.CPU92.SCHED
122.50 ± 18% +9.5% 134.17 ± 37% +40.3% 171.88 ± 28%
softirqs.CPU92.TIMER
14540 ± 5% -0.5% 14470 ± 3% +4.0% 15123 ± 4%
softirqs.CPU93.RCU
5032 ± 17% -3.6% 4849 ± 11% +0.8% 5071
softirqs.CPU93.SCHED
574.33 ±168% -78.4% 124.00 ± 49% -58.5% 238.12 ± 40%
softirqs.CPU93.TIMER
14328 ± 5% -1.9% 14061 ± 3% +2.9% 14749 ± 7%
softirqs.CPU94.RCU
4497 ± 19% +7.7% 4842 ± 11% +12.8% 5074
softirqs.CPU94.SCHED
140.17 ± 18% -9.0% 127.50 ± 12% +19.6% 167.62 ± 16%
softirqs.CPU94.TIMER
14595 ± 5% -2.1% 14286 ± 3% +4.8% 15292 ± 7%
softirqs.CPU95.RCU
4844 ± 11% +0.9% 4886 ± 11% +5.5% 5110 ± 12%
softirqs.CPU95.SCHED
165.50 ± 43% -4.7% 157.67 ± 25% +191.5% 482.38 ±168%
softirqs.CPU95.TIMER
130.50 ±100% +33.3% 174.00 ± 70% +25.0% 163.12 ± 77%
softirqs.CPU96.BLOCK
21664 ± 4% -1.1% 21422 ± 3% +0.7% 21810 ± 5%
softirqs.CPU96.RCU
4429 ± 16% +14.7% 5080 ± 6% +13.8% 5042 ± 2%
softirqs.CPU96.SCHED
0.33 ±223% +0.0% 0.33 ±223% +50.0% 0.50 ±173%
softirqs.CPU96.TASKLET
645.83 ± 13% +52.4% 984.50 ± 57% +1.3% 654.25 ± 30%
softirqs.CPU96.TIMER
43.50 ±223% -100.0% 0.00 -25.0% 32.62 ±264%
softirqs.CPU97.BLOCK
17906 ± 11% +3.3% 18505 ± 3% +4.7% 18741 ± 6%
softirqs.CPU97.RCU
4735 ± 11% +3.4% 4898 ± 9% +4.8% 4962 ± 7%
softirqs.CPU97.SCHED
0.50 ±152% -100.0% 0.00 -50.0% 0.25 ±264%
softirqs.CPU97.TASKLET
482.83 ± 8% +3.4% 499.33 ± 24% +4.6% 505.25 ± 32%
softirqs.CPU97.TIMER
15934 ± 3% -1.5% 15699 ± 2% +1.8% 16214 ± 7%
softirqs.CPU98.RCU
4816 ± 12% -1.2% 4756 ± 10% +5.5% 5080 ± 2%
softirqs.CPU98.SCHED
264.50 ± 9% -3.7% 254.83 ± 31% +0.7% 266.25 ± 23%
softirqs.CPU98.TIMER
15937 ± 6% -4.9% 15153 ± 2% -1.6% 15687 ± 7%
softirqs.CPU99.RCU
4869 ± 10% +0.1% 4871 ± 10% +4.3% 5080
softirqs.CPU99.SCHED
0.00 +2.7e+102% 2.67 ±223% -100.0% 0.00
softirqs.CPU99.TASKLET
163.50 ± 16% +21.7% 199.00 ± 18% +19.5% 195.38 ± 22%
softirqs.CPU99.TIMER
2.00 +0.0% 2.00 +0.0% 2.00 softirqs.HI
10086 ± 34% +54.3% 15568 ±108% +143.1% 24517 ± 95% softirqs.NET_RX
37.50 ± 4% +0.0% 37.50 ± 4% +1.3% 38.00 ± 3% softirqs.NET_TX
2951776 ± 4% -2.1% 2890116 ± 3% +2.6% 3027539 ± 6% softirqs.RCU
935383 ± 10% +0.4% 939555 ± 10% +5.0% 982547 softirqs.SCHED
226.67 +0.1% 226.83 +0.2% 227.12
softirqs.TASKLET
45262 -0.9% 44858 ± 3% +5.8% 47908 ± 6% softirqs.TIMER
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.0:IO-APIC.2-edge.timer
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.100:PCI-MSI.23592996-edge.nvme0q36
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.100:PCI-MSI.23592998-edge.nvme0q38
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.100:PCI-MSI.23593012-edge.nvme0q52
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.101:PCI-MSI.23592997-edge.nvme0q37
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.101:PCI-MSI.23593004-edge.nvme0q44
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.102:PCI-MSI.23592999-edge.nvme0q39
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.102:PCI-MSI.23593017-edge.nvme0q57
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.103:PCI-MSI.23593001-edge.nvme0q41
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.103:PCI-MSI.23593018-edge.nvme0q58
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.104:PCI-MSI.23592985-edge.nvme0q25
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.104:PCI-MSI.23592997-edge.nvme0q37
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.104:PCI-MSI.23593000-edge.nvme0q40
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.105:PCI-MSI.23593017-edge.nvme0q57
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.107:PCI-MSI.23593017-edge.nvme0q57
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.107:PCI-MSI.23593019-edge.nvme0q59
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.108:PCI-MSI.23592989-edge.nvme0q29
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.108:PCI-MSI.23593008-edge.nvme0q48
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.108:PCI-MSI.23593020-edge.nvme0q60
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.108:PCI-MSI.23593025-edge.nvme0q65
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.109:PCI-MSI.23593006-edge.nvme0q46
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.109:PCI-MSI.23593021-edge.nvme0q61
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.110:PCI-MSI.23592991-edge.nvme0q31
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.110:PCI-MSI.23593022-edge.nvme0q62
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.110:PCI-MSI.23593027-edge.nvme0q67
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.111:PCI-MSI.23593011-edge.nvme0q51
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.112:PCI-MSI.23593008-edge.nvme0q48
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.112:PCI-MSI.23593022-edge.nvme0q62
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.113:PCI-MSI.23593029-edge.nvme0q69
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.114:PCI-MSI.23593026-edge.nvme0q66
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.114:PCI-MSI.23593029-edge.nvme0q69
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.114:PCI-MSI.23593030-edge.nvme0q70
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.114:PCI-MSI.23593031-edge.nvme0q71
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.115:PCI-MSI.23593025-edge.nvme0q65
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.117:PCI-MSI.23593015-edge.nvme0q55
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.118:PCI-MSI.23593026-edge.nvme0q66
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.118:PCI-MSI.23593028-edge.nvme0q68
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.120:PCI-MSI.23593030-edge.nvme0q70
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.121:PCI-MSI.23593031-edge.nvme0q71
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.121:PCI-MSI.23593037-edge.nvme0q77
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.122:PCI-MSI.23593030-edge.nvme0q70
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.122:PCI-MSI.23593038-edge.nvme0q78
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.124:PCI-MSI.23593027-edge.nvme0q67
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.125:PCI-MSI.23593035-edge.nvme0q75
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.125:PCI-MSI.73728-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.126:PCI-MSI.23593038-edge.nvme0q78
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.127:PCI-MSI.23593024-edge.nvme0q64
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.127:PCI-MSI.23593025-edge.nvme0q65
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.127:PCI-MSI.23593027-edge.nvme0q67
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.127:PCI-MSI.23593035-edge.nvme0q75
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.127:PCI-MSI.23593039-edge.nvme0q79
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.128:PCI-MSI.23593026-edge.nvme0q66
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.128:PCI-MSI.23593028-edge.nvme0q68
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.128:PCI-MSI.23593036-edge.nvme0q76
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.128:PCI-MSI.23593040-edge.nvme0q80
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.128:PCI-MSI.23593045-edge.nvme0q85
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.129:PCI-MSI.23593025-edge.nvme0q65
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.129:PCI-MSI.23593026-edge.nvme0q66
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.129:PCI-MSI.23593027-edge.nvme0q67
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.129:PCI-MSI.23593029-edge.nvme0q69
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.130:PCI-MSI.23593027-edge.nvme0q67
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.130:PCI-MSI.23593047-edge.nvme0q87
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.131:PCI-MSI.23593028-edge.nvme0q68
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.131:PCI-MSI.23593029-edge.nvme0q69
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.132:PCI-MSI.23593028-edge.nvme0q68
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.132:PCI-MSI.23593029-edge.nvme0q69
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.132:PCI-MSI.23593030-edge.nvme0q70
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.133:PCI-MSI.23593030-edge.nvme0q70
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.133:PCI-MSI.23593031-edge.nvme0q71
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.133:PCI-MSI.23593033-edge.nvme0q73
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.134:PCI-MSI.23593050-edge.nvme0q90
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.136:PCI-MSI.23593036-edge.nvme0q76
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.137:PCI-MSI.23593034-edge.nvme0q74
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.137:PCI-MSI.23593047-edge.nvme0q87
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.137:PCI-MSI.23593054-edge.nvme0q94
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.138:PCI-MSI.23593036-edge.nvme0q76
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.139:PCI-MSI.23593055-edge.nvme0q95
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.139:PCI-MSI.23593056-edge.nvme0q96
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.140:PCI-MSI.23593036-edge.nvme0q76
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.141:PCI-MSI.23593038-edge.nvme0q78
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.141:PCI-MSI.23593051-edge.nvme0q91
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.142:PCI-MSI.23593039-edge.nvme0q79
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.143:PCI-MSI.23593040-edge.nvme0q80
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.143:PCI-MSI.23593060-edge.nvme0q100
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.144:PCI-MSI.23593025-edge.nvme0q65
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.144:PCI-MSI.23593040-edge.nvme0q80
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.144:PCI-MSI.23593060-edge.nvme0q100
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.145:PCI-MSI.23593057-edge.nvme0q97
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.145:PCI-MSI.23593061-edge.nvme0q101
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.146:PCI-MSI.23593058-edge.nvme0q98
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.147:PCI-MSI.23593028-edge.nvme0q68
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.147:PCI-MSI.23593057-edge.nvme0q97
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.147:PCI-MSI.23593059-edge.nvme0q99
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.147:PCI-MSI.23593062-edge.nvme0q102
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.147:PCI-MSI.23593063-edge.nvme0q103
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.149:PCI-MSI.23593046-edge.nvme0q86
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.149:PCI-MSI.23593065-edge.nvme0q105
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.150:PCI-MSI.23593060-edge.nvme0q100
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.151:PCI-MSI.23593066-edge.nvme0q106
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.152:PCI-MSI.23593033-edge.nvme0q73
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.152:PCI-MSI.23593068-edge.nvme0q108
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.153:PCI-MSI.23593069-edge.nvme0q109
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.155:PCI-MSI.23593052-edge.nvme0q92
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.155:PCI-MSI.23593071-edge.nvme0q111
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.156:PCI-MSI.23593059-edge.nvme0q99
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.156:PCI-MSI.23593064-edge.nvme0q104
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.156:PCI-MSI.23593071-edge.nvme0q111
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.156:PCI-MSI.23593072-edge.nvme0q112
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.157:PCI-MSI.23593054-edge.nvme0q94
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.157:PCI-MSI.23593057-edge.nvme0q97
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.157:PCI-MSI.23593065-edge.nvme0q105
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.157:PCI-MSI.23593072-edge.nvme0q112
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.157:PCI-MSI.23593073-edge.nvme0q113
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.158:PCI-MSI.23593039-edge.nvme0q79
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.158:PCI-MSI.23593058-edge.nvme0q98
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.158:PCI-MSI.23593061-edge.nvme0q101
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.159:PCI-MSI.23593056-edge.nvme0q96
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.160:PCI-MSI.23593068-edge.nvme0q108
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.160:PCI-MSI.23593076-edge.nvme0q116
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.161:PCI-MSI.23593058-edge.nvme0q98
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.161:PCI-MSI.23593073-edge.nvme0q113
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.163:PCI-MSI.23593059-edge.nvme0q99
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.163:PCI-MSI.23593075-edge.nvme0q115
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.164:PCI-MSI.23593062-edge.nvme0q102
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.165:PCI-MSI.23593046-edge.nvme0q86
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.165:PCI-MSI.23593062-edge.nvme0q102
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.165:PCI-MSI.23593063-edge.nvme0q103
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.165:PCI-MSI.23593075-edge.nvme0q115
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.166:PCI-MSI.23593062-edge.nvme0q102
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.166:PCI-MSI.23593066-edge.nvme0q106
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.167:PCI-MSI.23593063-edge.nvme0q103
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.167:PCI-MSI.23593067-edge.nvme0q107
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.167:PCI-MSI.23593077-edge.nvme0q117
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.168:PCI-MSI.23593068-edge.nvme0q108
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.169:PCI-MSI.23593065-edge.nvme0q105
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.169:PCI-MSI.23593079-edge.nvme0q119
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.170:PCI-MSI.23593063-edge.nvme0q103
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.170:PCI-MSI.23593066-edge.nvme0q106
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.171:PCI-MSI.23593068-edge.nvme0q108
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.171:PCI-MSI.23593071-edge.nvme0q111
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.171:PCI-MSI.23593083-edge.nvme0q123
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.172:PCI-MSI.23593069-edge.nvme0q109
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.172:PCI-MSI.71680-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.173:PCI-MSI.23593088-edge.nvme0q128
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.173:PCI-MSI.73728-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.173:PCI-MSI.75776-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.174:PCI-MSI.75776-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.174:PCI-MSI.77824-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.175:PCI-MSI.23593075-edge.nvme0q115
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.175:PCI-MSI.75776-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.175:PCI-MSI.77824-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.176:PCI-MSI.77824-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.176:PCI-MSI.79872-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.177:PCI-MSI.23593070-edge.nvme0q110
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.177:PCI-MSI.23593085-edge.nvme0q125
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.177:PCI-MSI.79872-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.178:PCI-MSI.33619968-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.179:PCI-MSI.33619968-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.180:PCI-MSI.33622016-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.181:PCI-MSI.23593062-edge.nvme0q102
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.181:PCI-MSI.33622016-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.181:PCI-MSI.33624064-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.182:PCI-MSI.23593080-edge.nvme0q120
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.182:PCI-MSI.33624064-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.182:PCI-MSI.33626112-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.183:PCI-MSI.23593064-edge.nvme0q104
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.183:PCI-MSI.33626112-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.183:PCI-MSI.33628160-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.184:PCI-MSI.33628160-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.184:PCI-MSI.33630208-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.185:PCI-MSI.23593082-edge.nvme0q122
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.185:PCI-MSI.23593088-edge.nvme0q128
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.185:PCI-MSI.33630208-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.185:PCI-MSI.33632256-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.186:PCI-MSI.23593067-edge.nvme0q107
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.186:PCI-MSI.33632256-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.186:PCI-MSI.33634304-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.187:PCI-MSI.33634304-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.188:PCI-MSI.67174400-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.189:PCI-MSI.23593086-edge.nvme0q126
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.189:PCI-MSI.67174400-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.190:PCI-MSI.67176448-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.191:PCI-MSI.23593072-edge.nvme0q112
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.191:PCI-MSI.23593088-edge.nvme0q128
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.191:PCI-MSI.67176448-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.191:PCI-MSI.67178496-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.192:PCI-MSI.67178496-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.192:PCI-MSI.67180544-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.193:PCI-MSI.23593074-edge.nvme0q114
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.193:PCI-MSI.67180544-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.193:PCI-MSI.67182592-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.194:PCI-MSI.67182592-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.194:PCI-MSI.67184640-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.195:PCI-MSI.67184640-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.195:PCI-MSI.67186688-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.196:PCI-MSI.67186688-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.196:PCI-MSI.67188736-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.197:PCI-MSI.67188736-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.198:PCI-MSI.100728832-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.199:PCI-MSI.100728832-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.200:PCI-MSI.100730880-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.200:PCI-MSI.23593081-edge.nvme0q121
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.201:PCI-MSI.100730880-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.201:PCI-MSI.100732928-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.202:PCI-MSI.100732928-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.202:PCI-MSI.100734976-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.203:PCI-MSI.100734976-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.203:PCI-MSI.100737024-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.204:PCI-MSI.100737024-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.204:PCI-MSI.100739072-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.205:PCI-MSI.100739072-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.205:PCI-MSI.100741120-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.206:PCI-MSI.100741120-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.207:PCI-MSI.100743168-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.27:PCI-MSI.17825792-edge.PCIe.PME,pciehp
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.29:PCI-MSI.23068672-edge.PCIe.PME,pciehp
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.30:PCI-MSI.524288-edge.eth0
9875 ± 84% -64.2% 3532 ±144% +37.8% 13607 ±244%
interrupts.31:PCI-MSI.524289-edge.eth0-TxRx-0
4028 ±122% +82.8% 7365 ± 97% +300.5% 16136 ±189%
interrupts.32:PCI-MSI.524290-edge.eth0-TxRx-1
3204 ±120% +267.6% 11781 ±189% +210.8% 9959 ±152%
interrupts.33:PCI-MSI.524291-edge.eth0-TxRx-2
1467 ± 96% +374.0% 6955 ±131% +240.2% 4991 ±125%
interrupts.34:PCI-MSI.524292-edge.eth0-TxRx-3
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.35:PCI-MSI.327680-edge.xhci_hcd
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.37:PCI-MSI.65536-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.39:PCI-MSI.67584-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.40:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.40:PCI-MSI.69632-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.41:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.41:PCI-MSI.67584-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.41:PCI-MSI.69632-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.41:PCI-MSI.71680-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.42:PCI-MSI.67584-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.42:PCI-MSI.69632-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.42:PCI-MSI.73728-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.43:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.43:PCI-MSI.69632-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.43:PCI-MSI.71680-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.43:PCI-MSI.75776-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.44:PCI-MSI.23592961-edge.nvme0q1
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.44:PCI-MSI.71680-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.44:PCI-MSI.73728-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.44:PCI-MSI.77824-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.45:PCI-MSI.33619968-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.45:PCI-MSI.73728-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.45:PCI-MSI.77824-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.45:PCI-MSI.79872-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.46:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.46:PCI-MSI.77824-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.47:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.47:PCI-MSI.33619968-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.47:PCI-MSI.79872-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.48:PCI-MSI.33622016-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.48:PCI-MSI.79872-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.49:PCI-MSI.33619968-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.49:PCI-MSI.33622016-edge.ioat-msix
0.00 +1.7e+101% 0.17 ±223% -100.0% 0.00
interrupts.4:IO-APIC.4-edge.ttyS0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.50:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.50:PCI-MSI.23592967-edge.nvme0q7
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.50:PCI-MSI.33619968-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.50:PCI-MSI.33622016-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.50:PCI-MSI.33624064-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.51:PCI-MSI.23592967-edge.nvme0q7
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.51:PCI-MSI.33624064-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.51:PCI-MSI.33626112-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.52:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.52:PCI-MSI.23592962-edge.nvme0q2
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.52:PCI-MSI.23592964-edge.nvme0q4
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.52:PCI-MSI.23592968-edge.nvme0q8
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.52:PCI-MSI.33626112-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.52:PCI-MSI.33628160-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.53:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.53:PCI-MSI.23592969-edge.nvme0q9
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.53:PCI-MSI.33628160-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.53:PCI-MSI.33630208-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.54:PCI-MSI.23592970-edge.nvme0q10
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.54:PCI-MSI.33628160-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.54:PCI-MSI.33630208-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.54:PCI-MSI.33632256-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.55:PCI-MSI.23592963-edge.nvme0q3
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.55:PCI-MSI.33632256-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.55:PCI-MSI.33634304-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.55:PCI-MSI.67174400-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.56:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.56:PCI-MSI.33630208-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.56:PCI-MSI.33632256-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.56:PCI-MSI.33634304-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.57:PCI-MSI.33632256-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.57:PCI-MSI.33634304-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.57:PCI-MSI.67174400-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.58:PCI-MSI.23592961-edge.nvme0q1
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.58:PCI-MSI.33634304-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.58:PCI-MSI.67174400-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.58:PCI-MSI.67176448-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.59:PCI-MSI.67174400-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.60:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.60:PCI-MSI.67174400-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.60:PCI-MSI.67176448-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.61:PCI-MSI.67176448-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.61:PCI-MSI.67178496-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.62:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.62:PCI-MSI.23592974-edge.nvme0q14
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.62:PCI-MSI.67176448-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.62:PCI-MSI.67178496-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.62:PCI-MSI.67180544-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.63:PCI-MSI.23592963-edge.nvme0q3
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.63:PCI-MSI.67178496-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.63:PCI-MSI.67182592-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.64:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.64:PCI-MSI.23592981-edge.nvme0q21
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.64:PCI-MSI.67184640-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.65:PCI-MSI.23592961-edge.nvme0q1
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.65:PCI-MSI.23592965-edge.nvme0q5
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.65:PCI-MSI.67180544-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.66:PCI-MSI.23592963-edge.nvme0q3
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.66:PCI-MSI.23592964-edge.nvme0q4
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.66:PCI-MSI.23592966-edge.nvme0q6
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.66:PCI-MSI.23592976-edge.nvme0q16
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.66:PCI-MSI.67182592-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.66:PCI-MSI.67186688-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.67:PCI-MSI.23592964-edge.nvme0q4
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.67:PCI-MSI.23592967-edge.nvme0q7
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.67:PCI-MSI.23592977-edge.nvme0q17
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.67:PCI-MSI.23592984-edge.nvme0q24
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.67:PCI-MSI.67184640-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.67:PCI-MSI.67188736-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.68:PCI-MSI.23592976-edge.nvme0q16
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.68:PCI-MSI.23592984-edge.nvme0q24
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.68:PCI-MSI.23592985-edge.nvme0q25
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.69:PCI-MSI.100728832-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.69:PCI-MSI.23592962-edge.nvme0q2
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.70:PCI-MSI.23592963-edge.nvme0q3
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.70:PCI-MSI.23592966-edge.nvme0q6
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.70:PCI-MSI.23592970-edge.nvme0q10
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.71:PCI-MSI.100730880-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.71:PCI-MSI.23592964-edge.nvme0q4
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.72:PCI-MSI.100732928-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.73:PCI-MSI.100734976-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.73:PCI-MSI.23592966-edge.nvme0q6
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.74:PCI-MSI.100737024-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.74:PCI-MSI.23592986-edge.nvme0q26
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.75:PCI-MSI.100739072-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.75:PCI-MSI.23592975-edge.nvme0q15
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.75:PCI-MSI.23592985-edge.nvme0q25
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.76:PCI-MSI.100741120-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.76:PCI-MSI.23592972-edge.nvme0q12
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.76:PCI-MSI.23592976-edge.nvme0q16
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.76:PCI-MSI.23592986-edge.nvme0q26
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.76:PCI-MSI.23592993-edge.nvme0q33
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.77:PCI-MSI.23592973-edge.nvme0q13
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.77:PCI-MSI.23592985-edge.nvme0q25
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.78:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.78:PCI-MSI.23592971-edge.nvme0q11
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.78:PCI-MSI.23592974-edge.nvme0q14
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.78:PCI-MSI.23592990-edge.nvme0q30
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.79:PCI-MSI.100743168-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.79:PCI-MSI.23592975-edge.nvme0q15
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.79:PCI-MSI.23592976-edge.nvme0q16
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.79:PCI-MSI.23592982-edge.nvme0q22
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.80:PCI-MSI.23592961-edge.nvme0q1
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.80:PCI-MSI.23592973-edge.nvme0q13
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.80:PCI-MSI.23592980-edge.nvme0q20
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.80:PCI-MSI.23592995-edge.nvme0q35
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.82:PCI-MSI.23592963-edge.nvme0q3
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.83:PCI-MSI.23592964-edge.nvme0q4
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.83:PCI-MSI.23593000-edge.nvme0q40
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.84:PCI-MSI.23592965-edge.nvme0q5
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.85:PCI-MSI.23592985-edge.nvme0q25
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.85:PCI-MSI.23592995-edge.nvme0q35
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.85:PCI-MSI.23593002-edge.nvme0q42
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.86:PCI-MSI.23593003-edge.nvme0q43
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.87:PCI-MSI.23592990-edge.nvme0q30
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.87:PCI-MSI.23593002-edge.nvme0q42
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.87:PCI-MSI.23593004-edge.nvme0q44
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.88:PCI-MSI.23592969-edge.nvme0q9
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.88:PCI-MSI.23592991-edge.nvme0q31
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.88:PCI-MSI.23592998-edge.nvme0q38
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.88:PCI-MSI.23593000-edge.nvme0q40
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.88:PCI-MSI.23593003-edge.nvme0q43
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.88:PCI-MSI.23593005-edge.nvme0q45
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.89:PCI-MSI.23592970-edge.nvme0q10
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.89:PCI-MSI.23592989-edge.nvme0q29
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.89:PCI-MSI.23593001-edge.nvme0q41
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.8:IO-APIC.8-edge.rtc0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.90:PCI-MSI.23592971-edge.nvme0q11
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.90:PCI-MSI.23592988-edge.nvme0q28
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.91:PCI-MSI.23592972-edge.nvme0q12
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.91:PCI-MSI.23593001-edge.nvme0q41
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.93:PCI-MSI.23592974-edge.nvme0q14
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.93:PCI-MSI.23592993-edge.nvme0q33
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.93:PCI-MSI.23593003-edge.nvme0q43
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.93:PCI-MSI.23593005-edge.nvme0q45
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.93:PCI-MSI.23593008-edge.nvme0q48
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.94:PCI-MSI.23592990-edge.nvme0q30
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.94:PCI-MSI.23592994-edge.nvme0q34
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.94:PCI-MSI.23593006-edge.nvme0q46
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.95:PCI-MSI.23592976-edge.nvme0q16
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.95:PCI-MSI.23592991-edge.nvme0q31
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.95:PCI-MSI.23592995-edge.nvme0q35
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.95:PCI-MSI.23593005-edge.nvme0q45
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.95:PCI-MSI.23593010-edge.nvme0q50
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.96:PCI-MSI.23592977-edge.nvme0q17
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.96:PCI-MSI.23592994-edge.nvme0q34
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.96:PCI-MSI.23592996-edge.nvme0q36
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.96:PCI-MSI.23593008-edge.nvme0q48
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.97:PCI-MSI.23592978-edge.nvme0q18
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.97:PCI-MSI.23592995-edge.nvme0q35
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.97:PCI-MSI.23593014-edge.nvme0q54
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.98:PCI-MSI.23592995-edge.nvme0q35
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.98:PCI-MSI.23592996-edge.nvme0q36
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.98:PCI-MSI.23592998-edge.nvme0q38
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.98:PCI-MSI.23593010-edge.nvme0q50
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.99:PCI-MSI.23592999-edge.nvme0q39
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.99:PCI-MSI.23593002-edge.nvme0q42
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.99:PCI-MSI.23593009-edge.nvme0q49
606.00 -0.1% 605.67 +0.0% 606.25
interrupts.9:IO-APIC.9-fasteoi.acpi
802828 -0.0% 802532 -0.2% 801515
interrupts.CAL:Function_call_interrupts
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU0.0:IO-APIC.2-edge.timer
3936 ± 9% -6.0% 3698 ± 12% -6.5% 3679 ± 7%
interrupts.CPU0.CAL:Function_call_interrupts
2.33 ± 31% -21.4% 1.83 ± 20% -19.6% 1.88 ± 31%
interrupts.CPU0.IWI:IRQ_work_interrupts
555796 ± 20% +9.0% 605593 +9.0% 605858
interrupts.CPU0.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU0.MCP:Machine_check_polls
8195 -8.4% 7504 ± 20% -12.4% 7183 ± 24%
interrupts.CPU0.NMI:Non-maskable_interrupts
8195 -8.4% 7504 ± 20% -12.4% 7183 ± 24%
interrupts.CPU0.PMI:Performance_monitoring_interrupts
916.50 +0.3% 919.33 +1.6% 930.88
interrupts.CPU0.RES:Rescheduling_interrupts
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU0.RTR:APIC_ICR_read_retries
2833 ± 5% -1.1% 2803 ± 3% -4.9% 2693 ± 2%
interrupts.CPU0.TLB:TLB_shootdowns
606.00 -0.1% 605.67 +0.0% 606.25
interrupts.CPU1.9:IO-APIC.9-fasteoi.acpi
5825 ± 27% -4.7% 5551 ± 31% -9.6% 5264 ± 30%
interrupts.CPU1.CAL:Function_call_interrupts
2.00 +25.0% 2.50 ± 20% -6.2% 1.88 ± 17%
interrupts.CPU1.IWI:IRQ_work_interrupts
563605 ± 16% +7.5% 605663 +7.5% 605938
interrupts.CPU1.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU1.MCP:Machine_check_polls
8193 -8.4% 7504 ± 20% -24.9% 6152 ± 33%
interrupts.CPU1.NMI:Non-maskable_interrupts
8193 -8.4% 7504 ± 20% -24.9% 6152 ± 33%
interrupts.CPU1.PMI:Performance_monitoring_interrupts
401.67 ± 13% -3.2% 389.00 ± 9% +4.2% 418.38 ± 20%
interrupts.CPU1.RES:Rescheduling_interrupts
2968 ± 3% +1.4% 3010 -2.7% 2887 ± 5%
interrupts.CPU1.TLB:TLB_shootdowns
9875 ± 84% -64.2% 3532 ±144% +37.8% 13607 ±244%
interrupts.CPU10.31:PCI-MSI.524289-edge.eth0-TxRx-0
3683 +0.0% 3684 +0.8% 3713 ± 2%
interrupts.CPU10.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +2.3% 1.88 ± 17%
interrupts.CPU10.IWI:IRQ_work_interrupts
564064 ± 16% +7.4% 605585 +7.4% 605903
interrupts.CPU10.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU10.MCP:Machine_check_polls
7508 ± 20% -0.0% 7505 ± 20% -4.4% 7178 ± 24%
interrupts.CPU10.NMI:Non-maskable_interrupts
7508 ± 20% -0.0% 7505 ± 20% -4.4% 7178 ± 24%
interrupts.CPU10.PMI:Performance_monitoring_interrupts
322.00 ± 5% +5.0% 338.17 ± 7% +2.8% 331.00 ± 5%
interrupts.CPU10.RES:Rescheduling_interrupts
2812 ± 4% +0.2% 2819 ± 3% +3.2% 2902 ± 4%
interrupts.CPU10.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU100.145:PCI-MSI.23593061-edge.nvme0q101
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU100.158:PCI-MSI.23593061-edge.nvme0q101
3681 ± 5% +2.0% 3756 +1.3% 3727 ± 4%
interrupts.CPU100.CAL:Function_call_interrupts
1.67 ± 28% -10.0% 1.50 ± 33% +20.0% 2.00 ± 25%
interrupts.CPU100.IWI:IRQ_work_interrupts
564084 ± 16% +7.3% 605484 +7.4% 605839
interrupts.CPU100.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU100.MCP:Machine_check_polls
6827 ± 28% -10.1% 6138 ± 33% +12.7% 7696 ± 17%
interrupts.CPU100.NMI:Non-maskable_interrupts
6827 ± 28% -10.1% 6138 ± 33% +12.7% 7696 ± 17%
interrupts.CPU100.PMI:Performance_monitoring_interrupts
312.67 +2.2% 319.67 ± 4% +5.6% 330.12 ± 14%
interrupts.CPU100.RES:Rescheduling_interrupts
2890 ± 6% +2.9% 2975 ± 3% -0.4% 2880 ± 4%
interrupts.CPU100.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU101.147:PCI-MSI.23593062-edge.nvme0q102
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU101.164:PCI-MSI.23593062-edge.nvme0q102
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU101.165:PCI-MSI.23593062-edge.nvme0q102
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU101.166:PCI-MSI.23593062-edge.nvme0q102
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU101.181:PCI-MSI.23593062-edge.nvme0q102
3744 ± 5% -0.8% 3713 +2.6% 3841 ± 12%
interrupts.CPU101.CAL:Function_call_interrupts
1.33 ± 35% +25.0% 1.67 ± 28% +50.0% 2.00 ± 25%
interrupts.CPU101.IWI:IRQ_work_interrupts
563919 ± 16% +7.4% 605470 +7.4% 605797
interrupts.CPU101.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU101.MCP:Machine_check_polls
5461 ± 35% +24.9% 6821 ± 28% +40.9% 7696 ± 17%
interrupts.CPU101.NMI:Non-maskable_interrupts
5461 ± 35% +24.9% 6821 ± 28% +40.9% 7696 ± 17%
interrupts.CPU101.PMI:Performance_monitoring_interrupts
342.67 ± 18% -4.1% 328.67 ± 7% -1.8% 336.62 ± 16%
interrupts.CPU101.RES:Rescheduling_interrupts
2798 ± 3% +1.5% 2840 ± 4% +1.4% 2836 ± 4%
interrupts.CPU101.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU102.147:PCI-MSI.23593063-edge.nvme0q103
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU102.165:PCI-MSI.23593063-edge.nvme0q103
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU102.167:PCI-MSI.23593063-edge.nvme0q103
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU102.170:PCI-MSI.23593063-edge.nvme0q103
3736 -0.3% 3725 -1.5% 3679
interrupts.CPU102.CAL:Function_call_interrupts
1.33 ± 35% +37.5% 1.83 ± 20% +50.0% 2.00 ± 25%
interrupts.CPU102.IWI:IRQ_work_interrupts
563025 ± 16% +7.6% 605584 +7.6% 605871
interrupts.CPU102.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU102.MCP:Machine_check_polls
5461 ± 35% +37.4% 7505 ± 20% +40.9% 7695 ± 17%
interrupts.CPU102.NMI:Non-maskable_interrupts
5461 ± 35% +37.4% 7505 ± 20% +40.9% 7695 ± 17%
interrupts.CPU102.PMI:Performance_monitoring_interrupts
311.83 -0.4% 310.67 -0.0% 311.75
interrupts.CPU102.RES:Rescheduling_interrupts
2981 ± 3% +0.0% 2982 ± 3% -4.4% 2850 ± 4%
interrupts.CPU102.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU103.156:PCI-MSI.23593064-edge.nvme0q104
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU103.183:PCI-MSI.23593064-edge.nvme0q104
3670 -0.7% 3644 +0.6% 3691
interrupts.CPU103.CAL:Function_call_interrupts
1.33 ± 35% +37.5% 1.83 ± 20% +40.6% 1.88 ± 17%
interrupts.CPU103.IWI:IRQ_work_interrupts
564309 ± 16% +7.3% 605464 +7.4% 605826
interrupts.CPU103.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU103.MCP:Machine_check_polls
5462 ± 35% +37.4% 7506 ± 20% +40.9% 7695 ± 17%
interrupts.CPU103.NMI:Non-maskable_interrupts
5462 ± 35% +37.4% 7506 ± 20% +40.9% 7695 ± 17%
interrupts.CPU103.PMI:Performance_monitoring_interrupts
308.17 +0.5% 309.67 +0.7% 310.38
interrupts.CPU103.RES:Rescheduling_interrupts
2813 ± 3% -1.5% 2771 +2.7% 2891 ± 4%
interrupts.CPU103.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU104.149:PCI-MSI.23593065-edge.nvme0q105
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU104.157:PCI-MSI.23593065-edge.nvme0q105
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU104.169:PCI-MSI.23593065-edge.nvme0q105
3779 ± 2% -1.3% 3731 -2.5% 3684
interrupts.CPU104.CAL:Function_call_interrupts
1.33 ± 35% +37.5% 1.83 ± 20% +50.0% 2.00 ± 25%
interrupts.CPU104.IWI:IRQ_work_interrupts
564217 ± 16% +7.3% 605472 +7.4% 605827
interrupts.CPU104.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU104.MCP:Machine_check_polls
5462 ± 35% +37.4% 7505 ± 20% +40.9% 7696 ± 17%
interrupts.CPU104.NMI:Non-maskable_interrupts
5462 ± 35% +37.4% 7505 ± 20% +40.9% 7696 ± 17%
interrupts.CPU104.PMI:Performance_monitoring_interrupts
318.17 ± 5% -2.7% 309.50 +10.1% 350.38 ± 29%
interrupts.CPU104.RES:Rescheduling_interrupts
2985 ± 3% +0.1% 2987 ± 3% -3.2% 2889 ± 4%
interrupts.CPU104.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU105.151:PCI-MSI.23593066-edge.nvme0q106
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU105.166:PCI-MSI.23593066-edge.nvme0q106
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU105.170:PCI-MSI.23593066-edge.nvme0q106
3671 +0.0% 3673 +10.6% 4061 ± 15%
interrupts.CPU105.CAL:Function_call_interrupts
1.33 ± 35% +37.5% 1.83 ± 20% +50.0% 2.00 ± 25%
interrupts.CPU105.IWI:IRQ_work_interrupts
564285 ± 16% +7.3% 605469 +7.4% 605823
interrupts.CPU105.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU105.MCP:Machine_check_polls
5461 ± 35% +37.4% 7504 ± 20% +40.9% 7694 ± 17%
interrupts.CPU105.NMI:Non-maskable_interrupts
5461 ± 35% +37.4% 7504 ± 20% +40.9% 7694 ± 17%
interrupts.CPU105.PMI:Performance_monitoring_interrupts
313.33 ± 2% -1.1% 310.00 +24.9% 391.50 ± 42%
interrupts.CPU105.RES:Rescheduling_interrupts
2817 ± 3% -0.0% 2816 ± 3% +2.7% 2894 ± 4%
interrupts.CPU105.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU106.167:PCI-MSI.23593067-edge.nvme0q107
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU106.186:PCI-MSI.23593067-edge.nvme0q107
3743 -0.5% 3724 -0.4% 3726 ± 3%
interrupts.CPU106.CAL:Function_call_interrupts
1.50 ± 33% +22.2% 1.83 ± 20% +33.3% 2.00 ± 25%
interrupts.CPU106.IWI:IRQ_work_interrupts
564141 ± 16% +7.3% 605580 +7.4% 605865
interrupts.CPU106.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU106.MCP:Machine_check_polls
6146 ± 33% +22.1% 7504 ± 20% +25.2% 7696 ± 17%
interrupts.CPU106.NMI:Non-maskable_interrupts
6146 ± 33% +22.1% 7504 ± 20% +25.2% 7696 ± 17%
interrupts.CPU106.PMI:Performance_monitoring_interrupts
310.33 -0.3% 309.33 +4.1% 323.12 ± 6%
interrupts.CPU106.RES:Rescheduling_interrupts
2985 ± 3% +0.3% 2993 ± 3% -2.9% 2897 ± 4%
interrupts.CPU106.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU107.152:PCI-MSI.23593068-edge.nvme0q108
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU107.160:PCI-MSI.23593068-edge.nvme0q108
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU107.168:PCI-MSI.23593068-edge.nvme0q108
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU107.171:PCI-MSI.23593068-edge.nvme0q108
3692 -0.4% 3676 +0.6% 3716
interrupts.CPU107.CAL:Function_call_interrupts
1.50 ± 33% +22.2% 1.83 ± 20% +33.3% 2.00 ± 25%
interrupts.CPU107.IWI:IRQ_work_interrupts
563857 ± 16% +7.4% 605485 +7.4% 605836
interrupts.CPU107.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU107.MCP:Machine_check_polls
6146 ± 33% +22.1% 7505 ± 20% +25.2% 7695 ± 17%
interrupts.CPU107.NMI:Non-maskable_interrupts
6146 ± 33% +22.1% 7505 ± 20% +25.2% 7695 ± 17%
interrupts.CPU107.PMI:Performance_monitoring_interrupts
313.33 -1.2% 309.67 +0.0% 313.38 ± 2%
interrupts.CPU107.RES:Rescheduling_interrupts
2823 ± 3% -0.0% 2822 ± 3% +2.5% 2894 ± 4%
interrupts.CPU107.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU108.153:PCI-MSI.23593069-edge.nvme0q109
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU108.172:PCI-MSI.23593069-edge.nvme0q109
3807 ± 4% -2.0% 3730 -3.1% 3687 ± 2%
interrupts.CPU108.CAL:Function_call_interrupts
1.67 ± 28% +10.0% 1.83 ± 20% +12.5% 1.88 ± 31%
interrupts.CPU108.IWI:IRQ_work_interrupts
563831 ± 16% +7.4% 605497 +7.4% 605823
interrupts.CPU108.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU108.MCP:Machine_check_polls
6828 ± 28% +9.9% 7505 ± 20% +5.2% 7183 ± 24%
interrupts.CPU108.NMI:Non-maskable_interrupts
6828 ± 28% +9.9% 7505 ± 20% +5.2% 7183 ± 24%
interrupts.CPU108.PMI:Performance_monitoring_interrupts
343.17 ± 18% -9.5% 310.50 -9.5% 310.50
interrupts.CPU108.RES:Rescheduling_interrupts
2957 ± 3% +1.4% 2999 ± 3% -2.0% 2898 ± 5%
interrupts.CPU108.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU109.177:PCI-MSI.23593070-edge.nvme0q110
3698 -0.5% 3679 +0.3% 3709
interrupts.CPU109.CAL:Function_call_interrupts
1.67 ± 28% +10.0% 1.83 ± 20% +20.0% 2.00 ± 25%
interrupts.CPU109.IWI:IRQ_work_interrupts
564314 ± 16% +7.3% 605484 +7.4% 605933
interrupts.CPU109.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU109.MCP:Machine_check_polls
6828 ± 28% +9.9% 7504 ± 20% +12.7% 7695 ± 17%
interrupts.CPU109.NMI:Non-maskable_interrupts
6828 ± 28% +9.9% 7504 ± 20% +12.7% 7695 ± 17%
interrupts.CPU109.PMI:Performance_monitoring_interrupts
309.17 -0.2% 308.67 +0.1% 309.38
interrupts.CPU109.RES:Rescheduling_interrupts
2831 ± 3% -0.1% 2828 ± 3% +2.7% 2906 ± 4%
interrupts.CPU109.TLB:TLB_shootdowns
4028 ±122% +82.8% 7365 ± 97% +300.5% 16136 ±189%
interrupts.CPU11.32:PCI-MSI.524290-edge.eth0-TxRx-1
3757 -0.3% 3746 -1.5% 3702 ± 2%
interrupts.CPU11.CAL:Function_call_interrupts
2.00 -8.3% 1.83 ± 20% +0.0% 2.00 ± 25%
interrupts.CPU11.IWI:IRQ_work_interrupts
563990 ± 16% +7.4% 605553 +7.4% 605889
interrupts.CPU11.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU11.MCP:Machine_check_polls
8191 -8.4% 7505 ± 20% -6.0% 7698 ± 17%
interrupts.CPU11.NMI:Non-maskable_interrupts
8191 -8.4% 7505 ± 20% -6.0% 7698 ± 17%
interrupts.CPU11.PMI:Performance_monitoring_interrupts
321.50 ± 4% -2.0% 315.17 ± 2% +0.3% 322.62 ± 2%
interrupts.CPU11.RES:Rescheduling_interrupts
2995 ± 3% +0.1% 2997 ± 3% -3.4% 2894 ± 5%
interrupts.CPU11.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU110.155:PCI-MSI.23593071-edge.nvme0q111
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU110.156:PCI-MSI.23593071-edge.nvme0q111
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU110.171:PCI-MSI.23593071-edge.nvme0q111
3751 -0.0% 3751 -1.2% 3707
interrupts.CPU110.CAL:Function_call_interrupts
1.67 ± 28% +10.0% 1.83 ± 20% +12.5% 1.88 ± 17%
interrupts.CPU110.IWI:IRQ_work_interrupts
563338 ± 16% +7.5% 605500 +7.5% 605834
interrupts.CPU110.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU110.MCP:Machine_check_polls
6829 ± 28% +9.9% 7505 ± 20% +12.7% 7697 ± 17%
interrupts.CPU110.NMI:Non-maskable_interrupts
6829 ± 28% +9.9% 7505 ± 20% +12.7% 7697 ± 17%
interrupts.CPU110.PMI:Performance_monitoring_interrupts
310.83 -0.9% 308.00 -0.9% 308.00
interrupts.CPU110.RES:Rescheduling_interrupts
3003 ± 3% -0.0% 3003 ± 3% -3.1% 2909 ± 4%
interrupts.CPU110.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU111.156:PCI-MSI.23593072-edge.nvme0q112
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU111.157:PCI-MSI.23593072-edge.nvme0q112
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU111.191:PCI-MSI.23593072-edge.nvme0q112
3677 -0.4% 3663 +0.2% 3686 ± 2%
interrupts.CPU111.CAL:Function_call_interrupts
1.67 ± 28% +10.0% 1.83 ± 20% +27.5% 2.12 ± 15%
interrupts.CPU111.IWI:IRQ_work_interrupts
564153 ± 16% +7.3% 605515 +7.4% 605783
interrupts.CPU111.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU111.MCP:Machine_check_polls
6828 ± 28% +9.9% 7504 ± 20% +20.2% 8208
interrupts.CPU111.NMI:Non-maskable_interrupts
6828 ± 28% +9.9% 7504 ± 20% +20.2% 8208
interrupts.CPU111.PMI:Performance_monitoring_interrupts
309.17 +0.1% 309.33 +0.8% 311.50
interrupts.CPU111.RES:Rescheduling_interrupts
2835 ± 3% -0.4% 2825 ± 3% +2.7% 2910 ± 4%
interrupts.CPU111.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU112.200:PCI-MSI.23593081-edge.nvme0q121
3757 -1.3% 3709 -2.1% 3678 ± 2%
interrupts.CPU112.CAL:Function_call_interrupts
1.67 ± 28% +20.0% 2.00 +20.0% 2.00
interrupts.CPU112.IWI:IRQ_work_interrupts
563930 ± 16% +7.4% 605613 +7.4% 605839
interrupts.CPU112.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU112.MCP:Machine_check_polls
6829 ± 28% +19.9% 8189 +20.2% 8209
interrupts.CPU112.NMI:Non-maskable_interrupts
6829 ± 28% +19.9% 8189 +20.2% 8209
interrupts.CPU112.PMI:Performance_monitoring_interrupts
309.17 +0.1% 309.33 +1.5% 313.75 ± 3%
interrupts.CPU112.RES:Rescheduling_interrupts
3006 ± 3% -2.7% 2925 ± 3% -2.9% 2918 ± 4%
interrupts.CPU112.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU113.185:PCI-MSI.23593082-edge.nvme0q122
3690 -1.3% 3644 ± 2% -0.1% 3687 ± 2%
interrupts.CPU113.CAL:Function_call_interrupts
1.83 ± 20% +18.2% 2.17 ± 17% +15.9% 2.12 ± 15%
interrupts.CPU113.IWI:IRQ_work_interrupts
563681 ± 16% +7.4% 605417 +7.5% 605829
interrupts.CPU113.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU113.MCP:Machine_check_polls
7510 ± 20% +9.0% 8187 +9.3% 8208
interrupts.CPU113.NMI:Non-maskable_interrupts
7510 ± 20% +9.0% 8187 +9.3% 8208
interrupts.CPU113.PMI:Performance_monitoring_interrupts
309.67 +1.9% 315.50 ± 3% -0.0% 309.62
interrupts.CPU113.RES:Rescheduling_interrupts
2841 ± 3% -1.7% 2793 ± 4% +2.6% 2915 ± 4%
interrupts.CPU113.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU114.171:PCI-MSI.23593083-edge.nvme0q123
3762 +30.3% 4901 ± 51% -0.6% 3741 ± 2%
interrupts.CPU114.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +9.1% 2.00
interrupts.CPU114.IWI:IRQ_work_interrupts
563909 ± 16% +7.4% 605481 +7.4% 605829
interrupts.CPU114.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU114.MCP:Machine_check_polls
7510 ± 20% +9.1% 8190 +9.3% 8209
interrupts.CPU114.NMI:Non-maskable_interrupts
7510 ± 20% +9.1% 8190 +9.3% 8209
interrupts.CPU114.PMI:Performance_monitoring_interrupts
310.33 +57.7% 489.50 ± 82% +2.5% 318.12 ± 7%
interrupts.CPU114.RES:Rescheduling_interrupts
3013 ± 3% -0.2% 3007 ± 3% -3.2% 2918 ± 4%
interrupts.CPU114.TLB:TLB_shootdowns
3702 +0.3% 3712 +1.1% 3743 ± 2%
interrupts.CPU115.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +15.9% 2.12 ± 15%
interrupts.CPU115.IWI:IRQ_work_interrupts
563982 ± 16% +7.4% 605484 +7.4% 605834
interrupts.CPU115.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU115.MCP:Machine_check_polls
7510 ± 20% +9.0% 8189 +9.3% 8209
interrupts.CPU115.NMI:Non-maskable_interrupts
7510 ± 20% +9.0% 8189 +9.3% 8209
interrupts.CPU115.PMI:Performance_monitoring_interrupts
309.83 -0.2% 309.33 +1.7% 315.00 ± 4%
interrupts.CPU115.RES:Rescheduling_interrupts
2846 ± 3% +1.5% 2888 ± 4% +2.6% 2921 ± 4%
interrupts.CPU115.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU116.177:PCI-MSI.23593085-edge.nvme0q125
3754 +0.1% 3758 -2.1% 3677 ± 3%
interrupts.CPU116.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +9.1% 2.00 ± 25%
interrupts.CPU116.IWI:IRQ_work_interrupts
563938 ± 16% +7.4% 605479 +7.4% 605839
interrupts.CPU116.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU116.MCP:Machine_check_polls
7509 ± 20% +9.0% 8188 +2.5% 7697 ± 17%
interrupts.CPU116.NMI:Non-maskable_interrupts
7509 ± 20% +9.0% 8188 +2.5% 7697 ± 17%
interrupts.CPU116.PMI:Performance_monitoring_interrupts
309.00 -0.1% 308.67 +0.4% 310.38
interrupts.CPU116.RES:Rescheduling_interrupts
3018 ± 3% -0.0% 3018 ± 3% -3.0% 2927 ± 4%
interrupts.CPU116.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU117.189:PCI-MSI.23593086-edge.nvme0q126
3711 -1.0% 3672 +0.4% 3724
interrupts.CPU117.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +2.3% 1.88 ± 17%
interrupts.CPU117.IWI:IRQ_work_interrupts
564015 ± 16% +7.3% 605467 +7.4% 605826
interrupts.CPU117.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU117.MCP:Machine_check_polls
7510 ± 20% +9.0% 8189 +2.5% 7697 ± 17%
interrupts.CPU117.NMI:Non-maskable_interrupts
7510 ± 20% +9.0% 8189 +2.5% 7697 ± 17%
interrupts.CPU117.PMI:Performance_monitoring_interrupts
308.67 +0.0% 308.67 +0.9% 311.38
interrupts.CPU117.RES:Rescheduling_interrupts
2848 ± 3% -1.3% 2812 +2.8% 2928 ± 4%
interrupts.CPU117.TLB:TLB_shootdowns
3769 -0.2% 3761 -1.2% 3723
interrupts.CPU118.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +9.1% 2.00 ± 25%
interrupts.CPU118.IWI:IRQ_work_interrupts
563925 ± 16% +7.4% 605482 +7.4% 605840
interrupts.CPU118.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU118.MCP:Machine_check_polls
7509 ± 20% +9.1% 8189 +2.5% 7697 ± 17%
interrupts.CPU118.NMI:Non-maskable_interrupts
7509 ± 20% +9.1% 8189 +2.5% 7697 ± 17%
interrupts.CPU118.PMI:Performance_monitoring_interrupts
330.00 ± 13% -6.5% 308.67 -6.3% 309.25
interrupts.CPU118.RES:Rescheduling_interrupts
3024 ± 3% -0.1% 3022 ± 3% -3.1% 2930 ± 4%
interrupts.CPU118.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU119.173:PCI-MSI.23593088-edge.nvme0q128
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU119.185:PCI-MSI.23593088-edge.nvme0q128
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU119.191:PCI-MSI.23593088-edge.nvme0q128
3721 ± 2% -0.7% 3694 -0.1% 3718
interrupts.CPU119.CAL:Function_call_interrupts
1.50 ± 33% +33.3% 2.00 +33.3% 2.00 ± 25%
interrupts.CPU119.IWI:IRQ_work_interrupts
563686 ± 16% +7.4% 605467 +7.5% 605859
interrupts.CPU119.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU119.MCP:Machine_check_polls
6142 ± 33% +33.3% 8189 +25.3% 7697 ± 17%
interrupts.CPU119.NMI:Non-maskable_interrupts
6142 ± 33% +33.3% 8189 +25.3% 7697 ± 17%
interrupts.CPU119.PMI:Performance_monitoring_interrupts
309.83 -0.2% 309.17 -0.7% 307.75
interrupts.CPU119.RES:Rescheduling_interrupts
2900 ± 4% -1.7% 2850 ± 3% +0.0% 2901 ± 5%
interrupts.CPU119.TLB:TLB_shootdowns
3204 ±120% +267.6% 11781 ±189% +210.8% 9959 ±152%
interrupts.CPU12.33:PCI-MSI.524291-edge.eth0-TxRx-2
3711 -0.4% 3697 -0.8% 3683
interrupts.CPU12.CAL:Function_call_interrupts
2.00 -8.3% 1.83 ± 20% -6.2% 1.88 ± 31%
interrupts.CPU12.IWI:IRQ_work_interrupts
563815 ± 16% +7.4% 605538 +7.5% 605857
interrupts.CPU12.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU12.MCP:Machine_check_polls
8191 -8.4% 7504 ± 20% -12.3% 7185 ± 24%
interrupts.CPU12.NMI:Non-maskable_interrupts
8191 -8.4% 7504 ± 20% -12.3% 7185 ± 24%
interrupts.CPU12.PMI:Performance_monitoring_interrupts
325.83 ± 5% +3.6% 337.67 ± 9% +12.8% 367.50 ± 27%
interrupts.CPU12.RES:Rescheduling_interrupts
2868 ± 4% -1.7% 2818 ± 3% +1.2% 2902 ± 4%
interrupts.CPU12.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU120.44:PCI-MSI.23592961-edge.nvme0q1
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU120.58:PCI-MSI.23592961-edge.nvme0q1
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU120.65:PCI-MSI.23592961-edge.nvme0q1
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU120.80:PCI-MSI.23592961-edge.nvme0q1
16168 ± 17% -26.0% 11962 ± 19% -6.4% 15125 ± 33%
interrupts.CPU120.CAL:Function_call_interrupts
3.00 ± 27% +0.0% 3.00 -4.2% 2.88 ± 11%
interrupts.CPU120.IWI:IRQ_work_interrupts
565221 ± 16% +7.2% 605705 +7.2% 606018
interrupts.CPU120.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU120.MCP:Machine_check_polls
6805 ± 28% +20.0% 8169 +12.8% 7677 ± 17%
interrupts.CPU120.NMI:Non-maskable_interrupts
6805 ± 28% +20.0% 8169 +12.8% 7677 ± 17%
interrupts.CPU120.PMI:Performance_monitoring_interrupts
353.50 ± 4% +21.1% 428.17 ± 39% +40.6% 496.88 ± 86%
interrupts.CPU120.RES:Rescheduling_interrupts
3054 -5.9% 2874 ± 3% -7.1% 2836 ± 4%
interrupts.CPU120.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU121.52:PCI-MSI.23592962-edge.nvme0q2
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU121.69:PCI-MSI.23592962-edge.nvme0q2
5515 ± 13% +30.1% 7175 ± 28% -2.3% 5388 ± 14%
interrupts.CPU121.CAL:Function_call_interrupts
2.00 +25.0% 2.50 ± 20% +25.0% 2.50 ± 20%
interrupts.CPU121.IWI:IRQ_work_interrupts
565541 ± 15% +7.1% 605605 +7.1% 605809
interrupts.CPU121.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU121.MCP:Machine_check_polls
6810 ± 28% -10.1% 6123 ± 33% +5.3% 7169 ± 24%
interrupts.CPU121.NMI:Non-maskable_interrupts
6810 ± 28% -10.1% 6123 ± 33% +5.3% 7169 ± 24%
interrupts.CPU121.PMI:Performance_monitoring_interrupts
432.33 ± 5% -1.2% 427.17 ± 23% -4.5% 413.00 ± 11%
interrupts.CPU121.RES:Rescheduling_interrupts
2893 ± 4% -1.3% 2855 ± 3% +0.9% 2918 ± 3%
interrupts.CPU121.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU122.55:PCI-MSI.23592963-edge.nvme0q3
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU122.63:PCI-MSI.23592963-edge.nvme0q3
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU122.66:PCI-MSI.23592963-edge.nvme0q3
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU122.70:PCI-MSI.23592963-edge.nvme0q3
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU122.82:PCI-MSI.23592963-edge.nvme0q3
5263 ± 17% -23.2% 4043 ± 5% -0.1% 5256 ± 28%
interrupts.CPU122.CAL:Function_call_interrupts
1.67 ± 28% +0.0% 1.67 ± 28% +20.0% 2.00 ± 25%
interrupts.CPU122.IWI:IRQ_work_interrupts
565642 ± 15% +7.0% 605516 +7.1% 605761
interrupts.CPU122.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU122.MCP:Machine_check_polls
6810 ± 28% -0.1% 6806 ± 28% +12.7% 7678 ± 17%
interrupts.CPU122.NMI:Non-maskable_interrupts
6810 ± 28% -0.1% 6806 ± 28% +12.7% 7678 ± 17%
interrupts.CPU122.PMI:Performance_monitoring_interrupts
461.50 ± 19% -10.2% 414.33 ± 23% +10.5% 510.00 ± 31%
interrupts.CPU122.RES:Rescheduling_interrupts
2992 ± 3% -0.4% 2980 ± 4% -1.8% 2937 ± 4%
interrupts.CPU122.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU123.52:PCI-MSI.23592964-edge.nvme0q4
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU123.66:PCI-MSI.23592964-edge.nvme0q4
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU123.67:PCI-MSI.23592964-edge.nvme0q4
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU123.71:PCI-MSI.23592964-edge.nvme0q4
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU123.83:PCI-MSI.23592964-edge.nvme0q4
3767 ± 2% +5.2% 3962 ± 10% +4.8% 3948 ± 9%
interrupts.CPU123.CAL:Function_call_interrupts
1.50 ± 33% +22.2% 1.83 ± 20% +25.0% 1.88 ± 17%
interrupts.CPU123.IWI:IRQ_work_interrupts
565079 ± 16% +7.1% 605413 +7.2% 605693
interrupts.CPU123.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU123.MCP:Machine_check_polls
6128 ± 33% +22.2% 7490 ± 20% +25.3% 7677 ± 17%
interrupts.CPU123.NMI:Non-maskable_interrupts
6128 ± 33% +22.2% 7490 ± 20% +25.3% 7677 ± 17%
interrupts.CPU123.PMI:Performance_monitoring_interrupts
321.33 ± 8% +192.0% 938.17 ±140% +9.0% 350.25 ± 17%
interrupts.CPU123.RES:Rescheduling_interrupts
2903 ± 4% -0.5% 2888 ± 3% +0.1% 2906 ± 4%
interrupts.CPU123.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU124.65:PCI-MSI.23592965-edge.nvme0q5
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU124.84:PCI-MSI.23592965-edge.nvme0q5
3780 -0.3% 3769 -1.3% 3730
interrupts.CPU124.CAL:Function_call_interrupts
1.50 ± 33% +22.2% 1.83 ± 20% +41.7% 2.12 ± 15%
interrupts.CPU124.IWI:IRQ_work_interrupts
565392 ± 15% +7.1% 605483 +7.1% 605712
interrupts.CPU124.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU124.MCP:Machine_check_polls
6128 ± 33% +22.2% 7490 ± 20% +33.7% 8191
interrupts.CPU124.NMI:Non-maskable_interrupts
6128 ± 33% +22.2% 7490 ± 20% +33.7% 8191
interrupts.CPU124.PMI:Performance_monitoring_interrupts
323.17 ± 9% -4.8% 307.67 -4.2% 309.50
interrupts.CPU124.RES:Rescheduling_interrupts
2994 ± 3% +1.3% 3034 ± 3% -1.7% 2942 ± 4%
interrupts.CPU124.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU125.66:PCI-MSI.23592966-edge.nvme0q6
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU125.70:PCI-MSI.23592966-edge.nvme0q6
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU125.73:PCI-MSI.23592966-edge.nvme0q6
3739 -0.4% 3725 -0.4% 3725
interrupts.CPU125.CAL:Function_call_interrupts
1.50 ± 33% +22.2% 1.83 ± 20% +33.3% 2.00 ± 25%
interrupts.CPU125.IWI:IRQ_work_interrupts
565599 ± 15% +7.1% 605482 +7.1% 605712
interrupts.CPU125.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU125.MCP:Machine_check_polls
6127 ± 33% +22.2% 7490 ± 20% +25.3% 7678 ± 17%
interrupts.CPU125.NMI:Non-maskable_interrupts
6127 ± 33% +22.2% 7490 ± 20% +25.3% 7678 ± 17%
interrupts.CPU125.PMI:Performance_monitoring_interrupts
357.33 ± 31% -13.0% 311.00 ± 3% -14.1% 307.12
interrupts.CPU125.RES:Rescheduling_interrupts
2918 ± 4% -0.4% 2907 ± 3% +1.3% 2955 ± 4%
interrupts.CPU125.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU126.50:PCI-MSI.23592967-edge.nvme0q7
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU126.51:PCI-MSI.23592967-edge.nvme0q7
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU126.67:PCI-MSI.23592967-edge.nvme0q7
3841 ± 4% -1.7% 3776 -2.8% 3734
interrupts.CPU126.CAL:Function_call_interrupts
1.50 ± 33% +22.2% 1.83 ± 20% +25.0% 1.88 ± 17%
interrupts.CPU126.IWI:IRQ_work_interrupts
565421 ± 15% +7.1% 605482 +7.1% 605700
interrupts.CPU126.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU126.MCP:Machine_check_polls
6128 ± 33% +22.2% 7490 ± 20% +25.3% 7678 ± 17%
interrupts.CPU126.NMI:Non-maskable_interrupts
6128 ± 33% +22.2% 7490 ± 20% +25.3% 7678 ± 17%
interrupts.CPU126.PMI:Performance_monitoring_interrupts
334.00 ± 16% -7.9% 307.67 -8.1% 306.88
interrupts.CPU126.RES:Rescheduling_interrupts
2995 ± 3% +1.7% 3044 ± 3% -1.4% 2954 ± 4%
interrupts.CPU126.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU127.52:PCI-MSI.23592968-edge.nvme0q8
3779 -2.5% 3684 -1.5% 3722
interrupts.CPU127.CAL:Function_call_interrupts
1.50 ± 33% +22.2% 1.83 ± 20% +33.3% 2.00 ± 25%
interrupts.CPU127.IWI:IRQ_work_interrupts
565887 ± 15% +7.0% 605443 +7.0% 605717
interrupts.CPU127.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU127.MCP:Machine_check_polls
6129 ± 33% +22.2% 7488 ± 20% +25.3% 7679 ± 17%
interrupts.CPU127.NMI:Non-maskable_interrupts
6129 ± 33% +22.2% 7488 ± 20% +25.3% 7679 ± 17%
interrupts.CPU127.PMI:Performance_monitoring_interrupts
328.17 ± 10% -6.3% 307.50 -6.4% 307.25
interrupts.CPU127.RES:Rescheduling_interrupts
2923 ± 4% -2.1% 2861 ± 3% +0.9% 2950 ± 4%
interrupts.CPU127.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU128.53:PCI-MSI.23592969-edge.nvme0q9
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU128.88:PCI-MSI.23592969-edge.nvme0q9
3733 +32.3% 4939 ± 51% -0.1% 3730
interrupts.CPU128.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +9.1% 2.00 ± 25%
interrupts.CPU128.IWI:IRQ_work_interrupts
565919 ± 15% +7.0% 605476 +7.0% 605723
interrupts.CPU128.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU128.MCP:Machine_check_polls
7487 ± 20% +0.0% 7490 ± 20% +2.6% 7679 ± 17%
interrupts.CPU128.NMI:Non-maskable_interrupts
7487 ± 20% +0.0% 7490 ± 20% +2.6% 7679 ± 17%
interrupts.CPU128.PMI:Performance_monitoring_interrupts
308.83 +59.5% 492.67 ± 83% -0.8% 306.50
interrupts.CPU128.RES:Rescheduling_interrupts
2959 ± 3% +2.9% 3046 ± 3% +0.2% 2964 ± 4%
interrupts.CPU128.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU129.54:PCI-MSI.23592970-edge.nvme0q10
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU129.70:PCI-MSI.23592970-edge.nvme0q10
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU129.89:PCI-MSI.23592970-edge.nvme0q10
3737 +5.3% 3936 ± 13% -1.8% 3670 ± 2%
interrupts.CPU129.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +9.1% 2.00 ± 25%
interrupts.CPU129.IWI:IRQ_work_interrupts
566075 ± 15% +7.0% 605471 +7.0% 605689
interrupts.CPU129.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU129.MCP:Machine_check_polls
7486 ± 20% +0.0% 7489 ± 20% +2.6% 7679 ± 17%
interrupts.CPU129.NMI:Non-maskable_interrupts
7486 ± 20% +0.0% 7489 ± 20% +2.6% 7679 ± 17%
interrupts.CPU129.PMI:Performance_monitoring_interrupts
307.67 +23.7% 380.50 ± 43% +0.0% 307.75
interrupts.CPU129.RES:Rescheduling_interrupts
2921 ± 4% -0.0% 2920 ± 3% +0.2% 2927 ± 4%
interrupts.CPU129.TLB:TLB_shootdowns
1467 ± 96% +374.0% 6955 ±131% +240.2% 4991 ±125%
interrupts.CPU13.34:PCI-MSI.524292-edge.eth0-TxRx-3
3751 +0.5% 3770 -0.5% 3732
interrupts.CPU13.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +9.1% 2.00 ± 25%
interrupts.CPU13.IWI:IRQ_work_interrupts
564009 ± 16% +7.4% 605581 +7.4% 605896
interrupts.CPU13.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU13.MCP:Machine_check_polls
7507 ± 20% -0.0% 7504 ± 20% +2.5% 7697 ± 17%
interrupts.CPU13.NMI:Non-maskable_interrupts
7507 ± 20% -0.0% 7504 ± 20% +2.5% 7697 ± 17%
interrupts.CPU13.PMI:Performance_monitoring_interrupts
339.00 ± 9% -3.8% 326.00 ± 4% -2.4% 330.75 ± 6%
interrupts.CPU13.RES:Rescheduling_interrupts
2999 ± 3% +0.1% 3002 ± 3% -3.1% 2906 ± 4%
interrupts.CPU13.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU130.78:PCI-MSI.23592971-edge.nvme0q11
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU130.90:PCI-MSI.23592971-edge.nvme0q11
3767 -0.0% 3766 -0.6% 3743
interrupts.CPU130.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +2.3% 1.88 ± 17%
interrupts.CPU130.IWI:IRQ_work_interrupts
565655 ± 15% +7.0% 605453 +7.1% 605704
interrupts.CPU130.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU130.MCP:Machine_check_polls
7486 ± 20% +0.0% 7488 ± 20% +2.6% 7678 ± 17%
interrupts.CPU130.NMI:Non-maskable_interrupts
7486 ± 20% +0.0% 7488 ± 20% +2.6% 7678 ± 17%
interrupts.CPU130.PMI:Performance_monitoring_interrupts
310.00 -0.9% 307.33 -1.2% 306.12
interrupts.CPU130.RES:Rescheduling_interrupts
3010 ± 3% +2.3% 3081 -0.7% 2989 ± 3%
interrupts.CPU130.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU131.76:PCI-MSI.23592972-edge.nvme0q12
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU131.91:PCI-MSI.23592972-edge.nvme0q12
3732 ± 2% -1.0% 3695 +0.2% 3741
interrupts.CPU131.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +2.3% 1.88 ± 17%
interrupts.CPU131.IWI:IRQ_work_interrupts
565142 ± 16% +7.1% 605528 +7.2% 605720
interrupts.CPU131.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU131.MCP:Machine_check_polls
7487 ± 20% +0.0% 7489 ± 20% +2.6% 7679 ± 17%
interrupts.CPU131.NMI:Non-maskable_interrupts
7487 ± 20% +0.0% 7489 ± 20% +2.6% 7679 ± 17%
interrupts.CPU131.PMI:Performance_monitoring_interrupts
306.83 +0.2% 307.33 +0.2% 307.38
interrupts.CPU131.RES:Rescheduling_interrupts
2930 ± 4% -1.2% 2896 ± 3% +1.2% 2965 ± 4%
interrupts.CPU131.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU132.77:PCI-MSI.23592973-edge.nvme0q13
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU132.80:PCI-MSI.23592973-edge.nvme0q13
3767 +0.6% 3788 -0.7% 3742
interrupts.CPU132.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +2.3% 1.88 ± 17%
interrupts.CPU132.IWI:IRQ_work_interrupts
565521 ± 15% +7.1% 605474 +7.1% 605722
interrupts.CPU132.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU132.MCP:Machine_check_polls
7487 ± 20% +0.0% 7488 ± 20% +2.6% 7678 ± 17%
interrupts.CPU132.NMI:Non-maskable_interrupts
7487 ± 20% +0.0% 7488 ± 20% +2.6% 7678 ± 17%
interrupts.CPU132.PMI:Performance_monitoring_interrupts
308.00 +48.6% 457.83 ± 73% -0.4% 306.88
interrupts.CPU132.RES:Rescheduling_interrupts
3014 ± 3% +1.3% 3054 ± 3% -1.6% 2967 ± 4%
interrupts.CPU132.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU133.62:PCI-MSI.23592974-edge.nvme0q14
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU133.78:PCI-MSI.23592974-edge.nvme0q14
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU133.93:PCI-MSI.23592974-edge.nvme0q14
3726 ± 2% -1.1% 3685 -0.1% 3723
interrupts.CPU133.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +2.3% 1.88 ± 17%
interrupts.CPU133.IWI:IRQ_work_interrupts
565963 ± 15% +7.0% 605524 +7.0% 605731
interrupts.CPU133.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU133.MCP:Machine_check_polls
7487 ± 20% +0.0% 7488 ± 20% +2.6% 7678 ± 17%
interrupts.CPU133.NMI:Non-maskable_interrupts
7487 ± 20% +0.0% 7488 ± 20% +2.6% 7678 ± 17%
interrupts.CPU133.PMI:Performance_monitoring_interrupts
308.50 -0.5% 307.00 -0.6% 306.50
interrupts.CPU133.RES:Rescheduling_interrupts
2933 ± 4% -1.2% 2897 ± 3% +1.2% 2968 ± 4%
interrupts.CPU133.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU134.75:PCI-MSI.23592975-edge.nvme0q15
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU134.79:PCI-MSI.23592975-edge.nvme0q15
3763 +0.2% 3770 -0.7% 3738
interrupts.CPU134.CAL:Function_call_interrupts
1.67 ± 28% +20.0% 2.00 ± 28% +20.0% 2.00 ± 25%
interrupts.CPU134.IWI:IRQ_work_interrupts
565957 ± 15% +7.0% 605477 +7.0% 605713
interrupts.CPU134.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU134.MCP:Machine_check_polls
6806 ± 28% +10.0% 7489 ± 20% +12.8% 7679 ± 17%
interrupts.CPU134.NMI:Non-maskable_interrupts
6806 ± 28% +10.0% 7489 ± 20% +12.8% 7679 ± 17%
interrupts.CPU134.PMI:Performance_monitoring_interrupts
307.33 -0.1% 307.17 -0.3% 306.50
interrupts.CPU134.RES:Rescheduling_interrupts
3021 ± 3% +2.7% 3101 -1.3% 2980 ± 4%
interrupts.CPU134.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU135.66:PCI-MSI.23592976-edge.nvme0q16
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU135.68:PCI-MSI.23592976-edge.nvme0q16
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU135.76:PCI-MSI.23592976-edge.nvme0q16
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU135.79:PCI-MSI.23592976-edge.nvme0q16
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU135.95:PCI-MSI.23592976-edge.nvme0q16
4166 ± 18% -10.9% 3710 -10.3% 3735
interrupts.CPU135.CAL:Function_call_interrupts
1.67 ± 28% +10.0% 1.83 ± 20% +27.5% 2.12 ± 15%
interrupts.CPU135.IWI:IRQ_work_interrupts
565770 ± 15% +7.0% 605478 +7.1% 605700
interrupts.CPU135.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU135.MCP:Machine_check_polls
6805 ± 28% +10.0% 7489 ± 20% +20.3% 8189
interrupts.CPU135.NMI:Non-maskable_interrupts
6805 ± 28% +10.0% 7489 ± 20% +20.3% 8189
interrupts.CPU135.PMI:Performance_monitoring_interrupts
383.83 ± 31% -19.7% 308.33 -20.0% 307.00
interrupts.CPU135.RES:Rescheduling_interrupts
2947 ± 4% -1.5% 2904 ± 3% +1.1% 2980 ± 4%
interrupts.CPU135.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU136.104:PCI-MSI.23592985-edge.nvme0q25
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU136.68:PCI-MSI.23592985-edge.nvme0q25
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU136.75:PCI-MSI.23592985-edge.nvme0q25
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU136.77:PCI-MSI.23592985-edge.nvme0q25
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU136.85:PCI-MSI.23592985-edge.nvme0q25
3767 +0.2% 3773 -0.6% 3744
interrupts.CPU136.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +9.1% 2.00
interrupts.CPU136.IWI:IRQ_work_interrupts
564999 ± 16% +7.2% 605484 +7.2% 605724
interrupts.CPU136.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU136.MCP:Machine_check_polls
7488 ± 20% +0.0% 7489 ± 20% +9.4% 8190
interrupts.CPU136.NMI:Non-maskable_interrupts
7488 ± 20% +0.0% 7489 ± 20% +9.4% 8190
interrupts.CPU136.PMI:Performance_monitoring_interrupts
307.50 -0.1% 307.17 -0.3% 306.62
interrupts.CPU136.RES:Rescheduling_interrupts
2988 ± 3% +2.3% 3056 ± 3% -0.4% 2977 ± 4%
interrupts.CPU136.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU137.74:PCI-MSI.23592986-edge.nvme0q26
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU137.76:PCI-MSI.23592986-edge.nvme0q26
3729 ± 2% -0.6% 3706 +0.6% 3750
interrupts.CPU137.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +9.1% 2.00
interrupts.CPU137.IWI:IRQ_work_interrupts
565639 ± 15% +7.0% 605500 +7.1% 605703
interrupts.CPU137.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU137.MCP:Machine_check_polls
7487 ± 20% +0.0% 7489 ± 20% +9.4% 8189
interrupts.CPU137.NMI:Non-maskable_interrupts
7487 ± 20% +0.0% 7489 ± 20% +9.4% 8189
interrupts.CPU137.PMI:Performance_monitoring_interrupts
307.00 +0.0% 307.00 +3.5% 317.62 ± 8%
interrupts.CPU137.RES:Rescheduling_interrupts
2945 ± 4% -1.2% 2911 ± 3% +0.9% 2973 ± 4%
interrupts.CPU137.TLB:TLB_shootdowns
3764 +2.9% 3874 ± 5% -1.0% 3727 ± 2%
interrupts.CPU138.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +15.9% 2.12 ± 15%
interrupts.CPU138.IWI:IRQ_work_interrupts
565627 ± 15% +7.0% 605456 +7.1% 605628
interrupts.CPU138.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU138.MCP:Machine_check_polls
7487 ± 20% +9.1% 8171 +9.4% 8191
interrupts.CPU138.NMI:Non-maskable_interrupts
7487 ± 20% +9.1% 8171 +9.4% 8191
interrupts.CPU138.PMI:Performance_monitoring_interrupts
306.33 +12.0% 343.00 ± 17% +0.7% 308.38
interrupts.CPU138.RES:Rescheduling_interrupts
3030 ± 3% -0.2% 3023 ± 4% -2.1% 2966 ± 5%
interrupts.CPU138.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU139.90:PCI-MSI.23592988-edge.nvme0q28
5533 ± 48% -33.0% 3708 -32.1% 3757
interrupts.CPU139.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +9.1% 2.00
interrupts.CPU139.IWI:IRQ_work_interrupts
565724 ± 15% +7.0% 605492 +7.1% 605702
interrupts.CPU139.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU139.MCP:Machine_check_polls
7486 ± 20% +0.0% 7490 ± 20% +9.4% 8190
interrupts.CPU139.NMI:Non-maskable_interrupts
7486 ± 20% +0.0% 7490 ± 20% +9.4% 8190
interrupts.CPU139.PMI:Performance_monitoring_interrupts
566.67 ± 72% -45.7% 307.83 -45.9% 306.50
interrupts.CPU139.RES:Rescheduling_interrupts
2956 ± 4% -1.3% 2918 ± 3% +1.8% 3008 ± 3%
interrupts.CPU139.TLB:TLB_shootdowns
0.00 +1.7e+101% 0.17 ±223% -100.0% 0.00
interrupts.CPU14.4:IO-APIC.4-edge.ttyS0
3690 -0.2% 3682 +0.1% 3695
interrupts.CPU14.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +2.3% 1.88 ± 17%
interrupts.CPU14.IWI:IRQ_work_interrupts
564000 ± 16% +7.4% 605504 +7.4% 605877
interrupts.CPU14.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU14.MCP:Machine_check_polls
7507 ± 20% -0.0% 7505 ± 20% +2.5% 7698 ± 17%
interrupts.CPU14.NMI:Non-maskable_interrupts
7507 ± 20% -0.0% 7505 ± 20% +2.5% 7698 ± 17%
interrupts.CPU14.PMI:Performance_monitoring_interrupts
310.33 -0.3% 309.50 +0.4% 311.50
interrupts.CPU14.RES:Rescheduling_interrupts
2836 ± 3% -0.3% 2828 ± 3% +2.3% 2900 ± 4%
interrupts.CPU14.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU140.108:PCI-MSI.23592989-edge.nvme0q29
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU140.89:PCI-MSI.23592989-edge.nvme0q29
3783 -0.4% 3769 ± 2% -1.0% 3744
interrupts.CPU140.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +9.1% 2.00
interrupts.CPU140.IWI:IRQ_work_interrupts
565962 ± 15% +7.0% 605477 +7.0% 605691
interrupts.CPU140.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU140.MCP:Machine_check_polls
7485 ± 20% +0.1% 7490 ± 20% +9.4% 8191
interrupts.CPU140.NMI:Non-maskable_interrupts
7485 ± 20% +0.1% 7490 ± 20% +9.4% 8191
interrupts.CPU140.PMI:Performance_monitoring_interrupts
320.50 ± 9% -4.0% 307.83 -4.3% 306.62
interrupts.CPU140.RES:Rescheduling_interrupts
3072 ± 2% +0.2% 3077 ± 3% -2.6% 2991 ± 4%
interrupts.CPU140.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU141.78:PCI-MSI.23592990-edge.nvme0q30
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU141.87:PCI-MSI.23592990-edge.nvme0q30
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU141.94:PCI-MSI.23592990-edge.nvme0q30
3772 ± 2% -1.6% 3713 -0.8% 3743
interrupts.CPU141.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +15.9% 2.12 ± 15%
interrupts.CPU141.IWI:IRQ_work_interrupts
565607 ± 15% +7.1% 605485 +7.1% 605693
interrupts.CPU141.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU141.MCP:Machine_check_polls
7486 ± 20% +9.1% 8170 +9.4% 8191
interrupts.CPU141.NMI:Non-maskable_interrupts
7486 ± 20% +9.1% 8170 +9.4% 8191
interrupts.CPU141.PMI:Performance_monitoring_interrupts
312.67 ± 3% -2.0% 306.50 -1.9% 306.62
interrupts.CPU141.RES:Rescheduling_interrupts
2956 ± 4% -1.5% 2911 ± 2% +0.9% 2982 ± 4%
interrupts.CPU141.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU142.110:PCI-MSI.23592991-edge.nvme0q31
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU142.88:PCI-MSI.23592991-edge.nvme0q31
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU142.95:PCI-MSI.23592991-edge.nvme0q31
3775 -0.1% 3770 ± 2% -1.5% 3716 ± 2%
interrupts.CPU142.CAL:Function_call_interrupts
2.00 -8.3% 1.83 ± 20% +6.2% 2.12 ± 15%
interrupts.CPU142.IWI:IRQ_work_interrupts
565806 ± 15% +7.0% 605479 +7.1% 605776
interrupts.CPU142.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU142.MCP:Machine_check_polls
8168 -8.3% 7489 ± 20% +0.3% 8191
interrupts.CPU142.NMI:Non-maskable_interrupts
8168 -8.3% 7489 ± 20% +0.3% 8191
interrupts.CPU142.PMI:Performance_monitoring_interrupts
307.83 -0.2% 307.33 +0.6% 309.75
interrupts.CPU142.RES:Rescheduling_interrupts
3032 ± 3% +1.5% 3079 ± 3% -1.3% 2994 ± 4%
interrupts.CPU142.TLB:TLB_shootdowns
3755 ± 2% +3.9% 3900 ± 10% -0.3% 3743
interrupts.CPU143.CAL:Function_call_interrupts
2.00 -8.3% 1.83 ± 20% +6.2% 2.12 ± 15%
interrupts.CPU143.IWI:IRQ_work_interrupts
565474 ± 15% +7.1% 605472 +7.1% 605725
interrupts.CPU143.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU143.MCP:Machine_check_polls
8168 -8.3% 7488 ± 20% +0.3% 8190
interrupts.CPU143.NMI:Non-maskable_interrupts
8168 -8.3% 7488 ± 20% +0.3% 8190
interrupts.CPU143.PMI:Performance_monitoring_interrupts
308.50 +19.2% 367.67 ± 37% -0.7% 306.25
interrupts.CPU143.RES:Rescheduling_interrupts
2926 ± 3% +1.1% 2957 ± 3% +2.4% 2996 ± 4%
interrupts.CPU143.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU144.76:PCI-MSI.23592993-edge.nvme0q33
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU144.93:PCI-MSI.23592993-edge.nvme0q33
16188 ± 19% +2.0% 16511 ± 26% +12.4% 18194 ± 37%
interrupts.CPU144.CAL:Function_call_interrupts
3.00 -5.6% 2.83 ± 13% +4.2% 3.12 ± 10%
interrupts.CPU144.IWI:IRQ_work_interrupts
565758 ± 15% +7.1% 605820 +7.1% 606065
interrupts.CPU144.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU144.MCP:Machine_check_polls
8534 -8.4% 7818 ± 20% +0.2% 8552
interrupts.CPU144.NMI:Non-maskable_interrupts
8534 -8.4% 7818 ± 20% +0.2% 8552
interrupts.CPU144.PMI:Performance_monitoring_interrupts
395.83 ± 33% -17.4% 327.00 ± 3% -16.1% 332.25 ± 3%
interrupts.CPU144.RES:Rescheduling_interrupts
3034 ± 4% -0.3% 3024 ± 4% -0.8% 3011 ± 4%
interrupts.CPU144.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU145.94:PCI-MSI.23592994-edge.nvme0q34
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU145.96:PCI-MSI.23592994-edge.nvme0q34
6130 ± 18% -3.4% 5923 ± 16% +3.8% 6361 ± 20%
interrupts.CPU145.CAL:Function_call_interrupts
3.00 -5.6% 2.83 ± 13% -4.2% 2.88 ± 11%
interrupts.CPU145.IWI:IRQ_work_interrupts
565679 ± 15% +7.1% 605680 +7.1% 605911
interrupts.CPU145.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU145.MCP:Machine_check_polls
8536 -8.4% 7820 ± 20% -6.0% 8022 ± 17%
interrupts.CPU145.NMI:Non-maskable_interrupts
8536 -8.4% 7820 ± 20% -6.0% 8022 ± 17%
interrupts.CPU145.PMI:Performance_monitoring_interrupts
408.00 ± 9% -0.9% 404.50 ± 11% +1.4% 413.88 ± 15%
interrupts.CPU145.RES:Rescheduling_interrupts
3071 ± 3% -4.5% 2932 ± 3% -2.5% 2995 ± 3%
interrupts.CPU145.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU146.80:PCI-MSI.23592995-edge.nvme0q35
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU146.85:PCI-MSI.23592995-edge.nvme0q35
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU146.95:PCI-MSI.23592995-edge.nvme0q35
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU146.97:PCI-MSI.23592995-edge.nvme0q35
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU146.98:PCI-MSI.23592995-edge.nvme0q35
4955 ± 21% -4.5% 4731 ± 21% -13.0% 4312 ± 10%
interrupts.CPU146.CAL:Function_call_interrupts
2.83 ± 13% +0.0% 2.83 ± 13% +1.5% 2.88 ± 11%
interrupts.CPU146.IWI:IRQ_work_interrupts
566071 ± 15% +7.0% 605570 +7.0% 605810
interrupts.CPU146.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU146.MCP:Machine_check_polls
7829 ± 20% -0.1% 7821 ± 20% +2.4% 8020 ± 17%
interrupts.CPU146.NMI:Non-maskable_interrupts
7829 ± 20% -0.1% 7821 ± 20% +2.4% 8020 ± 17%
interrupts.CPU146.PMI:Performance_monitoring_interrupts
451.33 ± 30% -9.3% 409.17 ± 21% +78.5% 805.50 ±133%
interrupts.CPU146.RES:Rescheduling_interrupts
3004 ± 3% +2.7% 3086 ± 3% +0.1% 3006 ± 4%
interrupts.CPU146.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU147.100:PCI-MSI.23592996-edge.nvme0q36
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU147.96:PCI-MSI.23592996-edge.nvme0q36
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU147.98:PCI-MSI.23592996-edge.nvme0q36
4357 ± 21% -10.4% 3906 ± 9% +6.0% 4620 ± 48%
interrupts.CPU147.CAL:Function_call_interrupts
2.83 ± 13% +5.9% 3.00 +1.5% 2.88 ± 11%
interrupts.CPU147.IWI:IRQ_work_interrupts
565655 ± 15% +7.1% 605566 +7.1% 605755
interrupts.CPU147.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU147.MCP:Machine_check_polls
7828 ± 20% +9.0% 8535 +2.5% 8020 ± 17%
interrupts.CPU147.NMI:Non-maskable_interrupts
7828 ± 20% +9.0% 8535 +2.5% 8020 ± 17%
interrupts.CPU147.PMI:Performance_monitoring_interrupts
742.83 ±107% -58.6% 307.83 -44.0% 416.12 ± 68%
interrupts.CPU147.RES:Rescheduling_interrupts
3010 ± 3% -2.4% 2937 ± 3% -0.1% 3008 ± 4%
interrupts.CPU147.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU148.101:PCI-MSI.23592997-edge.nvme0q37
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU148.104:PCI-MSI.23592997-edge.nvme0q37
3805 ± 5% +4.8% 3987 ± 11% +9.7% 4175 ± 26%
interrupts.CPU148.CAL:Function_call_interrupts
2.67 ± 17% +12.5% 3.00 +7.8% 2.88 ± 11%
interrupts.CPU148.IWI:IRQ_work_interrupts
565623 ± 15% +7.1% 605567 +7.1% 605750
interrupts.CPU148.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU148.MCP:Machine_check_polls
7116 ± 28% +20.0% 8536 +12.7% 8020 ± 17%
interrupts.CPU148.NMI:Non-maskable_interrupts
7116 ± 28% +20.0% 8536 +12.7% 8020 ± 17%
interrupts.CPU148.PMI:Performance_monitoring_interrupts
319.50 ± 3% +0.1% 319.67 ± 8% +14.0% 364.12 ± 39%
interrupts.CPU148.RES:Rescheduling_interrupts
2998 ± 5% +2.9% 3084 ± 3% +0.4% 3012 ± 4%
interrupts.CPU148.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU149.100:PCI-MSI.23592998-edge.nvme0q38
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU149.88:PCI-MSI.23592998-edge.nvme0q38
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU149.98:PCI-MSI.23592998-edge.nvme0q38
3787 -2.1% 3709 +1.1% 3827 ± 5%
interrupts.CPU149.CAL:Function_call_interrupts
2.83 ± 13% +5.9% 3.00 +1.5% 2.88 ± 11%
interrupts.CPU149.IWI:IRQ_work_interrupts
565570 ± 15% +7.1% 605554 +7.1% 605755
interrupts.CPU149.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU149.MCP:Machine_check_polls
7824 ± 20% +9.1% 8536 +2.5% 8020 ± 17%
interrupts.CPU149.NMI:Non-maskable_interrupts
7824 ± 20% +9.1% 8536 +2.5% 8020 ± 17%
interrupts.CPU149.PMI:Performance_monitoring_interrupts
307.83 -0.5% 306.33 +11.4% 342.88 ± 16%
interrupts.CPU149.RES:Rescheduling_interrupts
3058 ± 3% -3.7% 2944 ± 3% -3.5% 2951 ± 4%
interrupts.CPU149.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU15.37:PCI-MSI.65536-edge.ioat-msix
3746 +0.1% 3750 +5.3% 3946 ± 19%
interrupts.CPU15.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +9.1% 2.00 ± 25%
interrupts.CPU15.IWI:IRQ_work_interrupts
563873 ± 16% +7.4% 605515 +7.4% 605794
interrupts.CPU15.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU15.MCP:Machine_check_polls
7507 ± 20% -0.0% 7504 ± 20% +2.5% 7698 ± 17%
interrupts.CPU15.NMI:Non-maskable_interrupts
7507 ± 20% -0.0% 7504 ± 20% +2.5% 7698 ± 17%
interrupts.CPU15.PMI:Performance_monitoring_interrupts
310.83 +3.1% 320.50 ± 7% +12.1% 348.50 ± 27%
interrupts.CPU15.RES:Rescheduling_interrupts
3003 ± 3% +0.1% 3005 ± 3% -4.8% 2860 ± 5%
interrupts.CPU15.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU150.102:PCI-MSI.23592999-edge.nvme0q39
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU150.99:PCI-MSI.23592999-edge.nvme0q39
3754 ± 2% +0.9% 3788 ± 2% -0.8% 3724
interrupts.CPU150.CAL:Function_call_interrupts
2.83 ± 13% +5.9% 3.00 +1.5% 2.88 ± 11%
interrupts.CPU150.IWI:IRQ_work_interrupts
565693 ± 15% +7.0% 605550 +7.1% 605760
interrupts.CPU150.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU150.MCP:Machine_check_polls
7824 ± 20% +9.1% 8535 +2.5% 8020 ± 17%
interrupts.CPU150.NMI:Non-maskable_interrupts
7824 ± 20% +9.1% 8535 +2.5% 8020 ± 17%
interrupts.CPU150.PMI:Performance_monitoring_interrupts
307.00 +2.0% 313.00 ± 4% +0.0% 307.00
interrupts.CPU150.RES:Rescheduling_interrupts
3015 ± 4% +2.7% 3097 ± 3% +0.1% 3016 ± 4%
interrupts.CPU150.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU151.104:PCI-MSI.23593000-edge.nvme0q40
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU151.83:PCI-MSI.23593000-edge.nvme0q40
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU151.88:PCI-MSI.23593000-edge.nvme0q40
3768 ± 2% -1.0% 3731 +1.5% 3824 ± 5%
interrupts.CPU151.CAL:Function_call_interrupts
2.83 ± 13% +5.9% 3.00 +1.5% 2.88 ± 11%
interrupts.CPU151.IWI:IRQ_work_interrupts
566018 ± 15% +7.0% 605557 +7.0% 605795
interrupts.CPU151.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU151.MCP:Machine_check_polls
7825 ± 20% +9.1% 8535 +2.5% 8019 ± 17%
interrupts.CPU151.NMI:Non-maskable_interrupts
7825 ± 20% +9.1% 8535 +2.5% 8019 ± 17%
interrupts.CPU151.PMI:Performance_monitoring_interrupts
310.00 ± 2% -0.9% 307.17 +6.1% 329.00 ± 18%
interrupts.CPU151.RES:Rescheduling_interrupts
3063 ± 3% -4.0% 2940 ± 2% -1.6% 3015 ± 4%
interrupts.CPU151.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU152.103:PCI-MSI.23593001-edge.nvme0q41
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU152.89:PCI-MSI.23593001-edge.nvme0q41
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU152.91:PCI-MSI.23593001-edge.nvme0q41
3775 -0.1% 3770 ± 2% +0.5% 3792 ± 3%
interrupts.CPU152.CAL:Function_call_interrupts
2.83 ± 13% +5.9% 3.00 +1.5% 2.88 ± 11%
interrupts.CPU152.IWI:IRQ_work_interrupts
565611 ± 15% +7.1% 605552 +7.1% 605775
interrupts.CPU152.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU152.MCP:Machine_check_polls
7824 ± 20% +9.1% 8535 +2.5% 8019 ± 17%
interrupts.CPU152.NMI:Non-maskable_interrupts
7824 ± 20% +9.1% 8535 +2.5% 8019 ± 17%
interrupts.CPU152.PMI:Performance_monitoring_interrupts
308.00 -0.5% 306.50 -0.2% 307.50
interrupts.CPU152.RES:Rescheduling_interrupts
3028 ± 3% +0.9% 3056 ± 4% +0.7% 3050 ± 3%
interrupts.CPU152.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU153.85:PCI-MSI.23593002-edge.nvme0q42
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU153.87:PCI-MSI.23593002-edge.nvme0q42
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU153.99:PCI-MSI.23593002-edge.nvme0q42
3718 ± 2% -0.1% 3716 +5.2% 3913 ± 11%
interrupts.CPU153.CAL:Function_call_interrupts
2.83 ± 13% +5.9% 3.00 +1.5% 2.88 ± 11%
interrupts.CPU153.IWI:IRQ_work_interrupts
565477 ± 15% +7.1% 605544 +7.1% 605834
interrupts.CPU153.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU153.MCP:Machine_check_polls
7825 ± 20% +9.1% 8535 +2.5% 8020 ± 17%
interrupts.CPU153.NMI:Non-maskable_interrupts
7825 ± 20% +9.1% 8535 +2.5% 8020 ± 17%
interrupts.CPU153.PMI:Performance_monitoring_interrupts
307.33 -0.1% 307.17 +22.9% 377.62 ± 32%
interrupts.CPU153.RES:Rescheduling_interrupts
3030 ± 3% -2.5% 2954 ± 2% -0.3% 3020 ± 3%
interrupts.CPU153.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU154.86:PCI-MSI.23593003-edge.nvme0q43
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU154.88:PCI-MSI.23593003-edge.nvme0q43
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU154.93:PCI-MSI.23593003-edge.nvme0q43
3766 +0.8% 3795 +0.3% 3775 ± 2%
interrupts.CPU154.CAL:Function_call_interrupts
2.83 ± 13% +5.9% 3.00 +1.5% 2.88 ± 11%
interrupts.CPU154.IWI:IRQ_work_interrupts
565413 ± 15% +7.1% 605555 +7.1% 605746
interrupts.CPU154.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU154.MCP:Machine_check_polls
7825 ± 20% +9.1% 8536 +2.5% 8020 ± 17%
interrupts.CPU154.NMI:Non-maskable_interrupts
7825 ± 20% +9.1% 8536 +2.5% 8020 ± 17%
interrupts.CPU154.PMI:Performance_monitoring_interrupts
313.17 ± 3% -2.3% 306.00 +34.6% 421.38 ± 72%
interrupts.CPU154.RES:Rescheduling_interrupts
3024 ± 3% +2.8% 3108 ± 3% +0.1% 3028 ± 4%
interrupts.CPU154.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU155.101:PCI-MSI.23593004-edge.nvme0q44
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU155.87:PCI-MSI.23593004-edge.nvme0q44
3735 ± 3% +1.2% 3778 ± 4% +1.3% 3781 ± 2%
interrupts.CPU155.CAL:Function_call_interrupts
2.67 ± 17% +12.5% 3.00 +7.8% 2.88 ± 11%
interrupts.CPU155.IWI:IRQ_work_interrupts
565178 ± 15% +7.1% 605547 +7.2% 605799
interrupts.CPU155.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU155.MCP:Machine_check_polls
7112 ± 28% +20.0% 8534 +12.8% 8020 ± 17%
interrupts.CPU155.NMI:Non-maskable_interrupts
7112 ± 28% +20.0% 8534 +12.8% 8020 ± 17%
interrupts.CPU155.PMI:Performance_monitoring_interrupts
308.33 +3.7% 319.83 ± 9% +2.2% 315.00 ± 5%
interrupts.CPU155.RES:Rescheduling_interrupts
2996 ± 4% -1.4% 2953 ± 2% +1.0% 3026 ± 3%
interrupts.CPU155.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU156.88:PCI-MSI.23593005-edge.nvme0q45
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU156.93:PCI-MSI.23593005-edge.nvme0q45
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU156.95:PCI-MSI.23593005-edge.nvme0q45
3833 ± 4% -1.2% 3787 -2.1% 3753
interrupts.CPU156.CAL:Function_call_interrupts
2.67 ± 17% +12.5% 3.00 +7.8% 2.88 ± 11%
interrupts.CPU156.IWI:IRQ_work_interrupts
566084 ± 15% +7.0% 605552 +7.0% 605760
interrupts.CPU156.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU156.MCP:Machine_check_polls
7112 ± 28% +20.0% 8534 +12.8% 8019 ± 17%
interrupts.CPU156.NMI:Non-maskable_interrupts
7112 ± 28% +20.0% 8534 +12.8% 8019 ± 17%
interrupts.CPU156.PMI:Performance_monitoring_interrupts
323.67 ± 11% -5.4% 306.33 -5.4% 306.25
interrupts.CPU156.RES:Rescheduling_interrupts
3028 ± 4% +2.4% 3102 ± 3% +0.1% 3032 ± 4%
interrupts.CPU156.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU157.109:PCI-MSI.23593006-edge.nvme0q46
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU157.94:PCI-MSI.23593006-edge.nvme0q46
3892 ± 6% -4.6% 3711 ± 2% -3.5% 3757
interrupts.CPU157.CAL:Function_call_interrupts
2.67 ± 17% +12.5% 3.00 +7.8% 2.88 ± 11%
interrupts.CPU157.IWI:IRQ_work_interrupts
566071 ± 15% +7.0% 605601 +7.0% 605765
interrupts.CPU157.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU157.MCP:Machine_check_polls
7113 ± 28% +20.0% 8535 +12.8% 8021 ± 17%
interrupts.CPU157.NMI:Non-maskable_interrupts
7113 ± 28% +20.0% 8535 +12.8% 8021 ± 17%
interrupts.CPU157.PMI:Performance_monitoring_interrupts
336.33 ± 19% -8.6% 307.33 -8.7% 307.12
interrupts.CPU157.RES:Rescheduling_interrupts
3076 ± 3% -3.8% 2958 ± 2% -1.6% 3026 ± 3%
interrupts.CPU157.TLB:TLB_shootdowns
3772 -1.0% 3734 ± 2% +23.9% 4673 ± 53%
interrupts.CPU158.CAL:Function_call_interrupts
3.00 +0.0% 3.00 -4.2% 2.88 ± 11%
interrupts.CPU158.IWI:IRQ_work_interrupts
565698 ± 15% +7.1% 605590 +7.1% 605762
interrupts.CPU158.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU158.MCP:Machine_check_polls
8536 -0.0% 8535 -6.1% 8019 ± 17%
interrupts.CPU158.NMI:Non-maskable_interrupts
8536 -0.0% 8535 -6.1% 8019 ± 17%
interrupts.CPU158.PMI:Performance_monitoring_interrupts
307.33 +0.9% 310.00 ± 2% +37.0% 421.12 ± 71%
interrupts.CPU158.RES:Rescheduling_interrupts
3042 ± 3% +0.9% 3071 ± 4% -0.2% 3036 ± 4%
interrupts.CPU158.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU159.108:PCI-MSI.23593008-edge.nvme0q48
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU159.112:PCI-MSI.23593008-edge.nvme0q48
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU159.93:PCI-MSI.23593008-edge.nvme0q48
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU159.96:PCI-MSI.23593008-edge.nvme0q48
3785 ± 2% -1.0% 3747 -0.2% 3778
interrupts.CPU159.CAL:Function_call_interrupts
2.83 ± 13% +5.9% 3.00 +1.5% 2.88 ± 11%
interrupts.CPU159.IWI:IRQ_work_interrupts
565419 ± 15% +7.1% 605549 +7.1% 605771
interrupts.CPU159.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU159.MCP:Machine_check_polls
7825 ± 20% +9.1% 8535 +2.5% 8020 ± 17%
interrupts.CPU159.NMI:Non-maskable_interrupts
7825 ± 20% +9.1% 8535 +2.5% 8020 ± 17%
interrupts.CPU159.PMI:Performance_monitoring_interrupts
307.33 -0.1% 307.17 +0.9% 310.12 ± 2%
interrupts.CPU159.RES:Rescheduling_interrupts
3041 ± 3% -1.3% 3002 ± 2% -0.1% 3037 ± 3%
interrupts.CPU159.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU16.157:PCI-MSI.23593073-edge.nvme0q113
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU16.161:PCI-MSI.23593073-edge.nvme0q113
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU16.39:PCI-MSI.67584-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU16.41:PCI-MSI.67584-edge.ioat-msix
3688 +0.3% 3698 ± 2% +0.4% 3704
interrupts.CPU16.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +9.1% 2.00 ± 25%
interrupts.CPU16.IWI:IRQ_work_interrupts
564142 ± 16% +7.3% 605492 +7.4% 605854
interrupts.CPU16.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU16.MCP:Machine_check_polls
7509 ± 20% +9.0% 8187 +2.5% 7698 ± 17%
interrupts.CPU16.NMI:Non-maskable_interrupts
7509 ± 20% +9.0% 8187 +2.5% 7698 ± 17%
interrupts.CPU16.PMI:Performance_monitoring_interrupts
309.83 +0.2% 310.50 +1.2% 313.62 ± 3%
interrupts.CPU16.RES:Rescheduling_interrupts
2838 ± 3% +2.8% 2917 ± 5% +2.7% 2916 ± 4%
interrupts.CPU16.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU160.102:PCI-MSI.23593017-edge.nvme0q57
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU160.105:PCI-MSI.23593017-edge.nvme0q57
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU160.107:PCI-MSI.23593017-edge.nvme0q57
3751 +1.6% 3810 -0.0% 3751 ± 2%
interrupts.CPU160.CAL:Function_call_interrupts
2.83 ± 13% +5.9% 3.00 +1.5% 2.88 ± 11%
interrupts.CPU160.IWI:IRQ_work_interrupts
565784 ± 15% +7.0% 605549 +7.1% 605760
interrupts.CPU160.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU160.MCP:Machine_check_polls
7825 ± 20% +9.1% 8535 +2.5% 8020 ± 17%
interrupts.CPU160.NMI:Non-maskable_interrupts
7825 ± 20% +9.1% 8535 +2.5% 8020 ± 17%
interrupts.CPU160.PMI:Performance_monitoring_interrupts
307.50 -0.1% 307.17 +12.6% 346.38 ± 28%
interrupts.CPU160.RES:Rescheduling_interrupts
3044 ± 3% +2.2% 3110 ± 3% -0.4% 3033 ± 4%
interrupts.CPU160.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU161.103:PCI-MSI.23593018-edge.nvme0q58
3745 ± 3% -0.3% 3733 ± 3% +1.0% 3781
interrupts.CPU161.CAL:Function_call_interrupts
2.83 ± 13% +5.9% 3.00 +5.9% 3.00
interrupts.CPU161.IWI:IRQ_work_interrupts
565750 ± 15% +7.0% 605462 +7.1% 605736
interrupts.CPU161.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU161.MCP:Machine_check_polls
7824 ± 20% +9.1% 8536 +9.3% 8553
interrupts.CPU161.NMI:Non-maskable_interrupts
7824 ± 20% +9.1% 8536 +9.3% 8553
interrupts.CPU161.PMI:Performance_monitoring_interrupts
309.00 +0.1% 309.33 ± 2% -0.5% 307.38
interrupts.CPU161.RES:Rescheduling_interrupts
3054 ± 3% -3.0% 2962 ± 2% -0.4% 3041 ± 3%
interrupts.CPU161.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU162.107:PCI-MSI.23593019-edge.nvme0q59
4182 ± 20% -9.4% 3787 ± 2% -9.5% 3784 ± 2%
interrupts.CPU162.CAL:Function_call_interrupts
3.00 +0.0% 3.00 +0.0% 3.00
interrupts.CPU162.IWI:IRQ_work_interrupts
566322 ± 15% +6.9% 605545 +7.0% 605751
interrupts.CPU162.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU162.MCP:Machine_check_polls
8537 -0.0% 8535 +0.2% 8554
interrupts.CPU162.NMI:Non-maskable_interrupts
8537 -0.0% 8535 +0.2% 8554
interrupts.CPU162.PMI:Performance_monitoring_interrupts
364.83 ± 35% -12.6% 318.83 ± 8% -15.7% 307.62
interrupts.CPU162.RES:Rescheduling_interrupts
3085 ± 2% +1.0% 3114 ± 3% -0.4% 3071 ± 4%
interrupts.CPU162.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU163.108:PCI-MSI.23593020-edge.nvme0q60
3779 ± 2% +0.7% 3805 ± 5% +21.7% 4600 ± 46%
interrupts.CPU163.CAL:Function_call_interrupts
3.00 -5.6% 2.83 ± 13% +0.0% 3.00
interrupts.CPU163.IWI:IRQ_work_interrupts
566269 ± 15% +6.9% 605547 +7.0% 605744
interrupts.CPU163.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU163.MCP:Machine_check_polls
8537 -8.4% 7821 ± 20% +0.2% 8554
interrupts.CPU163.NMI:Non-maskable_interrupts
8537 -8.4% 7821 ± 20% +0.2% 8554
interrupts.CPU163.PMI:Performance_monitoring_interrupts
307.83 +7.6% 331.17 ± 16% +37.2% 422.38 ± 63%
interrupts.CPU163.RES:Rescheduling_interrupts
3048 ± 3% -2.4% 2975 ± 2% -0.1% 3046 ± 3%
interrupts.CPU163.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU164.109:PCI-MSI.23593021-edge.nvme0q61
3723 ± 3% +1.7% 3786 ± 2% +2.5% 3817 ± 2%
interrupts.CPU164.CAL:Function_call_interrupts
3.00 +0.0% 3.00 +0.0% 3.00
interrupts.CPU164.IWI:IRQ_work_interrupts
566382 ± 15% +6.9% 605549 +7.0% 605746
interrupts.CPU164.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU164.MCP:Machine_check_polls
8537 -0.0% 8534 +0.2% 8553
interrupts.CPU164.NMI:Non-maskable_interrupts
8537 -0.0% 8534 +0.2% 8553
interrupts.CPU164.PMI:Performance_monitoring_interrupts
307.83 +1.4% 312.00 ± 3% +6.9% 329.00 ± 10%
interrupts.CPU164.RES:Rescheduling_interrupts
3054 ± 3% +2.1% 3119 ± 3% -0.1% 3050 ± 4%
interrupts.CPU164.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU165.110:PCI-MSI.23593022-edge.nvme0q62
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU165.112:PCI-MSI.23593022-edge.nvme0q62
3778 -1.5% 3722 +1.3% 3826 ± 4%
interrupts.CPU165.CAL:Function_call_interrupts
3.00 -5.6% 2.83 ± 13% +0.0% 3.00
interrupts.CPU165.IWI:IRQ_work_interrupts
565828 ± 15% +7.0% 605546 +7.1% 605745
interrupts.CPU165.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU165.MCP:Machine_check_polls
8536 -8.3% 7826 ± 20% +0.2% 8553
interrupts.CPU165.NMI:Non-maskable_interrupts
8536 -8.3% 7826 ± 20% +0.2% 8553
interrupts.CPU165.PMI:Performance_monitoring_interrupts
305.83 +0.1% 306.00 +6.6% 325.88 ± 15%
interrupts.CPU165.RES:Rescheduling_interrupts
3060 ± 3% -2.7% 2976 ± 2% -0.3% 3051 ± 3%
interrupts.CPU165.TLB:TLB_shootdowns
3745 +0.6% 3766 +2.0% 3820 ± 4%
interrupts.CPU166.CAL:Function_call_interrupts
3.00 -11.1% 2.67 ± 17% -8.3% 2.75 ± 15%
interrupts.CPU166.IWI:IRQ_work_interrupts
565858 ± 15% +7.0% 605596 +7.0% 605706
interrupts.CPU166.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU166.MCP:Machine_check_polls
8536 -16.7% 7113 ± 28% -12.3% 7486 ± 24%
interrupts.CPU166.NMI:Non-maskable_interrupts
8536 -16.7% 7113 ± 28% -12.3% 7486 ± 24%
interrupts.CPU166.PMI:Performance_monitoring_interrupts
306.50 +0.0% 306.50 +7.6% 329.88 ± 18%
interrupts.CPU166.RES:Rescheduling_interrupts
3070 ± 3% +2.1% 3134 ± 2% -0.9% 3041 ± 3%
interrupts.CPU166.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU167.127:PCI-MSI.23593024-edge.nvme0q64
3791 ± 2% -0.6% 3767 +0.9% 3823 ± 4%
interrupts.CPU167.CAL:Function_call_interrupts
3.00 -11.1% 2.67 ± 17% -4.2% 2.88 ± 11%
interrupts.CPU167.IWI:IRQ_work_interrupts
565955 ± 15% +7.0% 605541 +7.0% 605767
interrupts.CPU167.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU167.MCP:Machine_check_polls
8536 -16.7% 7113 ± 28% -6.1% 8019 ± 17%
interrupts.CPU167.NMI:Non-maskable_interrupts
8536 -16.7% 7113 ± 28% -6.1% 8019 ± 17%
interrupts.CPU167.PMI:Performance_monitoring_interrupts
307.17 -0.1% 306.83 +5.0% 322.38 ± 12%
interrupts.CPU167.RES:Rescheduling_interrupts
3124 ± 3% -2.3% 3052 ± 2% -1.5% 3075 ± 3%
interrupts.CPU167.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU168.108:PCI-MSI.23593025-edge.nvme0q65
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU168.115:PCI-MSI.23593025-edge.nvme0q65
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU168.127:PCI-MSI.23593025-edge.nvme0q65
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU168.129:PCI-MSI.23593025-edge.nvme0q65
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU168.144:PCI-MSI.23593025-edge.nvme0q65
13959 ± 18% +43.1% 19973 ± 21% +11.1% 15514 ± 26%
interrupts.CPU168.CAL:Function_call_interrupts
2.00 +8.3% 2.17 ± 17% +18.8% 2.38 ± 20%
interrupts.CPU168.IWI:IRQ_work_interrupts
562950 ± 16% +7.6% 605755 +7.6% 605995
interrupts.CPU168.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU168.MCP:Machine_check_polls
7335 ± 20% -9.1% 6665 ± 28% +2.4% 7515 ± 17%
interrupts.CPU168.NMI:Non-maskable_interrupts
7335 ± 20% -9.1% 6665 ± 28% +2.4% 7515 ± 17%
interrupts.CPU168.PMI:Performance_monitoring_interrupts
332.17 ± 3% +6.6% 354.17 ± 7% +12.0% 371.88 ± 12%
interrupts.CPU168.RES:Rescheduling_interrupts
3030 ± 3% +0.5% 3045 ± 2% -0.3% 3022 ± 2%
interrupts.CPU168.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU169.114:PCI-MSI.23593026-edge.nvme0q66
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU169.118:PCI-MSI.23593026-edge.nvme0q66
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU169.128:PCI-MSI.23593026-edge.nvme0q66
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU169.129:PCI-MSI.23593026-edge.nvme0q66
6983 ± 13% -30.9% 4822 ± 10% -4.7% 6657 ± 20%
interrupts.CPU169.CAL:Function_call_interrupts
2.00 -16.7% 1.67 ± 28% +0.0% 2.00 ± 25%
interrupts.CPU169.IWI:IRQ_work_interrupts
561475 ± 17% +7.9% 605696 +7.9% 605918
interrupts.CPU169.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU169.MCP:Machine_check_polls
8005 -16.7% 6666 ± 28% -6.1% 7516 ± 17%
interrupts.CPU169.NMI:Non-maskable_interrupts
8005 -16.7% 6666 ± 28% -6.1% 7516 ± 17%
interrupts.CPU169.PMI:Performance_monitoring_interrupts
436.83 ± 12% -9.4% 395.83 ± 10% -8.4% 400.25 ± 11%
interrupts.CPU169.RES:Rescheduling_interrupts
3084 ± 3% -1.5% 3039 ± 2% -2.0% 3021 ± 3%
interrupts.CPU169.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU17.193:PCI-MSI.23593074-edge.nvme0q114
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU17.40:PCI-MSI.69632-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU17.42:PCI-MSI.67584-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU17.42:PCI-MSI.69632-edge.ioat-msix
3767 -1.2% 3721 -1.5% 3710
interrupts.CPU17.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +9.1% 2.00 ± 25%
interrupts.CPU17.IWI:IRQ_work_interrupts
563433 ± 16% +7.4% 605407 +7.5% 605843
interrupts.CPU17.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU17.MCP:Machine_check_polls
7508 ± 20% -0.0% 7505 ± 20% +2.5% 7698 ± 17%
interrupts.CPU17.NMI:Non-maskable_interrupts
7508 ± 20% -0.0% 7505 ± 20% +2.5% 7698 ± 17%
interrupts.CPU17.PMI:Performance_monitoring_interrupts
316.67 ± 4% -0.9% 313.83 ± 2% -1.8% 311.12
interrupts.CPU17.RES:Rescheduling_interrupts
3009 ± 3% -1.1% 2977 ± 3% -2.9% 2922 ± 4%
interrupts.CPU17.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU170.110:PCI-MSI.23593027-edge.nvme0q67
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU170.124:PCI-MSI.23593027-edge.nvme0q67
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU170.127:PCI-MSI.23593027-edge.nvme0q67
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU170.129:PCI-MSI.23593027-edge.nvme0q67
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU170.130:PCI-MSI.23593027-edge.nvme0q67
4468 ± 16% +1.2% 4522 ± 28% +11.5% 4981 ± 22%
interrupts.CPU170.CAL:Function_call_interrupts
2.00 -16.7% 1.67 ± 28% -6.2% 1.88 ± 17%
interrupts.CPU170.IWI:IRQ_work_interrupts
561724 ± 17% +7.8% 605630 +7.8% 605747
interrupts.CPU170.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU170.MCP:Machine_check_polls
8005 -16.7% 6666 ± 28% -6.1% 7516 ± 17%
interrupts.CPU170.NMI:Non-maskable_interrupts
8005 -16.7% 6666 ± 28% -6.1% 7516 ± 17%
interrupts.CPU170.PMI:Performance_monitoring_interrupts
379.00 ± 20% -12.4% 332.17 ± 11% +2.6% 388.88 ± 27%
interrupts.CPU170.RES:Rescheduling_interrupts
3049 ± 3% +3.0% 3140 ± 2% +0.9% 3077 ± 3%
interrupts.CPU170.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU171.118:PCI-MSI.23593028-edge.nvme0q68
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU171.128:PCI-MSI.23593028-edge.nvme0q68
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU171.131:PCI-MSI.23593028-edge.nvme0q68
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU171.132:PCI-MSI.23593028-edge.nvme0q68
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU171.147:PCI-MSI.23593028-edge.nvme0q68
5173 ± 50% -13.2% 4487 ± 19% -24.1% 3924 ± 4%
interrupts.CPU171.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +2.3% 1.88 ± 17%
interrupts.CPU171.IWI:IRQ_work_interrupts
561588 ± 17% +7.8% 605552 +7.9% 605748
interrupts.CPU171.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU171.MCP:Machine_check_polls
7338 ± 20% +9.0% 8000 +2.4% 7517 ± 17%
interrupts.CPU171.NMI:Non-maskable_interrupts
7338 ± 20% +9.0% 8000 +2.4% 7517 ± 17%
interrupts.CPU171.PMI:Performance_monitoring_interrupts
537.17 ± 70% -13.9% 462.33 ± 43% +14.1% 613.12 ±116%
interrupts.CPU171.RES:Rescheduling_interrupts
3092 ± 3% -1.1% 3057 ± 2% -0.5% 3077 ± 3%
interrupts.CPU171.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU172.113:PCI-MSI.23593029-edge.nvme0q69
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU172.114:PCI-MSI.23593029-edge.nvme0q69
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU172.129:PCI-MSI.23593029-edge.nvme0q69
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU172.131:PCI-MSI.23593029-edge.nvme0q69
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU172.132:PCI-MSI.23593029-edge.nvme0q69
3786 ± 2% +1.3% 3835 +0.5% 3805
interrupts.CPU172.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +2.3% 1.88 ± 17%
interrupts.CPU172.IWI:IRQ_work_interrupts
561068 ± 17% +7.9% 605563 +8.0% 605743
interrupts.CPU172.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU172.MCP:Machine_check_polls
7338 ± 20% +9.0% 8000 +2.4% 7517 ± 17%
interrupts.CPU172.NMI:Non-maskable_interrupts
7338 ± 20% +9.0% 8000 +2.4% 7517 ± 17%
interrupts.CPU172.PMI:Performance_monitoring_interrupts
308.33 +49.6% 461.17 ± 74% +4.9% 323.38 ± 12%
interrupts.CPU172.RES:Rescheduling_interrupts
3095 ± 3% +1.7% 3146 ± 3% -0.6% 3075 ± 3%
interrupts.CPU172.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU173.114:PCI-MSI.23593030-edge.nvme0q70
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU173.120:PCI-MSI.23593030-edge.nvme0q70
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU173.122:PCI-MSI.23593030-edge.nvme0q70
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU173.132:PCI-MSI.23593030-edge.nvme0q70
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU173.133:PCI-MSI.23593030-edge.nvme0q70
3769 +32.2% 4981 ± 54% +1.9% 3842 ± 2%
interrupts.CPU173.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +2.3% 1.88 ± 17%
interrupts.CPU173.IWI:IRQ_work_interrupts
561411 ± 17% +7.9% 605584 +7.9% 605745
interrupts.CPU173.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU173.MCP:Machine_check_polls
7337 ± 20% +9.0% 8000 +2.4% 7517 ± 17%
interrupts.CPU173.NMI:Non-maskable_interrupts
7337 ± 20% +9.0% 8000 +2.4% 7517 ± 17%
interrupts.CPU173.PMI:Performance_monitoring_interrupts
307.00 +62.4% 498.67 ± 84% +0.8% 309.50 ± 3%
interrupts.CPU173.RES:Rescheduling_interrupts
3073 ± 2% -1.3% 3034 ± 2% +0.8% 3096 ± 2%
interrupts.CPU173.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU174.114:PCI-MSI.23593031-edge.nvme0q71
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU174.121:PCI-MSI.23593031-edge.nvme0q71
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU174.133:PCI-MSI.23593031-edge.nvme0q71
3844 ± 3% +31.3% 5046 ± 59% +17.5% 4518 ± 33%
interrupts.CPU174.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +2.3% 1.88 ± 17%
interrupts.CPU174.IWI:IRQ_work_interrupts
560941 ± 17% +8.0% 605624 +8.0% 605741
interrupts.CPU174.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU174.MCP:Machine_check_polls
7336 ± 20% +9.0% 7998 +2.4% 7515 ± 17%
interrupts.CPU174.NMI:Non-maskable_interrupts
7336 ± 20% +9.0% 7998 +2.4% 7515 ± 17%
interrupts.CPU174.PMI:Performance_monitoring_interrupts
317.83 ± 5% +57.2% 499.67 ± 82% +44.5% 459.12 ± 58%
interrupts.CPU174.RES:Rescheduling_interrupts
3100 ± 3% -0.4% 3089 ± 4% +0.2% 3107 ± 2%
interrupts.CPU174.TLB:TLB_shootdowns
3827 -2.1% 3745 -0.8% 3797
interrupts.CPU175.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +2.3% 1.88 ± 17%
interrupts.CPU175.IWI:IRQ_work_interrupts
561479 ± 17% +7.9% 605558 +7.9% 605753
interrupts.CPU175.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU175.MCP:Machine_check_polls
7337 ± 20% +9.0% 8000 +2.4% 7516 ± 17%
interrupts.CPU175.NMI:Non-maskable_interrupts
7337 ± 20% +9.0% 8000 +2.4% 7516 ± 17%
interrupts.CPU175.PMI:Performance_monitoring_interrupts
461.50 ± 74% -18.7% 375.17 ± 40% -33.7% 306.00
interrupts.CPU175.RES:Rescheduling_interrupts
3133 ± 2% -4.7% 2986 -1.4% 3089 ± 3%
interrupts.CPU175.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU176.133:PCI-MSI.23593033-edge.nvme0q73
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU176.152:PCI-MSI.23593033-edge.nvme0q73
3794 +0.6% 3815 ± 2% +0.0% 3795
interrupts.CPU176.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +2.3% 1.88 ± 17%
interrupts.CPU176.IWI:IRQ_work_interrupts
561812 ± 17% +7.8% 605530 +7.8% 605727
interrupts.CPU176.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU176.MCP:Machine_check_polls
7337 ± 20% +9.0% 7998 +2.4% 7514 ± 17%
interrupts.CPU176.NMI:Non-maskable_interrupts
7337 ± 20% +9.0% 7998 +2.4% 7514 ± 17%
interrupts.CPU176.PMI:Performance_monitoring_interrupts
307.00 +4.2% 319.83 ± 7% +0.1% 307.25
interrupts.CPU176.RES:Rescheduling_interrupts
3071 ± 3% +1.7% 3123 ± 3% +0.4% 3082 ± 3%
interrupts.CPU176.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU177.137:PCI-MSI.23593034-edge.nvme0q74
3801 -0.6% 3777 ± 2% -0.8% 3773 ± 2%
interrupts.CPU177.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +2.3% 1.88 ± 17%
interrupts.CPU177.IWI:IRQ_work_interrupts
561898 ± 17% +7.8% 605626 +7.8% 605727
interrupts.CPU177.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU177.MCP:Machine_check_polls
7336 ± 20% +9.0% 7999 +2.4% 7515 ± 17%
interrupts.CPU177.NMI:Non-maskable_interrupts
7336 ± 20% +9.0% 7999 +2.4% 7515 ± 17%
interrupts.CPU177.PMI:Performance_monitoring_interrupts
306.33 +1.0% 309.50 +0.2% 307.00
interrupts.CPU177.RES:Rescheduling_interrupts
3098 ± 3% -1.3% 3058 ± 3% -0.1% 3096 ± 3%
interrupts.CPU177.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU178.125:PCI-MSI.23593035-edge.nvme0q75
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU178.127:PCI-MSI.23593035-edge.nvme0q75
3809 +0.4% 3825 -0.0% 3808
interrupts.CPU178.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +2.3% 1.88 ± 17%
interrupts.CPU178.IWI:IRQ_work_interrupts
561588 ± 17% +7.8% 605543 +7.9% 605737
interrupts.CPU178.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU178.MCP:Machine_check_polls
7336 ± 20% -0.1% 7332 ± 20% +2.4% 7516 ± 17%
interrupts.CPU178.NMI:Non-maskable_interrupts
7336 ± 20% -0.1% 7332 ± 20% +2.4% 7516 ± 17%
interrupts.CPU178.PMI:Performance_monitoring_interrupts
306.83 +50.5% 461.83 ± 74% -0.2% 306.25
interrupts.CPU178.RES:Rescheduling_interrupts
3098 ± 3% +2.2% 3166 ± 2% -0.4% 3086 ± 3%
interrupts.CPU178.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU179.128:PCI-MSI.23593036-edge.nvme0q76
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU179.136:PCI-MSI.23593036-edge.nvme0q76
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU179.138:PCI-MSI.23593036-edge.nvme0q76
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU179.140:PCI-MSI.23593036-edge.nvme0q76
3806 -3.2% 3683 ± 4% -0.3% 3795
interrupts.CPU179.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +2.3% 1.88 ± 17%
interrupts.CPU179.IWI:IRQ_work_interrupts
561122 ± 17% +7.9% 605539 +8.0% 605732
interrupts.CPU179.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU179.MCP:Machine_check_polls
7336 ± 20% -0.1% 7332 ± 20% +2.4% 7515 ± 17%
interrupts.CPU179.NMI:Non-maskable_interrupts
7336 ± 20% -0.1% 7332 ± 20% +2.4% 7515 ± 17%
interrupts.CPU179.PMI:Performance_monitoring_interrupts
307.50 +0.4% 308.67 -0.5% 305.88
interrupts.CPU179.RES:Rescheduling_interrupts
3105 ± 3% -2.0% 3043 ± 2% -0.2% 3099 ± 3%
interrupts.CPU179.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU18.163:PCI-MSI.23593075-edge.nvme0q115
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU18.165:PCI-MSI.23593075-edge.nvme0q115
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU18.175:PCI-MSI.23593075-edge.nvme0q115
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU18.40:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU18.41:PCI-MSI.69632-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU18.41:PCI-MSI.71680-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU18.43:PCI-MSI.69632-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU18.43:PCI-MSI.71680-edge.ioat-msix
3702 -0.3% 3693 +0.3% 3713
interrupts.CPU18.CAL:Function_call_interrupts
2.00 +0.0% 2.00 +0.0% 2.00 ± 25%
interrupts.CPU18.IWI:IRQ_work_interrupts
563980 ± 16% +7.4% 605493 +7.4% 605846
interrupts.CPU18.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU18.MCP:Machine_check_polls
8192 -0.1% 8187 -6.0% 7697 ± 17%
interrupts.CPU18.NMI:Non-maskable_interrupts
8192 -0.1% 8187 -6.0% 7697 ± 17%
interrupts.CPU18.PMI:Performance_monitoring_interrupts
312.33 +4.1% 325.00 ± 10% -0.3% 311.38
interrupts.CPU18.RES:Rescheduling_interrupts
2845 ± 3% -0.3% 2836 ± 2% +2.6% 2918 ± 4%
interrupts.CPU18.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU180.121:PCI-MSI.23593037-edge.nvme0q77
3891 ± 4% -1.3% 3841 ± 2% -2.4% 3797 ± 2%
interrupts.CPU180.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +2.3% 1.88 ± 17%
interrupts.CPU180.IWI:IRQ_work_interrupts
561265 ± 17% +7.9% 605545 +7.9% 605758
interrupts.CPU180.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU180.MCP:Machine_check_polls
7336 ± 20% -0.1% 7332 ± 20% +2.4% 7515 ± 17%
interrupts.CPU180.NMI:Non-maskable_interrupts
7336 ± 20% -0.1% 7332 ± 20% +2.4% 7515 ± 17%
interrupts.CPU180.PMI:Performance_monitoring_interrupts
351.17 ± 24% -6.6% 328.00 ± 13% -12.8% 306.12
interrupts.CPU180.RES:Rescheduling_interrupts
3099 ± 3% +2.0% 3160 ± 3% +0.5% 3114 ± 3%
interrupts.CPU180.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU181.122:PCI-MSI.23593038-edge.nvme0q78
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU181.126:PCI-MSI.23593038-edge.nvme0q78
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU181.141:PCI-MSI.23593038-edge.nvme0q78
3799 -1.1% 3757 -0.3% 3787
interrupts.CPU181.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +9.1% 2.00
interrupts.CPU181.IWI:IRQ_work_interrupts
561869 ± 17% +7.8% 605557 +7.8% 605756
interrupts.CPU181.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU181.MCP:Machine_check_polls
7336 ± 20% -0.1% 7332 ± 20% +9.3% 8015
interrupts.CPU181.NMI:Non-maskable_interrupts
7336 ± 20% -0.1% 7332 ± 20% +9.3% 8015
interrupts.CPU181.PMI:Performance_monitoring_interrupts
306.67 +0.3% 307.67 -0.1% 306.38
interrupts.CPU181.RES:Rescheduling_interrupts
3103 ± 3% -2.8% 3017 ± 2% -1.1% 3071 ± 3%
interrupts.CPU181.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU182.127:PCI-MSI.23593039-edge.nvme0q79
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU182.142:PCI-MSI.23593039-edge.nvme0q79
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU182.158:PCI-MSI.23593039-edge.nvme0q79
3809 +8.7% 4142 ± 18% -0.5% 3792
interrupts.CPU182.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +9.1% 2.00
interrupts.CPU182.IWI:IRQ_work_interrupts
561867 ± 17% +7.8% 605571 +7.8% 605749
interrupts.CPU182.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU182.MCP:Machine_check_polls
7336 ± 20% -0.0% 7333 ± 20% +9.3% 8016
interrupts.CPU182.NMI:Non-maskable_interrupts
7336 ± 20% -0.0% 7333 ± 20% +9.3% 8016
interrupts.CPU182.PMI:Performance_monitoring_interrupts
306.33 +17.5% 360.00 ± 31% +0.1% 306.50
interrupts.CPU182.RES:Rescheduling_interrupts
3131 ± 3% -0.1% 3129 ± 4% -1.1% 3098 ± 3%
interrupts.CPU182.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU183.128:PCI-MSI.23593040-edge.nvme0q80
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU183.143:PCI-MSI.23593040-edge.nvme0q80
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU183.144:PCI-MSI.23593040-edge.nvme0q80
3838 -1.3% 3788 -1.5% 3782 ± 2%
interrupts.CPU183.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +9.1% 2.00
interrupts.CPU183.IWI:IRQ_work_interrupts
561649 ± 17% +7.8% 605527 +7.8% 605731
interrupts.CPU183.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU183.MCP:Machine_check_polls
7335 ± 20% -0.0% 7332 ± 20% +9.3% 8015
interrupts.CPU183.NMI:Non-maskable_interrupts
7335 ± 20% -0.0% 7332 ± 20% +9.3% 8015
interrupts.CPU183.PMI:Performance_monitoring_interrupts
306.83 +0.3% 307.83 -0.2% 306.12
interrupts.CPU183.RES:Rescheduling_interrupts
3160 ± 2% -3.0% 3065 ± 2% -2.3% 3086 ± 3%
interrupts.CPU183.TLB:TLB_shootdowns
3803 +2.5% 3898 ± 5% -0.0% 3801
interrupts.CPU184.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +9.1% 2.00
interrupts.CPU184.IWI:IRQ_work_interrupts
561256 ± 17% +7.9% 605533 +7.9% 605751
interrupts.CPU184.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU184.MCP:Machine_check_polls
7336 ± 20% +9.1% 8000 +9.3% 8015
interrupts.CPU184.NMI:Non-maskable_interrupts
7336 ± 20% +9.1% 8000 +9.3% 8015
interrupts.CPU184.PMI:Performance_monitoring_interrupts
307.33 +9.8% 337.50 ± 20% -0.2% 306.62
interrupts.CPU184.RES:Rescheduling_interrupts
3102 ± 3% +2.0% 3163 ± 3% +0.4% 3115 ± 3%
interrupts.CPU184.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU185.134:PCI-MSI.23593050-edge.nvme0q90
4778 ± 44% -21.4% 3758 -20.5% 3799
interrupts.CPU185.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +9.1% 2.00
interrupts.CPU185.IWI:IRQ_work_interrupts
561400 ± 17% +7.9% 605525 +7.9% 605734
interrupts.CPU185.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU185.MCP:Machine_check_polls
7335 ± 20% -0.1% 7331 ± 20% +9.3% 8015
interrupts.CPU185.NMI:Non-maskable_interrupts
7335 ± 20% -0.1% 7331 ± 20% +9.3% 8015
interrupts.CPU185.PMI:Performance_monitoring_interrupts
454.33 ± 73% -19.6% 365.17 ± 30% -32.7% 305.62
interrupts.CPU185.RES:Rescheduling_interrupts
3106 ± 3% -3.1% 3010 ± 2% -0.4% 3094 ± 3%
interrupts.CPU185.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU186.141:PCI-MSI.23593051-edge.nvme0q91
3813 +1.4% 3866 ± 4% -0.3% 3801
interrupts.CPU186.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +9.1% 2.00
interrupts.CPU186.IWI:IRQ_work_interrupts
561455 ± 17% +7.8% 605502 +7.9% 605741
interrupts.CPU186.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU186.MCP:Machine_check_polls
7334 ± 20% -0.1% 7331 ± 20% +9.3% 8014
interrupts.CPU186.NMI:Non-maskable_interrupts
7334 ± 20% -0.1% 7331 ± 20% +9.3% 8014
interrupts.CPU186.PMI:Performance_monitoring_interrupts
306.33 +4.5% 320.00 ± 5% +0.2% 306.88
interrupts.CPU186.RES:Rescheduling_interrupts
3100 ± 3% +0.8% 3123 ± 3% -0.1% 3096 ± 3%
interrupts.CPU186.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU187.155:PCI-MSI.23593052-edge.nvme0q92
3811 +0.0% 3811 ± 5% -0.3% 3801
interrupts.CPU187.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +2.3% 1.88 ± 17%
interrupts.CPU187.IWI:IRQ_work_interrupts
561631 ± 17% +7.8% 605537 +7.9% 605737
interrupts.CPU187.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU187.MCP:Machine_check_polls
7334 ± 20% -0.0% 7332 ± 20% +2.5% 7515 ± 17%
interrupts.CPU187.NMI:Non-maskable_interrupts
7334 ± 20% -0.0% 7332 ± 20% +2.5% 7515 ± 17%
interrupts.CPU187.PMI:Performance_monitoring_interrupts
306.17 +11.2% 340.50 ± 20% -0.2% 305.50
interrupts.CPU187.RES:Rescheduling_interrupts
3121 ± 2% -2.5% 3042 ± 2% -0.5% 3106 ± 3%
interrupts.CPU187.TLB:TLB_shootdowns
3808 +0.4% 3822 ± 2% -0.1% 3802
interrupts.CPU188.CAL:Function_call_interrupts
2.00 -8.3% 1.83 ± 20% -6.2% 1.88 ± 17%
interrupts.CPU188.IWI:IRQ_work_interrupts
561439 ± 17% +7.9% 605565 +7.9% 605734
interrupts.CPU188.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU188.MCP:Machine_check_polls
8002 -8.4% 7332 ± 20% -6.1% 7515 ± 17%
interrupts.CPU188.NMI:Non-maskable_interrupts
8002 -8.4% 7332 ± 20% -6.1% 7515 ± 17%
interrupts.CPU188.PMI:Performance_monitoring_interrupts
306.83 +0.7% 308.83 -0.3% 305.88
interrupts.CPU188.RES:Rescheduling_interrupts
3097 ± 3% +2.1% 3160 ± 3% +0.7% 3119 ± 3%
interrupts.CPU188.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU189.137:PCI-MSI.23593054-edge.nvme0q94
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU189.157:PCI-MSI.23593054-edge.nvme0q94
3831 +3.0% 3945 ± 8% -1.4% 3777 ± 2%
interrupts.CPU189.CAL:Function_call_interrupts
2.00 +0.0% 2.00 -6.2% 1.88 ± 17%
interrupts.CPU189.IWI:IRQ_work_interrupts
561551 ± 17% +7.8% 605555 +7.9% 605699
interrupts.CPU189.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU189.MCP:Machine_check_polls
8002 -0.0% 8000 -6.1% 7514 ± 17%
interrupts.CPU189.NMI:Non-maskable_interrupts
8002 -0.0% 8000 -6.1% 7514 ± 17%
interrupts.CPU189.PMI:Performance_monitoring_interrupts
308.83 +18.3% 365.50 ± 22% +37.3% 424.12 ± 69%
interrupts.CPU189.RES:Rescheduling_interrupts
3140 ± 3% -1.3% 3100 ± 2% -1.6% 3088 ± 3%
interrupts.CPU189.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU19.125:PCI-MSI.73728-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU19.160:PCI-MSI.23593076-edge.nvme0q116
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU19.41:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU19.42:PCI-MSI.73728-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU19.43:PCI-MSI.71680-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU19.44:PCI-MSI.71680-edge.ioat-msix
3762 -0.5% 3741 -1.1% 3720
interrupts.CPU19.CAL:Function_call_interrupts
2.00 +0.0% 2.00 +6.2% 2.12 ± 15%
interrupts.CPU19.IWI:IRQ_work_interrupts
564098 ± 16% +7.3% 605492 +7.4% 605847
interrupts.CPU19.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU19.MCP:Machine_check_polls
8193 -0.1% 8188 +0.2% 8211
interrupts.CPU19.NMI:Non-maskable_interrupts
8193 -0.1% 8188 +0.2% 8211
interrupts.CPU19.PMI:Performance_monitoring_interrupts
312.83 -0.6% 310.83 -0.6% 310.88
interrupts.CPU19.RES:Rescheduling_interrupts
3016 ± 3% -1.4% 2974 ± 4% -3.1% 2922 ± 4%
interrupts.CPU19.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU190.139:PCI-MSI.23593055-edge.nvme0q95
3806 +0.8% 3836 +1.9% 3880 ± 6%
interrupts.CPU190.CAL:Function_call_interrupts
2.00 -16.7% 1.67 ± 28% -6.2% 1.88 ± 17%
interrupts.CPU190.IWI:IRQ_work_interrupts
561315 ± 17% +7.9% 605525 +7.9% 605731
interrupts.CPU190.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU190.MCP:Machine_check_polls
8001 -16.7% 6666 ± 28% -6.1% 7514 ± 17%
interrupts.CPU190.NMI:Non-maskable_interrupts
8001 -16.7% 6666 ± 28% -6.1% 7514 ± 17%
interrupts.CPU190.PMI:Performance_monitoring_interrupts
307.00 +0.4% 308.17 +8.6% 333.38 ± 21%
interrupts.CPU190.RES:Rescheduling_interrupts
3103 ± 3% +1.9% 3162 ± 3% -0.3% 3094 ± 3%
interrupts.CPU190.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU191.139:PCI-MSI.23593056-edge.nvme0q96
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU191.159:PCI-MSI.23593056-edge.nvme0q96
3805 ± 5% +10.1% 4187 ± 22% +2.5% 3901 ± 2%
interrupts.CPU191.CAL:Function_call_interrupts
3.17 ± 11% -15.8% 2.67 ± 35% +14.5% 3.62 ± 38%
interrupts.CPU191.IWI:IRQ_work_interrupts
561118 ± 17% +7.9% 605637 +8.0% 605795
interrupts.CPU191.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU191.MCP:Machine_check_polls
8015 -16.8% 6671 ± 28% -6.1% 7530 ± 17%
interrupts.CPU191.NMI:Non-maskable_interrupts
8015 -16.8% 6671 ± 28% -6.1% 7530 ± 17%
interrupts.CPU191.PMI:Performance_monitoring_interrupts
339.50 +17.1% 397.67 ± 26% +2.4% 347.75 ± 8%
interrupts.CPU191.RES:Rescheduling_interrupts
3094 ± 3% -2.9% 3004 ± 3% +0.4% 3107 ± 2%
interrupts.CPU191.TLB:TLB_shootdowns
4355 ± 7% -12.5% 3810 +6.5% 4639 ± 15%
interrupts.CPU2.CAL:Function_call_interrupts
2.00 +0.0% 2.00 ± 28% -12.5% 1.75 ± 37%
interrupts.CPU2.IWI:IRQ_work_interrupts
564424 ± 16% +7.3% 605568 +7.4% 605916
interrupts.CPU2.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU2.MCP:Machine_check_polls
8193 -8.4% 7504 ± 20% -18.6% 6673 ± 29%
interrupts.CPU2.NMI:Non-maskable_interrupts
8193 -8.4% 7504 ± 20% -18.6% 6673 ± 29%
interrupts.CPU2.PMI:Performance_monitoring_interrupts
459.33 ± 15% -11.4% 406.83 ± 20% -2.6% 447.25 ± 17%
interrupts.CPU2.RES:Rescheduling_interrupts
2891 ± 4% -2.0% 2832 ± 3% +0.6% 2908 ± 4%
interrupts.CPU2.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU20.167:PCI-MSI.23593077-edge.nvme0q117
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU20.172:PCI-MSI.71680-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU20.41:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU20.43:PCI-MSI.75776-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU20.44:PCI-MSI.73728-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU20.45:PCI-MSI.73728-edge.ioat-msix
3669 +0.5% 3688 +1.4% 3720
interrupts.CPU20.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +15.9% 2.12 ± 15%
interrupts.CPU20.IWI:IRQ_work_interrupts
563975 ± 16% +7.4% 605492 +7.4% 605850
interrupts.CPU20.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU20.MCP:Machine_check_polls
7511 ± 20% +9.0% 8188 +9.3% 8209
interrupts.CPU20.NMI:Non-maskable_interrupts
7511 ± 20% +9.0% 8188 +9.3% 8209
interrupts.CPU20.PMI:Performance_monitoring_interrupts
310.83 +1.1% 314.17 ± 3% -0.0% 310.75
interrupts.CPU20.RES:Rescheduling_interrupts
2852 ± 3% -0.6% 2834 ± 2% +2.6% 2925 ± 4%
interrupts.CPU20.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU21.173:PCI-MSI.73728-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU21.173:PCI-MSI.75776-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU21.43:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU21.44:PCI-MSI.77824-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU21.46:PCI-MSI.77824-edge.ioat-msix
3746 +0.6% 3767 -0.5% 3725 ± 2%
interrupts.CPU21.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +9.1% 2.00
interrupts.CPU21.IWI:IRQ_work_interrupts
563817 ± 16% +7.4% 605491 +7.5% 605834
interrupts.CPU21.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU21.MCP:Machine_check_polls
7511 ± 20% +9.0% 8189 +9.3% 8209
interrupts.CPU21.NMI:Non-maskable_interrupts
7511 ± 20% +9.0% 8189 +9.3% 8209
interrupts.CPU21.PMI:Performance_monitoring_interrupts
310.50 -0.2% 309.83 +39.2% 432.25 ± 75%
interrupts.CPU21.RES:Rescheduling_interrupts
3014 ± 3% +1.6% 3063 -3.0% 2924 ± 5%
interrupts.CPU21.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU22.169:PCI-MSI.23593079-edge.nvme0q119
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU22.174:PCI-MSI.75776-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU22.174:PCI-MSI.77824-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU22.45:PCI-MSI.77824-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU22.45:PCI-MSI.79872-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU22.47:PCI-MSI.79872-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU22.50:PCI-MSI.23592960-edge.nvme0q0
3701 -0.4% 3685 +0.9% 3736
interrupts.CPU22.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +15.9% 2.12 ± 15%
interrupts.CPU22.IWI:IRQ_work_interrupts
563733 ± 16% +7.4% 605522 +7.5% 605877
interrupts.CPU22.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU22.MCP:Machine_check_polls
7511 ± 20% +9.0% 8189 +9.3% 8210
interrupts.CPU22.NMI:Non-maskable_interrupts
7511 ± 20% +9.0% 8189 +9.3% 8210
interrupts.CPU22.PMI:Performance_monitoring_interrupts
311.00 -0.3% 310.00 +0.0% 311.12
interrupts.CPU22.RES:Rescheduling_interrupts
2856 ± 3% -0.1% 2854 ± 3% +2.5% 2928 ± 4%
interrupts.CPU22.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU23.175:PCI-MSI.75776-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU23.175:PCI-MSI.77824-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU23.182:PCI-MSI.23593080-edge.nvme0q120
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU23.48:PCI-MSI.79872-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU23.56:PCI-MSI.23592960-edge.nvme0q0
3739 +0.1% 3742 ± 2% +17.7% 4399 ± 39%
interrupts.CPU23.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +9.1% 2.00
interrupts.CPU23.IWI:IRQ_work_interrupts
563735 ± 16% +7.4% 605498 +7.5% 605935
interrupts.CPU23.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU23.MCP:Machine_check_polls
7512 ± 20% +9.0% 8189 +9.3% 8210
interrupts.CPU23.NMI:Non-maskable_interrupts
7512 ± 20% +9.0% 8189 +9.3% 8210
interrupts.CPU23.PMI:Performance_monitoring_interrupts
310.00 -0.2% 309.33 +35.0% 418.62 ± 67%
interrupts.CPU23.RES:Rescheduling_interrupts
2979 ± 3% +1.4% 3022 ± 4% -0.6% 2962 ± 4%
interrupts.CPU23.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU24.178:PCI-MSI.33619968-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU24.179:PCI-MSI.33619968-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU24.45:PCI-MSI.33619968-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU24.47:PCI-MSI.33619968-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU24.49:PCI-MSI.33619968-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU24.50:PCI-MSI.33619968-edge.ioat-msix
3837 ± 8% +8.8% 4176 ± 13% +8.2% 4152 ± 14%
interrupts.CPU24.CAL:Function_call_interrupts
1.67 ± 28% +20.0% 2.00 +20.0% 2.00
interrupts.CPU24.IWI:IRQ_work_interrupts
564526 ± 16% +7.3% 605473 +7.3% 605761
interrupts.CPU24.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU24.MCP:Machine_check_polls
6804 ± 28% +20.0% 8167 +20.4% 8190
interrupts.CPU24.NMI:Non-maskable_interrupts
6804 ± 28% +20.0% 8167 +20.4% 8190
interrupts.CPU24.PMI:Performance_monitoring_interrupts
367.67 ± 15% -4.7% 350.50 ± 14% +4.3% 383.62 ± 12%
interrupts.CPU24.RES:Rescheduling_interrupts
2770 ± 3% +6.3% 2945 ± 7% +7.8% 2985 ± 4%
interrupts.CPU24.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU25.180:PCI-MSI.33622016-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU25.181:PCI-MSI.33622016-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU25.48:PCI-MSI.33622016-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU25.49:PCI-MSI.33622016-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU25.50:PCI-MSI.33622016-edge.ioat-msix
5639 ± 24% -10.5% 5049 ± 24% -5.8% 5310 ± 18%
interrupts.CPU25.CAL:Function_call_interrupts
1.83 ± 20% +27.3% 2.33 ± 20% +22.7% 2.25 ± 19%
interrupts.CPU25.IWI:IRQ_work_interrupts
565618 ± 15% +7.1% 605555 +7.1% 605774
interrupts.CPU25.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU25.MCP:Machine_check_polls
7486 ± 20% +9.1% 8169 +9.4% 8190
interrupts.CPU25.NMI:Non-maskable_interrupts
7486 ± 20% +9.1% 8169 +9.4% 8190
interrupts.CPU25.PMI:Performance_monitoring_interrupts
495.83 ± 18% -29.5% 349.50 ± 6% -15.5% 418.75 ± 18%
interrupts.CPU25.RES:Rescheduling_interrupts
2983 ± 3% +1.3% 3022 ± 3% -2.0% 2925 ± 5%
interrupts.CPU25.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU26.181:PCI-MSI.33624064-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU26.182:PCI-MSI.33624064-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU26.50:PCI-MSI.33624064-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU26.51:PCI-MSI.33624064-edge.ioat-msix
4631 ± 21% +16.1% 5375 ± 19% -1.2% 4575 ± 22%
interrupts.CPU26.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +15.9% 2.12 ± 15%
interrupts.CPU26.IWI:IRQ_work_interrupts
566110 ± 15% +7.0% 605580 +7.0% 605797
interrupts.CPU26.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU26.MCP:Machine_check_polls
7487 ± 20% +9.1% 8169 +9.4% 8191
interrupts.CPU26.NMI:Non-maskable_interrupts
7487 ± 20% +9.1% 8169 +9.4% 8191
interrupts.CPU26.PMI:Performance_monitoring_interrupts
378.33 ± 24% +24.7% 471.67 ± 25% +2.2% 386.62 ± 33%
interrupts.CPU26.RES:Rescheduling_interrupts
2910 ± 4% -0.1% 2908 ± 3% +1.2% 2944 ± 4%
interrupts.CPU26.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU27.182:PCI-MSI.33626112-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU27.183:PCI-MSI.33626112-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU27.51:PCI-MSI.33626112-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU27.52:PCI-MSI.33626112-edge.ioat-msix
4062 ± 17% +22.8% 4990 ± 50% +1.3% 4115 ± 14%
interrupts.CPU27.CAL:Function_call_interrupts
1.67 ± 28% +20.0% 2.00 +27.5% 2.12 ± 15%
interrupts.CPU27.IWI:IRQ_work_interrupts
565827 ± 15% +7.0% 605396 +7.1% 605741
interrupts.CPU27.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU27.MCP:Machine_check_polls
6808 ± 28% +20.0% 8169 +20.3% 8189
interrupts.CPU27.NMI:Non-maskable_interrupts
6808 ± 28% +20.0% 8169 +20.3% 8189
interrupts.CPU27.PMI:Performance_monitoring_interrupts
360.33 ± 32% +44.5% 520.67 ± 57% +11.5% 401.62 ± 26%
interrupts.CPU27.RES:Rescheduling_interrupts
2984 ± 3% -0.2% 2977 ± 4% -0.3% 2973 ± 4%
interrupts.CPU27.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU28.183:PCI-MSI.33628160-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU28.184:PCI-MSI.33628160-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU28.52:PCI-MSI.33628160-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU28.53:PCI-MSI.33628160-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU28.54:PCI-MSI.33628160-edge.ioat-msix
3724 ± 2% +3.7% 3862 ± 8% +0.1% 3728
interrupts.CPU28.CAL:Function_call_interrupts
1.67 ± 28% +20.0% 2.00 +20.0% 2.00
interrupts.CPU28.IWI:IRQ_work_interrupts
565401 ± 15% +7.1% 605510 +7.1% 605742
interrupts.CPU28.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU28.MCP:Machine_check_polls
6808 ± 28% +20.0% 8170 +20.3% 8191
interrupts.CPU28.NMI:Non-maskable_interrupts
6808 ± 28% +20.0% 8170 +20.3% 8191
interrupts.CPU28.PMI:Performance_monitoring_interrupts
308.50 +9.6% 338.17 ± 19% -0.2% 307.88
interrupts.CPU28.RES:Rescheduling_interrupts
2911 ± 4% -1.2% 2875 ± 3% +1.0% 2940 ± 4%
interrupts.CPU28.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU29.184:PCI-MSI.33630208-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU29.185:PCI-MSI.33630208-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU29.53:PCI-MSI.33630208-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU29.54:PCI-MSI.33630208-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU29.56:PCI-MSI.33630208-edge.ioat-msix
3992 ± 13% -6.8% 3721 -6.3% 3742
interrupts.CPU29.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +9.1% 2.00
interrupts.CPU29.IWI:IRQ_work_interrupts
565630 ± 15% +7.0% 605501 +7.1% 605773
interrupts.CPU29.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU29.MCP:Machine_check_polls
7492 ± 20% +9.0% 8169 +9.3% 8190
interrupts.CPU29.NMI:Non-maskable_interrupts
7492 ± 20% +9.0% 8169 +9.3% 8190
interrupts.CPU29.PMI:Performance_monitoring_interrupts
395.00 ± 48% -21.9% 308.33 -21.9% 308.38
interrupts.CPU29.RES:Rescheduling_interrupts
3002 ± 3% -0.1% 2998 ± 4% -1.6% 2954 ± 4%
interrupts.CPU29.TLB:TLB_shootdowns
4164 ± 16% -2.8% 4047 ± 19% -9.8% 3758 ± 2%
interrupts.CPU3.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 ± 28% +2.3% 1.88 ± 31%
interrupts.CPU3.IWI:IRQ_work_interrupts
563688 ± 16% +7.4% 605511 +7.5% 605880
interrupts.CPU3.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU3.MCP:Machine_check_polls
7509 ± 20% -0.1% 7505 ± 20% -4.3% 7186 ± 24%
interrupts.CPU3.NMI:Non-maskable_interrupts
7509 ± 20% -0.1% 7505 ± 20% -4.3% 7186 ± 24%
interrupts.CPU3.PMI:Performance_monitoring_interrupts
389.00 ± 26% -2.1% 380.67 ± 34% -12.0% 342.38 ± 8%
interrupts.CPU3.RES:Rescheduling_interrupts
2920 ± 4% -1.4% 2878 ± 4% -1.5% 2875 ± 4%
interrupts.CPU3.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU30.185:PCI-MSI.33632256-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU30.186:PCI-MSI.33632256-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU30.54:PCI-MSI.33632256-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU30.55:PCI-MSI.33632256-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU30.56:PCI-MSI.33632256-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU30.57:PCI-MSI.33632256-edge.ioat-msix
3714 ± 2% +0.7% 3740 ± 2% +0.7% 3738
interrupts.CPU30.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 +15.9% 2.12 ± 15%
interrupts.CPU30.IWI:IRQ_work_interrupts
565440 ± 15% +7.1% 605499 +7.1% 605780
interrupts.CPU30.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU30.MCP:Machine_check_polls
7491 ± 20% +9.1% 8170 +9.3% 8189
interrupts.CPU30.NMI:Non-maskable_interrupts
7491 ± 20% +9.1% 8170 +9.3% 8189
interrupts.CPU30.PMI:Performance_monitoring_interrupts
310.17 -0.8% 307.83 +1.3% 314.12 ± 4%
interrupts.CPU30.RES:Rescheduling_interrupts
2923 ± 4% -1.6% 2877 ± 3% +1.0% 2952 ± 4%
interrupts.CPU30.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU31.186:PCI-MSI.33634304-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU31.187:PCI-MSI.33634304-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU31.55:PCI-MSI.33634304-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU31.56:PCI-MSI.33634304-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU31.57:PCI-MSI.33634304-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU31.58:PCI-MSI.33634304-edge.ioat-msix
3786 ± 2% +0.5% 3805 -2.7% 3685 ± 4%
interrupts.CPU31.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +9.1% 2.00
interrupts.CPU31.IWI:IRQ_work_interrupts
565927 ± 15% +7.0% 605431 +7.0% 605766
interrupts.CPU31.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU31.MCP:Machine_check_polls
7492 ± 20% -0.1% 7487 ± 20% +9.3% 8189
interrupts.CPU31.NMI:Non-maskable_interrupts
7492 ± 20% -0.1% 7487 ± 20% +9.3% 8189
interrupts.CPU31.PMI:Performance_monitoring_interrupts
313.67 ± 3% -0.6% 311.67 +0.3% 314.75 ± 3%
interrupts.CPU31.RES:Rescheduling_interrupts
3002 ± 3% +1.4% 3045 -1.8% 2948 ± 5%
interrupts.CPU31.TLB:TLB_shootdowns
3735 ± 3% -0.6% 3715 +0.1% 3739
interrupts.CPU32.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +15.9% 2.12 ± 15%
interrupts.CPU32.IWI:IRQ_work_interrupts
565930 ± 15% +7.0% 605511 +7.0% 605769
interrupts.CPU32.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU32.MCP:Machine_check_polls
7491 ± 20% -0.0% 7488 ± 20% +9.3% 8189
interrupts.CPU32.NMI:Non-maskable_interrupts
7491 ± 20% -0.0% 7488 ± 20% +9.3% 8189
interrupts.CPU32.PMI:Performance_monitoring_interrupts
308.83 +0.0% 308.83 +1.6% 313.75 ± 4%
interrupts.CPU32.RES:Rescheduling_interrupts
2960 ± 5% -2.6% 2884 ± 3% +0.0% 2961 ± 4%
interrupts.CPU32.TLB:TLB_shootdowns
3763 -0.1% 3758 -0.2% 3756 ± 2%
interrupts.CPU33.CAL:Function_call_interrupts
2.00 -8.3% 1.83 ± 20% +0.0% 2.00 ± 25%
interrupts.CPU33.IWI:IRQ_work_interrupts
566093 ± 15% +7.0% 605502 +7.0% 605740
interrupts.CPU33.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU33.MCP:Machine_check_polls
8169 -8.3% 7487 ± 20% -6.0% 7678 ± 17%
interrupts.CPU33.NMI:Non-maskable_interrupts
8169 -8.3% 7487 ± 20% -6.0% 7678 ± 17%
interrupts.CPU33.PMI:Performance_monitoring_interrupts
312.50 ± 3% -1.2% 308.83 +2.1% 319.12 ± 8%
interrupts.CPU33.RES:Rescheduling_interrupts
3000 ± 3% +0.2% 3008 ± 4% -0.3% 2990 ± 5%
interrupts.CPU33.TLB:TLB_shootdowns
3711 ± 2% -0.0% 3710 +0.5% 3728
interrupts.CPU34.CAL:Function_call_interrupts
1.67 ± 28% +0.0% 1.67 ± 28% +20.0% 2.00 ± 25%
interrupts.CPU34.IWI:IRQ_work_interrupts
565606 ± 15% +7.1% 605485 +7.1% 605794
interrupts.CPU34.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU34.MCP:Machine_check_polls
6809 ± 28% -0.1% 6804 ± 28% +12.8% 7678 ± 17%
interrupts.CPU34.NMI:Non-maskable_interrupts
6809 ± 28% -0.1% 6804 ± 28% +12.8% 7678 ± 17%
interrupts.CPU34.PMI:Performance_monitoring_interrupts
308.17 +1.7% 313.33 ± 2% +0.4% 309.50
interrupts.CPU34.RES:Rescheduling_interrupts
2932 ± 4% -2.9% 2847 +0.1% 2934 ± 5%
interrupts.CPU34.TLB:TLB_shootdowns
3748 +1.0% 3788 +1.7% 3814 ± 5%
interrupts.CPU35.CAL:Function_call_interrupts
1.83 ± 20% -9.1% 1.67 ± 28% +9.1% 2.00
interrupts.CPU35.IWI:IRQ_work_interrupts
565179 ± 15% +7.1% 605488 +7.2% 605740
interrupts.CPU35.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU35.MCP:Machine_check_polls
7487 ± 20% -9.1% 6805 ± 28% +9.4% 8190
interrupts.CPU35.NMI:Non-maskable_interrupts
7487 ± 20% -9.1% 6805 ± 28% +9.4% 8190
interrupts.CPU35.PMI:Performance_monitoring_interrupts
308.17 +0.6% 310.00 +47.4% 454.25 ± 66%
interrupts.CPU35.RES:Rescheduling_interrupts
3007 ± 3% +1.5% 3053 ± 3% -1.3% 2967 ± 4%
interrupts.CPU35.TLB:TLB_shootdowns
3831 ± 4% -3.3% 3705 -2.9% 3721 ± 2%
interrupts.CPU36.CAL:Function_call_interrupts
1.83 ± 20% -9.1% 1.67 ± 28% +15.9% 2.12 ± 15%
interrupts.CPU36.IWI:IRQ_work_interrupts
565420 ± 15% +7.1% 605501 +7.1% 605744
interrupts.CPU36.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU36.MCP:Machine_check_polls
7487 ± 20% -9.1% 6805 ± 28% +9.4% 8190
interrupts.CPU36.NMI:Non-maskable_interrupts
7487 ± 20% -9.1% 6805 ± 28% +9.4% 8190
interrupts.CPU36.PMI:Performance_monitoring_interrupts
332.50 ± 17% -7.7% 307.00 -7.4% 307.88
interrupts.CPU36.RES:Rescheduling_interrupts
2938 ± 4% -1.5% 2894 ± 3% +0.9% 2966 ± 4%
interrupts.CPU36.TLB:TLB_shootdowns
3778 ± 2% +1.4% 3832 ± 4% -1.5% 3722 ± 2%
interrupts.CPU37.CAL:Function_call_interrupts
1.83 ± 20% -9.1% 1.67 ± 28% +9.1% 2.00
interrupts.CPU37.IWI:IRQ_work_interrupts
566017 ± 15% +7.0% 605499 +7.0% 605766
interrupts.CPU37.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU37.MCP:Machine_check_polls
7487 ± 20% -9.1% 6805 ± 28% +9.4% 8189
interrupts.CPU37.NMI:Non-maskable_interrupts
7487 ± 20% -9.1% 6805 ± 28% +9.4% 8189
interrupts.CPU37.PMI:Performance_monitoring_interrupts
309.67 +6.7% 330.33 ± 15% -0.7% 307.62
interrupts.CPU37.RES:Rescheduling_interrupts
3012 ± 3% +1.4% 3053 ± 3% -1.1% 2980 ± 4%
interrupts.CPU37.TLB:TLB_shootdowns
3726 -0.9% 3692 +0.2% 3735
interrupts.CPU38.CAL:Function_call_interrupts
2.00 -8.3% 1.83 ± 20% +6.2% 2.12 ± 15%
interrupts.CPU38.IWI:IRQ_work_interrupts
566056 ± 15% +7.0% 605521 +7.0% 605758
interrupts.CPU38.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU38.MCP:Machine_check_polls
8170 -8.4% 7487 ± 20% +0.2% 8189
interrupts.CPU38.NMI:Non-maskable_interrupts
8170 -8.4% 7487 ± 20% +0.2% 8189
interrupts.CPU38.PMI:Performance_monitoring_interrupts
310.67 ± 2% -0.8% 308.17 -0.7% 308.62
interrupts.CPU38.RES:Rescheduling_interrupts
2942 ± 4% -3.1% 2852 +0.8% 2966 ± 4%
interrupts.CPU38.TLB:TLB_shootdowns
4027 ± 13% -6.3% 3771 -7.3% 3732
interrupts.CPU39.CAL:Function_call_interrupts
2.00 -8.3% 1.83 ± 20% +0.0% 2.00
interrupts.CPU39.IWI:IRQ_work_interrupts
565984 ± 15% +7.0% 605505 +7.0% 605716
interrupts.CPU39.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU39.MCP:Machine_check_polls
8170 -8.4% 7486 ± 20% +0.2% 8189
interrupts.CPU39.NMI:Non-maskable_interrupts
8170 -8.4% 7486 ± 20% +0.2% 8189
interrupts.CPU39.PMI:Performance_monitoring_interrupts
414.00 ± 35% -25.4% 308.67 -25.6% 308.12
interrupts.CPU39.RES:Rescheduling_interrupts
3023 ± 3% +0.8% 3048 ± 3% -1.7% 2971 ± 4%
interrupts.CPU39.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU4.27:PCI-MSI.17825792-edge.PCIe.PME,pciehp
3672 ± 2% +0.5% 3689 +0.1% 3673 ± 2%
interrupts.CPU4.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% -4.5% 1.75 ± 37%
interrupts.CPU4.IWI:IRQ_work_interrupts
563563 ± 16% +7.4% 605502 +7.5% 605919
interrupts.CPU4.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU4.MCP:Machine_check_polls
7509 ± 20% -0.1% 7504 ± 20% -11.1% 6673 ± 29%
interrupts.CPU4.NMI:Non-maskable_interrupts
7509 ± 20% -0.1% 7504 ± 20% -11.1% 6673 ± 29%
interrupts.CPU4.PMI:Performance_monitoring_interrupts
313.83 +0.0% 313.83 +2.5% 321.75 ± 4%
interrupts.CPU4.RES:Rescheduling_interrupts
2828 ± 4% -0.9% 2801 ± 3% +1.8% 2879 ± 4%
interrupts.CPU4.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU40.67:PCI-MSI.23592977-edge.nvme0q17
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU40.96:PCI-MSI.23592977-edge.nvme0q17
3775 -1.6% 3715 -0.6% 3750
interrupts.CPU40.CAL:Function_call_interrupts
2.00 -8.3% 1.83 ± 20% +6.2% 2.12 ± 15%
interrupts.CPU40.IWI:IRQ_work_interrupts
564604 ± 16% +7.2% 605499 +7.3% 605750
interrupts.CPU40.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU40.MCP:Machine_check_polls
8170 -8.4% 7486 ± 20% +0.2% 8189
interrupts.CPU40.NMI:Non-maskable_interrupts
8170 -8.4% 7486 ± 20% +0.2% 8189
interrupts.CPU40.PMI:Performance_monitoring_interrupts
466.50 ± 75% -34.1% 307.33 -33.9% 308.38
interrupts.CPU40.RES:Rescheduling_interrupts
2987 ± 4% -3.0% 2898 ± 2% -0.6% 2970 ± 4%
interrupts.CPU40.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU41.97:PCI-MSI.23592978-edge.nvme0q18
3772 +0.8% 3801 -0.6% 3750
interrupts.CPU41.CAL:Function_call_interrupts
2.00 -8.3% 1.83 ± 20% +0.0% 2.00
interrupts.CPU41.IWI:IRQ_work_interrupts
565516 ± 15% +7.1% 605495 +7.1% 605729
interrupts.CPU41.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU41.MCP:Machine_check_polls
8170 -8.4% 7486 ± 20% +0.2% 8189
interrupts.CPU41.NMI:Non-maskable_interrupts
8170 -8.4% 7486 ± 20% +0.2% 8189
interrupts.CPU41.PMI:Performance_monitoring_interrupts
309.33 +0.3% 310.33 +2.0% 315.62 ± 6%
interrupts.CPU41.RES:Rescheduling_interrupts
3021 ± 3% +1.3% 3059 ± 3% -1.5% 2976 ± 4%
interrupts.CPU41.TLB:TLB_shootdowns
3655 ± 4% +3.9% 3796 ± 4% +2.4% 3744
interrupts.CPU42.CAL:Function_call_interrupts
2.00 -25.0% 1.50 ± 33% +0.0% 2.00
interrupts.CPU42.IWI:IRQ_work_interrupts
565572 ± 15% +7.1% 605500 +7.1% 605685
interrupts.CPU42.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU42.MCP:Machine_check_polls
8170 -25.1% 6122 ± 33% +0.3% 8191
interrupts.CPU42.NMI:Non-maskable_interrupts
8170 -25.1% 6122 ± 33% +0.3% 8191
interrupts.CPU42.PMI:Performance_monitoring_interrupts
310.00 +7.1% 332.00 ± 16% -0.8% 307.50
interrupts.CPU42.RES:Rescheduling_interrupts
2957 ± 4% -0.4% 2946 ± 3% +0.7% 2978 ± 3%
interrupts.CPU42.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU43.80:PCI-MSI.23592980-edge.nvme0q20
3939 ± 9% -3.9% 3784 -5.4% 3726 ± 2%
interrupts.CPU43.CAL:Function_call_interrupts
2.00 -25.0% 1.50 ± 33% +6.2% 2.12 ± 15%
interrupts.CPU43.IWI:IRQ_work_interrupts
565500 ± 15% +7.1% 605500 +7.1% 605726
interrupts.CPU43.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU43.MCP:Machine_check_polls
8170 -25.0% 6127 ± 33% +0.3% 8190
interrupts.CPU43.NMI:Non-maskable_interrupts
8170 -25.0% 6127 ± 33% +0.3% 8190
interrupts.CPU43.PMI:Performance_monitoring_interrupts
340.83 ± 21% -9.4% 308.67 -9.7% 307.62
interrupts.CPU43.RES:Rescheduling_interrupts
3023 ± 3% +1.3% 3063 ± 3% -2.3% 2954 ± 4%
interrupts.CPU43.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU44.64:PCI-MSI.23592981-edge.nvme0q21
3733 -0.4% 3720 +0.1% 3737
interrupts.CPU44.CAL:Function_call_interrupts
2.00 -16.7% 1.67 ± 28% +6.2% 2.12 ± 15%
interrupts.CPU44.IWI:IRQ_work_interrupts
565898 ± 15% +7.0% 605559 +7.0% 605737
interrupts.CPU44.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU44.MCP:Machine_check_polls
8169 -16.6% 6810 ± 28% +0.3% 8189
interrupts.CPU44.NMI:Non-maskable_interrupts
8169 -16.6% 6810 ± 28% +0.3% 8189
interrupts.CPU44.PMI:Performance_monitoring_interrupts
459.33 ± 73% -33.1% 307.17 -33.0% 307.62
interrupts.CPU44.RES:Rescheduling_interrupts
2918 ± 3% -0.3% 2909 ± 2% +2.2% 2981 ± 4%
interrupts.CPU44.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU45.79:PCI-MSI.23592982-edge.nvme0q22
4095 ± 17% -8.0% 3768 -8.7% 3739 ± 2%
interrupts.CPU45.CAL:Function_call_interrupts
2.00 -16.7% 1.67 ± 28% +6.2% 2.12 ± 15%
interrupts.CPU45.IWI:IRQ_work_interrupts
565459 ± 15% +7.1% 605499 +7.1% 605739
interrupts.CPU45.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU45.MCP:Machine_check_polls
8169 -16.6% 6810 ± 28% +0.3% 8191
interrupts.CPU45.NMI:Non-maskable_interrupts
8169 -16.6% 6810 ± 28% +0.3% 8191
interrupts.CPU45.PMI:Performance_monitoring_interrupts
524.00 ± 64% -41.1% 308.67 -41.2% 308.25
interrupts.CPU45.RES:Rescheduling_interrupts
3030 ± 3% +1.3% 3069 ± 3% -1.4% 2986 ± 4%
interrupts.CPU45.TLB:TLB_shootdowns
3743 ± 2% -0.7% 3715 +0.2% 3749
interrupts.CPU46.CAL:Function_call_interrupts
2.00 -16.7% 1.67 ± 28% +0.0% 2.00
interrupts.CPU46.IWI:IRQ_work_interrupts
565770 ± 15% +7.0% 605518 +7.1% 605733
interrupts.CPU46.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU46.MCP:Machine_check_polls
8169 -16.6% 6809 ± 28% +0.3% 8190
interrupts.CPU46.NMI:Non-maskable_interrupts
8169 -16.6% 6809 ± 28% +0.3% 8190
interrupts.CPU46.PMI:Performance_monitoring_interrupts
308.83 +0.0% 308.83 -0.1% 308.38
interrupts.CPU46.RES:Rescheduling_interrupts
2967 ± 4% -1.7% 2915 ± 2% +0.7% 2986 ± 4%
interrupts.CPU46.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU47.67:PCI-MSI.23592984-edge.nvme0q24
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU47.68:PCI-MSI.23592984-edge.nvme0q24
3804 -0.3% 3792 +3.7% 3945 ± 12%
interrupts.CPU47.CAL:Function_call_interrupts
1.83 ± 20% -9.1% 1.67 ± 28% +15.9% 2.12 ± 15%
interrupts.CPU47.IWI:IRQ_work_interrupts
565451 ± 15% +7.1% 605509 +7.1% 605753
interrupts.CPU47.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU47.MCP:Machine_check_polls
7491 ± 20% -9.1% 6809 ± 28% +9.3% 8189
interrupts.CPU47.NMI:Non-maskable_interrupts
7491 ± 20% -9.1% 6809 ± 28% +9.3% 8189
interrupts.CPU47.PMI:Performance_monitoring_interrupts
326.17 ± 8% -1.1% 322.50 ± 10% +16.5% 380.00 ± 50%
interrupts.CPU47.RES:Rescheduling_interrupts
3084 ± 2% -1.9% 3027 ± 4% -3.1% 2990 ± 4%
interrupts.CPU47.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU48.188:PCI-MSI.67174400-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU48.189:PCI-MSI.67174400-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU48.55:PCI-MSI.67174400-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU48.57:PCI-MSI.67174400-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU48.58:PCI-MSI.67174400-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU48.59:PCI-MSI.67174400-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU48.60:PCI-MSI.67174400-edge.ioat-msix
4024 ± 9% +0.5% 4043 ± 8% -3.5% 3883 ± 3%
interrupts.CPU48.CAL:Function_call_interrupts
2.83 ± 13% -5.9% 2.67 ± 17% +5.9% 3.00
interrupts.CPU48.IWI:IRQ_work_interrupts
565900 ± 15% +7.0% 605598 +7.0% 605782
interrupts.CPU48.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU48.MCP:Machine_check_polls
7821 ± 20% -9.1% 7112 ± 28% +9.3% 8549
interrupts.CPU48.NMI:Non-maskable_interrupts
7821 ± 20% -9.1% 7112 ± 28% +9.3% 8549
interrupts.CPU48.PMI:Performance_monitoring_interrupts
370.17 ± 23% -3.4% 357.50 ± 15% -9.9% 333.50 ± 5%
interrupts.CPU48.RES:Rescheduling_interrupts
2969 ± 2% -0.3% 2960 ± 2% +0.0% 2969 ± 4%
interrupts.CPU48.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU49.190:PCI-MSI.67176448-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU49.191:PCI-MSI.67176448-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU49.58:PCI-MSI.67176448-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU49.60:PCI-MSI.67176448-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU49.61:PCI-MSI.67176448-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU49.62:PCI-MSI.67176448-edge.ioat-msix
5387 ± 19% -2.2% 5271 ± 20% -11.0% 4794 ± 15%
interrupts.CPU49.CAL:Function_call_interrupts
2.83 ± 13% -11.8% 2.50 ± 20% +5.9% 3.00
interrupts.CPU49.IWI:IRQ_work_interrupts
566308 ± 15% +6.9% 605629 +7.0% 605837
interrupts.CPU49.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU49.MCP:Machine_check_polls
7823 ± 20% -18.2% 6401 ± 33% +9.3% 8551
interrupts.CPU49.NMI:Non-maskable_interrupts
7823 ± 20% -18.2% 6401 ± 33% +9.3% 8551
interrupts.CPU49.PMI:Performance_monitoring_interrupts
413.17 ± 17% -9.5% 373.83 ± 14% -4.3% 395.50 ± 15%
interrupts.CPU49.RES:Rescheduling_interrupts
2922 ± 3% +5.1% 3072 ± 3% +2.7% 3002 ± 5%
interrupts.CPU49.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU5.29:PCI-MSI.23068672-edge.PCIe.PME,pciehp
3686 +0.5% 3705 ± 2% +35.9% 5008 ± 68%
interrupts.CPU5.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 -4.5% 1.75 ± 37%
interrupts.CPU5.IWI:IRQ_work_interrupts
563989 ± 16% +7.4% 605524 +7.4% 605907
interrupts.CPU5.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU5.MCP:Machine_check_polls
7508 ± 20% +9.1% 8188 -11.1% 6673 ± 29%
interrupts.CPU5.NMI:Non-maskable_interrupts
7508 ± 20% +9.1% 8188 -11.1% 6673 ± 29%
interrupts.CPU5.PMI:Performance_monitoring_interrupts
312.00 +0.0% 312.00 +57.4% 491.12 ± 96%
interrupts.CPU5.RES:Rescheduling_interrupts
2978 ± 3% -1.7% 2927 ± 4% -2.5% 2904 ± 4%
interrupts.CPU5.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU50.191:PCI-MSI.67178496-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU50.192:PCI-MSI.67178496-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU50.61:PCI-MSI.67178496-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU50.62:PCI-MSI.67178496-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU50.63:PCI-MSI.67178496-edge.ioat-msix
5001 ± 32% -8.8% 4561 ± 20% -11.5% 4425 ± 14%
interrupts.CPU50.CAL:Function_call_interrupts
2.83 ± 13% -5.9% 2.67 ± 17% +5.9% 3.00
interrupts.CPU50.IWI:IRQ_work_interrupts
566216 ± 15% +7.0% 605619 +7.0% 605814
interrupts.CPU50.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU50.MCP:Machine_check_polls
7823 ± 20% -9.1% 7110 ± 28% +9.3% 8551
interrupts.CPU50.NMI:Non-maskable_interrupts
7823 ± 20% -9.1% 7110 ± 28% +9.3% 8551
interrupts.CPU50.PMI:Performance_monitoring_interrupts
638.17 ± 90% -26.4% 469.67 ± 29% -39.5% 386.12 ± 14%
interrupts.CPU50.RES:Rescheduling_interrupts
3006 ± 3% -2.7% 2925 ± 2% -0.0% 3004 ± 4%
interrupts.CPU50.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU51.192:PCI-MSI.67180544-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU51.193:PCI-MSI.67180544-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU51.62:PCI-MSI.67180544-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU51.65:PCI-MSI.67180544-edge.ioat-msix
4028 ± 13% -5.6% 3802 ± 2% +4.6% 4213 ± 24%
interrupts.CPU51.CAL:Function_call_interrupts
2.83 ± 13% +0.0% 2.83 ± 13% +5.9% 3.00
interrupts.CPU51.IWI:IRQ_work_interrupts
565755 ± 15% +7.0% 605587 +7.1% 605762
interrupts.CPU51.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU51.MCP:Machine_check_polls
7822 ± 20% -0.0% 7822 ± 20% +9.3% 8550
interrupts.CPU51.NMI:Non-maskable_interrupts
7822 ± 20% -0.0% 7822 ± 20% +9.3% 8550
interrupts.CPU51.PMI:Performance_monitoring_interrupts
354.17 ± 27% -10.6% 316.67 ± 4% +13.1% 400.50 ± 33%
interrupts.CPU51.RES:Rescheduling_interrupts
3007 ± 4% +2.6% 3086 ± 3% -0.1% 3003 ± 4%
interrupts.CPU51.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU52.193:PCI-MSI.67182592-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU52.194:PCI-MSI.67182592-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU52.63:PCI-MSI.67182592-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU52.66:PCI-MSI.67182592-edge.ioat-msix
3938 ± 9% -5.6% 3716 ± 2% -4.9% 3746 ± 2%
interrupts.CPU52.CAL:Function_call_interrupts
2.83 ± 13% -5.9% 2.67 ± 17% +1.5% 2.88 ± 11%
interrupts.CPU52.IWI:IRQ_work_interrupts
565559 ± 15% +7.1% 605583 +7.1% 605778
interrupts.CPU52.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU52.MCP:Machine_check_polls
7826 ± 20% -9.1% 7114 ± 28% +2.4% 8016 ± 17%
interrupts.CPU52.NMI:Non-maskable_interrupts
7826 ± 20% -9.1% 7114 ± 28% +2.4% 8016 ± 17%
interrupts.CPU52.PMI:Performance_monitoring_interrupts
406.00 ± 28% -11.5% 359.50 ± 31% -23.2% 312.00 ± 2%
interrupts.CPU52.RES:Rescheduling_interrupts
3012 ± 3% -2.6% 2933 ± 2% -0.3% 3003 ± 4%
interrupts.CPU52.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU53.194:PCI-MSI.67184640-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU53.195:PCI-MSI.67184640-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU53.64:PCI-MSI.67184640-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU53.67:PCI-MSI.67184640-edge.ioat-msix
3742 +1.0% 3780 +0.7% 3767
interrupts.CPU53.CAL:Function_call_interrupts
3.00 -11.1% 2.67 ± 17% -4.2% 2.88 ± 11%
interrupts.CPU53.IWI:IRQ_work_interrupts
565855 ± 15% +7.0% 605588 +7.1% 605781
interrupts.CPU53.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU53.MCP:Machine_check_polls
8536 -16.7% 7114 ± 28% -6.1% 8016 ± 17%
interrupts.CPU53.NMI:Non-maskable_interrupts
8536 -16.7% 7114 ± 28% -6.1% 8016 ± 17%
interrupts.CPU53.PMI:Performance_monitoring_interrupts
308.17 +49.8% 461.67 ± 72% +1.1% 311.50 ± 3%
interrupts.CPU53.RES:Rescheduling_interrupts
2984 ± 3% +3.2% 3079 ± 3% +2.7% 3065 ± 3%
interrupts.CPU53.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU54.195:PCI-MSI.67186688-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU54.196:PCI-MSI.67186688-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU54.66:PCI-MSI.67186688-edge.ioat-msix
3685 ± 4% +0.5% 3703 +1.7% 3748 ± 2%
interrupts.CPU54.CAL:Function_call_interrupts
2.83 ± 13% -5.9% 2.67 ± 17% +1.5% 2.88 ± 11%
interrupts.CPU54.IWI:IRQ_work_interrupts
566016 ± 15% +7.0% 605583 +7.0% 605792
interrupts.CPU54.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU54.MCP:Machine_check_polls
7829 ± 20% -9.1% 7114 ± 28% +2.4% 8016 ± 17%
interrupts.CPU54.NMI:Non-maskable_interrupts
7829 ± 20% -9.1% 7114 ± 28% +2.4% 8016 ± 17%
interrupts.CPU54.PMI:Performance_monitoring_interrupts
311.33 -1.3% 307.33 +0.1% 311.75
interrupts.CPU54.RES:Rescheduling_interrupts
3015 ± 3% -2.6% 2938 ± 2% -0.3% 3007 ± 3%
interrupts.CPU54.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU55.196:PCI-MSI.67188736-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU55.197:PCI-MSI.67188736-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU55.67:PCI-MSI.67188736-edge.ioat-msix
3962 ± 13% -3.8% 3811 ± 3% -1.2% 3914 ± 14%
interrupts.CPU55.CAL:Function_call_interrupts
3.00 -11.1% 2.67 ± 17% -4.2% 2.88 ± 11%
interrupts.CPU55.IWI:IRQ_work_interrupts
566315 ± 15% +6.9% 605584 +7.0% 605805
interrupts.CPU55.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU55.MCP:Machine_check_polls
8536 -16.7% 7113 ± 28% -6.1% 8016 ± 17%
interrupts.CPU55.NMI:Non-maskable_interrupts
8536 -16.7% 7113 ± 28% -6.1% 8016 ± 17%
interrupts.CPU55.PMI:Performance_monitoring_interrupts
374.50 ± 39% -13.4% 324.50 ± 8% +14.4% 428.38 ± 49%
interrupts.CPU55.RES:Rescheduling_interrupts
2989 ± 3% +3.4% 3091 ± 3% +1.0% 3019 ± 4%
interrupts.CPU55.TLB:TLB_shootdowns
3755 ± 2% -1.1% 3714 -0.9% 3720
interrupts.CPU56.CAL:Function_call_interrupts
3.00 -11.1% 2.67 ± 17% -4.2% 2.88 ± 11%
interrupts.CPU56.IWI:IRQ_work_interrupts
565929 ± 15% +7.0% 605584 +7.0% 605770
interrupts.CPU56.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU56.MCP:Machine_check_polls
8537 -16.7% 7114 ± 28% -6.1% 8017 ± 17%
interrupts.CPU56.NMI:Non-maskable_interrupts
8537 -16.7% 7114 ± 28% -6.1% 8017 ± 17%
interrupts.CPU56.PMI:Performance_monitoring_interrupts
307.83 -0.2% 307.33 -0.2% 307.12
interrupts.CPU56.RES:Rescheduling_interrupts
3030 ± 3% -1.5% 2985 ± 2% -1.5% 2984 ± 4%
interrupts.CPU56.TLB:TLB_shootdowns
3719 ± 2% +1.7% 3781 +19.2% 4432 ± 40%
interrupts.CPU57.CAL:Function_call_interrupts
3.00 -11.1% 2.67 ± 17% -8.3% 2.75 ± 15%
interrupts.CPU57.IWI:IRQ_work_interrupts
565660 ± 15% +7.1% 605575 +7.1% 605798
interrupts.CPU57.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU57.MCP:Machine_check_polls
8537 -16.7% 7113 ± 28% -12.3% 7484 ± 24%
interrupts.CPU57.NMI:Non-maskable_interrupts
8537 -16.7% 7113 ± 28% -12.3% 7484 ± 24%
interrupts.CPU57.PMI:Performance_monitoring_interrupts
307.33 +0.5% 309.00 +35.0% 414.88 ± 68%
interrupts.CPU57.RES:Rescheduling_interrupts
3020 ± 4% +2.4% 3094 ± 3% +0.1% 3023 ± 4%
interrupts.CPU57.TLB:TLB_shootdowns
3817 ± 5% -2.7% 3715 -1.7% 3750
interrupts.CPU58.CAL:Function_call_interrupts
2.83 ± 13% +0.0% 2.83 ± 13% -2.9% 2.75 ± 15%
interrupts.CPU58.IWI:IRQ_work_interrupts
565759 ± 15% +7.0% 605568 +7.1% 605788
interrupts.CPU58.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU58.MCP:Machine_check_polls
7828 ± 20% -0.1% 7822 ± 20% -4.4% 7484 ± 24%
interrupts.CPU58.NMI:Non-maskable_interrupts
7828 ± 20% -0.1% 7822 ± 20% -4.4% 7484 ± 24%
interrupts.CPU58.PMI:Performance_monitoring_interrupts
330.00 ± 15% -6.9% 307.17 -6.3% 309.12
interrupts.CPU58.RES:Rescheduling_interrupts
3025 ± 4% -2.5% 2949 ± 2% -0.2% 3019 ± 4%
interrupts.CPU58.TLB:TLB_shootdowns
3746 ± 3% +5.7% 3958 ± 10% +0.2% 3755 ± 2%
interrupts.CPU59.CAL:Function_call_interrupts
3.00 +0.0% 3.00 -8.3% 2.75 ± 15%
interrupts.CPU59.IWI:IRQ_work_interrupts
565492 ± 15% +7.1% 605568 +7.1% 605852
interrupts.CPU59.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU59.MCP:Machine_check_polls
8537 -0.0% 8534 -12.3% 7484 ± 24%
interrupts.CPU59.NMI:Non-maskable_interrupts
8537 -0.0% 8534 -12.3% 7484 ± 24%
interrupts.CPU59.PMI:Performance_monitoring_interrupts
309.50 +14.9% 355.67 ± 30% -0.6% 307.75
interrupts.CPU59.RES:Rescheduling_interrupts
3004 ± 5% +3.1% 3098 ± 3% +0.6% 3023 ± 4%
interrupts.CPU59.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU6.35:PCI-MSI.327680-edge.xhci_hcd
3695 -0.4% 3681 +0.3% 3706
interrupts.CPU6.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% +2.3% 1.88 ± 31%
interrupts.CPU6.IWI:IRQ_work_interrupts
563915 ± 16% +7.4% 605509 +7.4% 605902
interrupts.CPU6.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU6.MCP:Machine_check_polls
7509 ± 20% -0.1% 7504 ± 20% -18.0% 6154 ± 33%
interrupts.CPU6.NMI:Non-maskable_interrupts
7509 ± 20% -0.1% 7504 ± 20% -18.0% 6154 ± 33%
interrupts.CPU6.PMI:Performance_monitoring_interrupts
314.17 -1.2% 310.50 -0.7% 312.00
interrupts.CPU6.RES:Rescheduling_interrupts
2808 ± 3% -0.1% 2806 ± 3% +3.8% 2916 ± 4%
interrupts.CPU6.TLB:TLB_shootdowns
3758 -1.1% 3717 +2.2% 3840 ± 4%
interrupts.CPU60.CAL:Function_call_interrupts
2.83 ± 13% +0.0% 2.83 ± 13% -2.9% 2.75 ± 15%
interrupts.CPU60.IWI:IRQ_work_interrupts
566327 ± 15% +6.9% 605568 +7.0% 605798
interrupts.CPU60.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU60.MCP:Machine_check_polls
7822 ± 20% +0.0% 7826 ± 20% -4.3% 7483 ± 24%
interrupts.CPU60.NMI:Non-maskable_interrupts
7822 ± 20% +0.0% 7826 ± 20% -4.3% 7483 ± 24%
interrupts.CPU60.PMI:Performance_monitoring_interrupts
458.67 ± 73% -31.8% 312.67 ± 3% -3.7% 441.50 ± 67%
interrupts.CPU60.RES:Rescheduling_interrupts
3040 ± 3% -2.8% 2955 ± 2% -0.6% 3023 ± 3%
interrupts.CPU60.TLB:TLB_shootdowns
3740 +0.5% 3759 +8.6% 4062 ± 20%
interrupts.CPU61.CAL:Function_call_interrupts
2.67 ± 17% +6.3% 2.83 ± 13% +7.8% 2.88 ± 11%
interrupts.CPU61.IWI:IRQ_work_interrupts
566160 ± 15% +7.0% 605568 +7.0% 605786
interrupts.CPU61.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU61.MCP:Machine_check_polls
7112 ± 28% +10.1% 7827 ± 20% +12.8% 8019 ± 17%
interrupts.CPU61.NMI:Non-maskable_interrupts
7112 ± 28% +10.1% 7827 ± 20% +12.8% 8019 ± 17%
interrupts.CPU61.PMI:Performance_monitoring_interrupts
358.50 ± 31% -14.3% 307.33 +5.5% 378.25 ± 42%
interrupts.CPU61.RES:Rescheduling_interrupts
3004 ± 3% +3.3% 3103 ± 3% +0.8% 3027 ± 4%
interrupts.CPU61.TLB:TLB_shootdowns
3761 -1.4% 3708 +3.8% 3903 ± 11%
interrupts.CPU62.CAL:Function_call_interrupts
2.83 ± 13% +5.9% 3.00 +1.5% 2.88 ± 11%
interrupts.CPU62.IWI:IRQ_work_interrupts
565979 ± 15% +7.0% 605506 +7.0% 605763
interrupts.CPU62.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU62.MCP:Machine_check_polls
7827 ± 20% +9.0% 8534 +2.4% 8018 ± 17%
interrupts.CPU62.NMI:Non-maskable_interrupts
7827 ± 20% +9.0% 8534 +2.4% 8018 ± 17%
interrupts.CPU62.PMI:Performance_monitoring_interrupts
308.17 +0.1% 308.33 +28.4% 395.75 ± 39%
interrupts.CPU62.RES:Rescheduling_interrupts
3042 ± 3% -3.1% 2948 ± 3% -0.5% 3028 ± 3%
interrupts.CPU62.TLB:TLB_shootdowns
3773 ± 2% -0.0% 3772 ± 2% +1.1% 3815 ± 4%
interrupts.CPU63.CAL:Function_call_interrupts
3.00 -5.6% 2.83 ± 13% -4.2% 2.88 ± 11%
interrupts.CPU63.IWI:IRQ_work_interrupts
565748 ± 15% +7.0% 605574 +7.1% 605791
interrupts.CPU63.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU63.MCP:Machine_check_polls
8540 -8.4% 7826 ± 20% -6.1% 8018 ± 17%
interrupts.CPU63.NMI:Non-maskable_interrupts
8540 -8.4% 7826 ± 20% -6.1% 8018 ± 17%
interrupts.CPU63.PMI:Performance_monitoring_interrupts
308.33 +0.5% 310.00 ± 2% +4.1% 321.00 ± 11%
interrupts.CPU63.RES:Rescheduling_interrupts
3046 ± 3% +0.8% 3071 ± 4% -0.4% 3034 ± 4%
interrupts.CPU63.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU64.99:PCI-MSI.23593009-edge.nvme0q49
3785 -1.6% 3725 -0.8% 3755 ± 2%
interrupts.CPU64.CAL:Function_call_interrupts
3.00 -5.6% 2.83 ± 13% -4.2% 2.88 ± 11%
interrupts.CPU64.IWI:IRQ_work_interrupts
565753 ± 15% +7.0% 605571 +7.1% 605775
interrupts.CPU64.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU64.MCP:Machine_check_polls
8539 -8.3% 7826 ± 20% -6.1% 8018 ± 17%
interrupts.CPU64.NMI:Non-maskable_interrupts
8539 -8.3% 7826 ± 20% -6.1% 8018 ± 17%
interrupts.CPU64.PMI:Performance_monitoring_interrupts
307.67 -0.1% 307.50 +0.9% 310.38 ± 2%
interrupts.CPU64.RES:Rescheduling_interrupts
3048 ± 3% -2.7% 2966 ± 2% -0.6% 3031 ± 3%
interrupts.CPU64.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU65.95:PCI-MSI.23593010-edge.nvme0q50
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU65.98:PCI-MSI.23593010-edge.nvme0q50
3729 ± 5% +0.7% 3757 ± 3% +0.9% 3764 ± 2%
interrupts.CPU65.CAL:Function_call_interrupts
3.00 -5.6% 2.83 ± 13% -8.3% 2.75 ± 15%
interrupts.CPU65.IWI:IRQ_work_interrupts
565859 ± 15% +7.0% 605579 +7.1% 605813
interrupts.CPU65.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU65.MCP:Machine_check_polls
8539 -8.4% 7821 ± 20% -12.4% 7484 ± 24%
interrupts.CPU65.NMI:Non-maskable_interrupts
8539 -8.4% 7821 ± 20% -12.4% 7484 ± 24%
interrupts.CPU65.PMI:Performance_monitoring_interrupts
316.17 ± 4% -2.7% 307.67 -1.5% 311.38 ± 2%
interrupts.CPU65.RES:Rescheduling_interrupts
3050 ± 3% +1.8% 3105 ± 3% -0.3% 3039 ± 4%
interrupts.CPU65.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU66.111:PCI-MSI.23593011-edge.nvme0q51
3759 ± 2% -1.6% 3699 -0.3% 3747
interrupts.CPU66.CAL:Function_call_interrupts
3.00 +0.0% 3.00 -8.3% 2.75 ± 15%
interrupts.CPU66.IWI:IRQ_work_interrupts
566329 ± 15% +6.9% 605566 +7.0% 605816
interrupts.CPU66.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU66.MCP:Machine_check_polls
8539 -0.0% 8535 -12.4% 7484 ± 24%
interrupts.CPU66.NMI:Non-maskable_interrupts
8539 -0.0% 8535 -12.4% 7484 ± 24%
interrupts.CPU66.PMI:Performance_monitoring_interrupts
310.17 -1.0% 307.00 -0.9% 307.38
interrupts.CPU66.RES:Rescheduling_interrupts
3010 ± 4% -1.0% 2980 ± 2% -0.0% 3009 ± 3%
interrupts.CPU66.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU67.100:PCI-MSI.23593012-edge.nvme0q52
3788 +1.0% 3827 ± 2% -0.9% 3753
interrupts.CPU67.CAL:Function_call_interrupts
3.00 +0.0% 3.00 -4.2% 2.88 ± 11%
interrupts.CPU67.IWI:IRQ_work_interrupts
566289 ± 15% +6.9% 605577 +7.0% 605772
interrupts.CPU67.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU67.MCP:Machine_check_polls
8539 -0.1% 8534 -6.1% 8017 ± 17%
interrupts.CPU67.NMI:Non-maskable_interrupts
8539 -0.1% 8534 -6.1% 8017 ± 17%
interrupts.CPU67.PMI:Performance_monitoring_interrupts
308.67 -0.4% 307.50 -0.3% 307.75
interrupts.CPU67.RES:Rescheduling_interrupts
3054 ± 3% +2.3% 3124 ± 2% -0.4% 3043 ± 4%
interrupts.CPU67.TLB:TLB_shootdowns
3781 -2.0% 3704 ± 2% -0.1% 3777 ± 2%
interrupts.CPU68.CAL:Function_call_interrupts
3.00 +0.0% 3.00 -4.2% 2.88 ± 11%
interrupts.CPU68.IWI:IRQ_work_interrupts
566557 ± 15% +6.9% 605572 +6.9% 605780
interrupts.CPU68.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU68.MCP:Machine_check_polls
8538 -0.1% 8533 -6.1% 8017 ± 17%
interrupts.CPU68.NMI:Non-maskable_interrupts
8538 -0.1% 8533 -6.1% 8017 ± 17%
interrupts.CPU68.PMI:Performance_monitoring_interrupts
308.83 -0.2% 308.17 -0.2% 308.12
interrupts.CPU68.RES:Rescheduling_interrupts
3050 ± 3% -2.1% 2985 ± 2% -0.2% 3043 ± 3%
interrupts.CPU68.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU69.97:PCI-MSI.23593014-edge.nvme0q54
3881 ± 5% -2.1% 3801 -5.3% 3676 ± 3%
interrupts.CPU69.CAL:Function_call_interrupts
3.00 -5.6% 2.83 ± 13% -12.5% 2.62 ± 18%
interrupts.CPU69.IWI:IRQ_work_interrupts
565909 ± 15% +7.0% 605571 +7.0% 605801
interrupts.CPU69.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU69.MCP:Machine_check_polls
8538 -8.4% 7825 ± 20% -18.6% 6950 ± 29%
interrupts.CPU69.NMI:Non-maskable_interrupts
8538 -8.4% 7825 ± 20% -18.6% 6950 ± 29%
interrupts.CPU69.PMI:Performance_monitoring_interrupts
344.50 ± 23% -10.6% 307.83 -9.3% 312.38 ± 3%
interrupts.CPU69.RES:Rescheduling_interrupts
3059 ± 3% +2.2% 3128 ± 2% -0.4% 3048 ± 4%
interrupts.CPU69.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU7.8:IO-APIC.8-edge.rtc0
3722 +0.1% 3726 -0.4% 3706
interrupts.CPU7.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% -4.5% 1.75 ± 24%
interrupts.CPU7.IWI:IRQ_work_interrupts
564018 ± 16% +7.4% 605522 +7.4% 605940
interrupts.CPU7.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU7.MCP:Machine_check_polls
7508 ± 20% -0.1% 7504 ± 20% -11.2% 6666 ± 29%
interrupts.CPU7.NMI:Non-maskable_interrupts
7508 ± 20% -0.1% 7504 ± 20% -11.2% 6666 ± 29%
interrupts.CPU7.PMI:Performance_monitoring_interrupts
311.17 +0.1% 311.50 +0.0% 311.25
interrupts.CPU7.RES:Rescheduling_interrupts
2983 ± 3% +1.3% 3021 -3.1% 2891 ± 4%
interrupts.CPU7.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU70.117:PCI-MSI.23593015-edge.nvme0q55
3794 ± 2% -1.9% 3720 -1.2% 3749 ± 2%
interrupts.CPU70.CAL:Function_call_interrupts
3.00 -5.6% 2.83 ± 13% -16.7% 2.50 ± 20%
interrupts.CPU70.IWI:IRQ_work_interrupts
566139 ± 15% +7.0% 605566 +7.0% 605736
interrupts.CPU70.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU70.MCP:Machine_check_polls
8538 -8.3% 7825 ± 20% -24.9% 6411 ± 33%
interrupts.CPU70.NMI:Non-maskable_interrupts
8538 -8.3% 7825 ± 20% -24.9% 6411 ± 33%
interrupts.CPU70.PMI:Performance_monitoring_interrupts
311.50 ± 2% -1.2% 307.83 -1.2% 307.88
interrupts.CPU70.RES:Rescheduling_interrupts
3071 ± 3% -2.0% 3011 ± 2% +0.4% 3082 ± 3%
interrupts.CPU70.TLB:TLB_shootdowns
3712 ± 2% +14.2% 4237 ± 26% +1.6% 3769 ± 2%
interrupts.CPU71.CAL:Function_call_interrupts
3.00 -11.1% 2.67 ± 17% -16.7% 2.50 ± 20%
interrupts.CPU71.IWI:IRQ_work_interrupts
566065 ± 15% +7.0% 605602 +7.0% 605816
interrupts.CPU71.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU71.MCP:Machine_check_polls
8537 -16.7% 7111 ± 28% -24.8% 6416 ± 33%
interrupts.CPU71.NMI:Non-maskable_interrupts
8537 -16.7% 7111 ± 28% -24.8% 6416 ± 33%
interrupts.CPU71.PMI:Performance_monitoring_interrupts
309.33 +26.8% 392.33 ± 48% -0.2% 308.75
interrupts.CPU71.RES:Rescheduling_interrupts
3054 ± 3% +1.8% 3109 ± 3% +1.0% 3085 ± 3%
interrupts.CPU71.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU72.198:PCI-MSI.100728832-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU72.199:PCI-MSI.100728832-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU72.69:PCI-MSI.100728832-edge.ioat-msix
3925 ± 2% +1.0% 3962 ± 4% +2.4% 4019 ± 7%
interrupts.CPU72.CAL:Function_call_interrupts
2.00 -8.3% 1.83 ± 20% -25.0% 1.50 ± 33%
interrupts.CPU72.IWI:IRQ_work_interrupts
555199 ± 20% +9.1% 605609 +9.1% 605814
interrupts.CPU72.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU72.MCP:Machine_check_polls
8004 -8.4% 7332 ± 20% -24.9% 6015 ± 33%
interrupts.CPU72.NMI:Non-maskable_interrupts
8004 -8.4% 7332 ± 20% -24.9% 6015 ± 33%
interrupts.CPU72.PMI:Performance_monitoring_interrupts
352.17 ± 5% +6.9% 376.50 ± 11% +0.9% 355.50 ± 5%
interrupts.CPU72.RES:Rescheduling_interrupts
3071 ± 3% +0.6% 3088 ± 3% +2.8% 3158 ± 3%
interrupts.CPU72.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU73.200:PCI-MSI.100730880-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU73.201:PCI-MSI.100730880-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU73.71:PCI-MSI.100730880-edge.ioat-msix
4853 ± 28% +13.5% 5509 ± 30% -6.4% 4542 ± 8%
interrupts.CPU73.CAL:Function_call_interrupts
2.00 -8.3% 1.83 ± 20% -12.5% 1.75 ± 37%
interrupts.CPU73.IWI:IRQ_work_interrupts
561625 ± 17% +7.8% 605636 +7.9% 605841
interrupts.CPU73.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU73.MCP:Machine_check_polls
8005 -8.4% 7334 ± 20% -18.6% 6515 ± 30%
interrupts.CPU73.NMI:Non-maskable_interrupts
8005 -8.4% 7334 ± 20% -18.6% 6515 ± 30%
interrupts.CPU73.PMI:Performance_monitoring_interrupts
440.50 ± 20% -6.7% 411.17 ± 8% -3.1% 427.00 ± 16%
interrupts.CPU73.RES:Rescheduling_interrupts
3089 ± 2% +2.2% 3158 ± 2% +1.2% 3127 ± 3%
interrupts.CPU73.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU74.201:PCI-MSI.100732928-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU74.202:PCI-MSI.100732928-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU74.72:PCI-MSI.100732928-edge.ioat-msix
4348 ± 7% +8.6% 4723 ± 21% -2.5% 4240 ± 8%
interrupts.CPU74.CAL:Function_call_interrupts
2.00 -8.3% 1.83 ± 20% -12.5% 1.75 ± 24%
interrupts.CPU74.IWI:IRQ_work_interrupts
561818 ± 17% +7.8% 605581 +7.8% 605781
interrupts.CPU74.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU74.MCP:Machine_check_polls
8005 -8.4% 7335 ± 20% -12.3% 7017 ± 24%
interrupts.CPU74.NMI:Non-maskable_interrupts
8005 -8.4% 7335 ± 20% -12.3% 7017 ± 24%
interrupts.CPU74.PMI:Performance_monitoring_interrupts
389.83 ± 18% +10.4% 430.33 ± 25% +4.8% 408.50 ± 15%
interrupts.CPU74.RES:Rescheduling_interrupts
3117 ± 2% -2.7% 3034 -1.9% 3057 ± 3%
interrupts.CPU74.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU75.202:PCI-MSI.100734976-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU75.203:PCI-MSI.100734976-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU75.73:PCI-MSI.100734976-edge.ioat-msix
3879 ± 4% +28.6% 4987 ± 48% -1.8% 3809
interrupts.CPU75.CAL:Function_call_interrupts
2.00 -8.3% 1.83 ± 20% -12.5% 1.75 ± 24%
interrupts.CPU75.IWI:IRQ_work_interrupts
561688 ± 17% +7.8% 605562 +7.8% 605755
interrupts.CPU75.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU75.MCP:Machine_check_polls
8004 -8.4% 7336 ± 20% -12.3% 7016 ± 24%
interrupts.CPU75.NMI:Non-maskable_interrupts
8004 -8.4% 7336 ± 20% -12.3% 7016 ± 24%
interrupts.CPU75.PMI:Performance_monitoring_interrupts
339.00 ± 14% +53.5% 520.50 ± 71% -8.4% 310.62
interrupts.CPU75.RES:Rescheduling_interrupts
3102 ± 3% +0.3% 3110 ± 3% -0.5% 3087 ± 3%
interrupts.CPU75.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU76.203:PCI-MSI.100737024-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU76.204:PCI-MSI.100737024-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU76.74:PCI-MSI.100737024-edge.ioat-msix
3810 -1.6% 3750 -0.2% 3803
interrupts.CPU76.CAL:Function_call_interrupts
2.00 +0.0% 2.00 -12.5% 1.75 ± 24%
interrupts.CPU76.IWI:IRQ_work_interrupts
561206 ± 17% +7.9% 605587 +7.9% 605784
interrupts.CPU76.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU76.MCP:Machine_check_polls
8004 -0.0% 8003 -12.3% 7016 ± 24%
interrupts.CPU76.NMI:Non-maskable_interrupts
8004 -0.0% 8003 -12.3% 7016 ± 24%
interrupts.CPU76.PMI:Performance_monitoring_interrupts
307.83 +0.4% 309.17 -0.1% 307.38
interrupts.CPU76.RES:Rescheduling_interrupts
3097 ± 3% -2.3% 3025 ± 2% +0.5% 3111 ± 3%
interrupts.CPU76.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU77.204:PCI-MSI.100739072-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU77.205:PCI-MSI.100739072-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU77.75:PCI-MSI.100739072-edge.ioat-msix
3834 -0.4% 3819 -0.8% 3804
interrupts.CPU77.CAL:Function_call_interrupts
2.00 +0.0% 2.00 -12.5% 1.75 ± 24%
interrupts.CPU77.IWI:IRQ_work_interrupts
561388 ± 17% +7.9% 605565 +7.9% 605788
interrupts.CPU77.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU77.MCP:Machine_check_polls
8004 -0.0% 8003 -12.3% 7017 ± 24%
interrupts.CPU77.NMI:Non-maskable_interrupts
8004 -0.0% 8003 -12.3% 7017 ± 24%
interrupts.CPU77.PMI:Performance_monitoring_interrupts
308.00 +0.7% 310.17 +0.0% 308.00
interrupts.CPU77.RES:Rescheduling_interrupts
3159 -0.3% 3151 ± 2% -1.9% 3099 ± 3%
interrupts.CPU77.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU78.205:PCI-MSI.100741120-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU78.206:PCI-MSI.100741120-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU78.76:PCI-MSI.100741120-edge.ioat-msix
3808 -0.6% 3785 -0.6% 3786 ± 2%
interrupts.CPU78.CAL:Function_call_interrupts
2.00 +0.0% 2.00 -18.8% 1.62 ± 29%
interrupts.CPU78.IWI:IRQ_work_interrupts
561075 ± 17% +7.9% 605572 +8.0% 605764
interrupts.CPU78.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU78.MCP:Machine_check_polls
8004 -0.0% 8001 -18.7% 6504 ± 29%
interrupts.CPU78.NMI:Non-maskable_interrupts
8004 -0.0% 8001 -18.7% 6504 ± 29%
interrupts.CPU78.PMI:Performance_monitoring_interrupts
313.50 ± 3% -0.6% 311.50 -1.9% 307.62
interrupts.CPU78.RES:Rescheduling_interrupts
3094 ± 3% -0.4% 3082 ± 2% -1.2% 3056 ± 4%
interrupts.CPU78.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU79.207:PCI-MSI.100743168-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU79.79:PCI-MSI.100743168-edge.ioat-msix
3724 ± 5% +4.0% 3874 ± 6% +9.7% 4086 ± 20%
interrupts.CPU79.CAL:Function_call_interrupts
2.00 +0.0% 2.00 -25.0% 1.50 ± 33%
interrupts.CPU79.IWI:IRQ_work_interrupts
561662 ± 17% +7.8% 605587 +7.9% 605772
interrupts.CPU79.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU79.MCP:Machine_check_polls
8005 -0.0% 8003 -25.0% 6005 ± 33%
interrupts.CPU79.NMI:Non-maskable_interrupts
8005 -0.0% 8003 -25.0% 6005 ± 33%
interrupts.CPU79.PMI:Performance_monitoring_interrupts
309.17 +69.8% 524.83 ± 57% +12.4% 347.38 ± 30%
interrupts.CPU79.RES:Rescheduling_interrupts
3088 ± 3% +3.7% 3203 +0.3% 3098 ± 3%
interrupts.CPU79.TLB:TLB_shootdowns
3792 ± 6% -3.3% 3666 -1.1% 3752 ± 2%
interrupts.CPU8.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% -4.5% 1.75 ± 24%
interrupts.CPU8.IWI:IRQ_work_interrupts
564233 ± 16% +7.3% 605522 +7.4% 605911
interrupts.CPU8.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU8.MCP:Machine_check_polls
7508 ± 20% -0.0% 7505 ± 20% -11.2% 6666 ± 29%
interrupts.CPU8.NMI:Non-maskable_interrupts
7508 ± 20% -0.0% 7505 ± 20% -11.2% 6666 ± 29%
interrupts.CPU8.PMI:Performance_monitoring_interrupts
357.17 ± 28% -13.2% 310.17 +22.4% 437.12 ± 71%
interrupts.CPU8.RES:Rescheduling_interrupts
2805 ± 4% -0.0% 2805 ± 3% +3.2% 2895 ± 4%
interrupts.CPU8.TLB:TLB_shootdowns
3859 ± 2% -2.2% 3773 -1.9% 3786
interrupts.CPU80.CAL:Function_call_interrupts
2.00 +0.0% 2.00 -25.0% 1.50 ± 33%
interrupts.CPU80.IWI:IRQ_work_interrupts
561853 ± 17% +7.8% 605548 +7.8% 605782
interrupts.CPU80.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU80.MCP:Machine_check_polls
8004 -0.0% 8002 -25.0% 6005 ± 33%
interrupts.CPU80.NMI:Non-maskable_interrupts
8004 -0.0% 8002 -25.0% 6005 ± 33%
interrupts.CPU80.PMI:Performance_monitoring_interrupts
314.67 ± 3% +0.3% 315.50 ± 4% -2.2% 307.75
interrupts.CPU80.RES:Rescheduling_interrupts
3130 ± 3% -2.7% 3046 ± 2% -1.5% 3082 ± 3%
interrupts.CPU80.TLB:TLB_shootdowns
3791 ± 2% +0.9% 3827 +0.1% 3794
interrupts.CPU81.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% -18.2% 1.50 ± 33%
interrupts.CPU81.IWI:IRQ_work_interrupts
562021 ± 17% +7.8% 605639 +7.8% 605760
interrupts.CPU81.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU81.MCP:Machine_check_polls
7337 ± 20% -0.0% 7335 ± 20% -18.2% 6005 ± 33%
interrupts.CPU81.NMI:Non-maskable_interrupts
7337 ± 20% -0.0% 7335 ± 20% -18.2% 6005 ± 33%
interrupts.CPU81.PMI:Performance_monitoring_interrupts
307.83 +2.1% 314.33 ± 4% +0.3% 308.88
interrupts.CPU81.RES:Rescheduling_interrupts
3098 ± 3% +2.1% 3163 ± 3% -0.1% 3094 ± 3%
interrupts.CPU81.TLB:TLB_shootdowns
3805 -1.2% 3759 -0.6% 3782
interrupts.CPU82.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% -18.2% 1.50 ± 33%
interrupts.CPU82.IWI:IRQ_work_interrupts
561664 ± 17% +7.8% 605614 +7.8% 605752
interrupts.CPU82.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU82.MCP:Machine_check_polls
7337 ± 20% -0.0% 7334 ± 20% -18.2% 6005 ± 33%
interrupts.CPU82.NMI:Non-maskable_interrupts
7337 ± 20% -0.0% 7334 ± 20% -18.2% 6005 ± 33%
interrupts.CPU82.PMI:Performance_monitoring_interrupts
308.17 +0.3% 309.17 -0.2% 307.50
interrupts.CPU82.RES:Rescheduling_interrupts
3097 ± 3% -2.1% 3031 ± 2% -0.2% 3090 ± 3%
interrupts.CPU82.TLB:TLB_shootdowns
3807 +0.8% 3837 ± 7% +7.3% 4085 ± 19%
interrupts.CPU83.CAL:Function_call_interrupts
1.67 ± 28% +10.0% 1.83 ± 20% -17.5% 1.38 ± 35%
interrupts.CPU83.IWI:IRQ_work_interrupts
561194 ± 17% +7.9% 605591 +7.9% 605774
interrupts.CPU83.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU83.MCP:Machine_check_polls
6669 ± 28% +10.0% 7333 ± 20% -17.4% 5506 ± 35%
interrupts.CPU83.NMI:Non-maskable_interrupts
6669 ± 28% +10.0% 7333 ± 20% -17.4% 5506 ± 35%
interrupts.CPU83.PMI:Performance_monitoring_interrupts
308.67 +10.6% 341.33 ± 19% +14.5% 353.38 ± 34%
interrupts.CPU83.RES:Rescheduling_interrupts
3097 ± 3% -1.1% 3064 ± 4% +0.1% 3101 ± 3%
interrupts.CPU83.TLB:TLB_shootdowns
3796 -0.9% 3761 -0.2% 3789
interrupts.CPU84.CAL:Function_call_interrupts
1.67 ± 28% +10.0% 1.83 ± 20% +5.0% 1.75 ± 24%
interrupts.CPU84.IWI:IRQ_work_interrupts
561271 ± 17% +7.9% 605618 +7.9% 605776
interrupts.CPU84.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU84.MCP:Machine_check_polls
6668 ± 28% +10.0% 7333 ± 20% +5.0% 7004 ± 24%
interrupts.CPU84.NMI:Non-maskable_interrupts
6668 ± 28% +10.0% 7333 ± 20% +5.0% 7004 ± 24%
interrupts.CPU84.PMI:Performance_monitoring_interrupts
309.33 -0.3% 308.50 -0.6% 307.62
interrupts.CPU84.RES:Rescheduling_interrupts
3098 ± 2% -0.5% 3082 ± 3% +0.0% 3099 ± 2%
interrupts.CPU84.TLB:TLB_shootdowns
3806 +1.1% 3848 ± 2% +0.1% 3809 ± 2%
interrupts.CPU85.CAL:Function_call_interrupts
1.67 ± 28% +10.0% 1.83 ± 20% +5.0% 1.75 ± 24%
interrupts.CPU85.IWI:IRQ_work_interrupts
561682 ± 17% +7.8% 605569 +7.9% 605778
interrupts.CPU85.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU85.MCP:Machine_check_polls
6669 ± 28% +9.9% 7333 ± 20% +5.0% 7004 ± 24%
interrupts.CPU85.NMI:Non-maskable_interrupts
6669 ± 28% +9.9% 7333 ± 20% +5.0% 7004 ± 24%
interrupts.CPU85.PMI:Performance_monitoring_interrupts
307.83 +0.6% 309.67 -0.2% 307.25
interrupts.CPU85.RES:Rescheduling_interrupts
3103 ± 3% +1.9% 3161 ± 3% +0.6% 3121 ± 3%
interrupts.CPU85.TLB:TLB_shootdowns
3767 ± 2% +6.1% 3996 ± 11% +0.7% 3795
interrupts.CPU86.CAL:Function_call_interrupts
1.83 ± 20% -9.1% 1.67 ± 28% -4.5% 1.75 ± 24%
interrupts.CPU86.IWI:IRQ_work_interrupts
561952 ± 17% +7.8% 605562 +7.8% 605778
interrupts.CPU86.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU86.MCP:Machine_check_polls
7337 ± 20% -9.1% 6668 ± 28% -4.3% 7018 ± 24%
interrupts.CPU86.NMI:Non-maskable_interrupts
7337 ± 20% -9.1% 6668 ± 28% -4.3% 7018 ± 24%
interrupts.CPU86.PMI:Performance_monitoring_interrupts
308.67 +11.4% 344.00 ± 22% -0.6% 306.88
interrupts.CPU86.RES:Rescheduling_interrupts
3063 ± 3% -0.1% 3061 ± 2% +1.3% 3102 ± 3%
interrupts.CPU86.TLB:TLB_shootdowns
3794 +1.2% 3839 +8.8% 4127 ± 20%
interrupts.CPU87.CAL:Function_call_interrupts
1.83 ± 20% -9.1% 1.67 ± 28% -4.5% 1.75 ± 24%
interrupts.CPU87.IWI:IRQ_work_interrupts
561875 ± 17% +7.8% 605590 +7.8% 605761
interrupts.CPU87.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU87.MCP:Machine_check_polls
7338 ± 20% -9.1% 6668 ± 28% -4.4% 7017 ± 24%
interrupts.CPU87.NMI:Non-maskable_interrupts
7338 ± 20% -9.1% 6668 ± 28% -4.4% 7017 ± 24%
interrupts.CPU87.PMI:Performance_monitoring_interrupts
313.67 ± 4% -1.4% 309.17 +19.6% 375.12 ± 37%
interrupts.CPU87.RES:Rescheduling_interrupts
3067 ± 3% +3.2% 3167 ± 2% +1.1% 3100 ± 3%
interrupts.CPU87.TLB:TLB_shootdowns
3791 -0.8% 3761 -0.3% 3779
interrupts.CPU88.CAL:Function_call_interrupts
1.50 ± 33% +11.1% 1.67 ± 28% +16.7% 1.75 ± 24%
interrupts.CPU88.IWI:IRQ_work_interrupts
561367 ± 17% +7.9% 605589 +7.9% 605795
interrupts.CPU88.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU88.MCP:Machine_check_polls
6005 ± 33% +11.1% 6669 ± 28% +16.9% 7017 ± 24%
interrupts.CPU88.NMI:Non-maskable_interrupts
6005 ± 33% +11.1% 6669 ± 28% +16.9% 7017 ± 24%
interrupts.CPU88.PMI:Performance_monitoring_interrupts
308.50 -0.1% 308.17 -0.3% 307.62
interrupts.CPU88.RES:Rescheduling_interrupts
3097 ± 3% -2.2% 3029 ± 2% -1.0% 3067 ± 3%
interrupts.CPU88.TLB:TLB_shootdowns
3810 +1.1% 3853 -0.7% 3784
interrupts.CPU89.CAL:Function_call_interrupts
1.50 ± 33% +11.1% 1.67 ± 28% +16.7% 1.75 ± 24%
interrupts.CPU89.IWI:IRQ_work_interrupts
561448 ± 17% +7.9% 605543 +7.9% 605763
interrupts.CPU89.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU89.MCP:Machine_check_polls
6005 ± 33% +11.0% 6668 ± 28% +16.9% 7017 ± 24%
interrupts.CPU89.NMI:Non-maskable_interrupts
6005 ± 33% +11.0% 6668 ± 28% +16.9% 7017 ± 24%
interrupts.CPU89.PMI:Performance_monitoring_interrupts
326.67 ± 13% -0.6% 324.83 ± 11% -5.8% 307.88
interrupts.CPU89.RES:Rescheduling_interrupts
3103 ± 3% +2.1% 3168 ± 2% +0.1% 3105 ± 3%
interrupts.CPU89.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU9.30:PCI-MSI.524288-edge.eth0
3745 -2.0% 3671 ± 3% -0.5% 3726 ± 3%
interrupts.CPU9.CAL:Function_call_interrupts
1.83 ± 20% +0.0% 1.83 ± 20% -4.5% 1.75 ± 24%
interrupts.CPU9.IWI:IRQ_work_interrupts
564307 ± 16% +7.3% 605522 +7.4% 605874
interrupts.CPU9.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU9.MCP:Machine_check_polls
7508 ± 20% -0.0% 7506 ± 20% -4.3% 7184 ± 24%
interrupts.CPU9.NMI:Non-maskable_interrupts
7508 ± 20% -0.0% 7506 ± 20% -4.3% 7184 ± 24%
interrupts.CPU9.PMI:Performance_monitoring_interrupts
310.00 +0.2% 310.67 +4.9% 325.12 ± 8%
interrupts.CPU9.RES:Rescheduling_interrupts
2999 ± 3% -0.4% 2986 ± 3% -3.3% 2899 ± 5%
interrupts.CPU9.TLB:TLB_shootdowns
3809 -1.3% 3761 ± 2% -0.4% 3794
interrupts.CPU90.CAL:Function_call_interrupts
1.50 ± 33% +22.2% 1.83 ± 20% +16.7% 1.75 ± 24%
interrupts.CPU90.IWI:IRQ_work_interrupts
561407 ± 17% +7.9% 605503 +7.9% 605779
interrupts.CPU90.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU90.MCP:Machine_check_polls
6004 ± 33% +22.2% 7335 ± 20% +16.9% 7017 ± 24%
interrupts.CPU90.NMI:Non-maskable_interrupts
6004 ± 33% +22.2% 7335 ± 20% +16.9% 7017 ± 24%
interrupts.CPU90.PMI:Performance_monitoring_interrupts
307.33 +1.0% 310.33 -0.1% 307.12
interrupts.CPU90.RES:Rescheduling_interrupts
3105 ± 3% -3.0% 3011 ± 2% -0.3% 3095 ± 3%
interrupts.CPU90.TLB:TLB_shootdowns
3810 +1.1% 3851 -1.8% 3743 ± 4%
interrupts.CPU91.CAL:Function_call_interrupts
1.50 ± 33% +33.3% 2.00 +16.7% 1.75 ± 24%
interrupts.CPU91.IWI:IRQ_work_interrupts
561799 ± 17% +7.8% 605574 +7.8% 605767
interrupts.CPU91.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU91.MCP:Machine_check_polls
6004 ± 33% +33.3% 8001 +16.7% 7004 ± 24%
interrupts.CPU91.NMI:Non-maskable_interrupts
6004 ± 33% +33.3% 8001 +16.7% 7004 ± 24%
interrupts.CPU91.PMI:Performance_monitoring_interrupts
307.33 +0.4% 308.67 +0.4% 308.50
interrupts.CPU91.RES:Rescheduling_interrupts
3112 ± 3% +2.0% 3174 ± 2% -0.5% 3097 ± 3%
interrupts.CPU91.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU92.128:PCI-MSI.23593045-edge.nvme0q85
3800 -1.0% 3761 -1.2% 3754 ± 2%
interrupts.CPU92.CAL:Function_call_interrupts
1.67 ± 28% +20.0% 2.00 +5.0% 1.75 ± 24%
interrupts.CPU92.IWI:IRQ_work_interrupts
561558 ± 17% +7.8% 605560 +7.9% 605761
interrupts.CPU92.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU92.MCP:Machine_check_polls
6672 ± 28% +19.9% 8002 +5.0% 7004 ± 24%
interrupts.CPU92.NMI:Non-maskable_interrupts
6672 ± 28% +19.9% 8002 +5.0% 7004 ± 24%
interrupts.CPU92.PMI:Performance_monitoring_interrupts
307.33 +0.1% 307.50 +0.1% 307.50
interrupts.CPU92.RES:Rescheduling_interrupts
3108 ± 3% -2.4% 3033 ± 2% -1.0% 3078 ± 3%
interrupts.CPU92.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU93.149:PCI-MSI.23593046-edge.nvme0q86
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU93.165:PCI-MSI.23593046-edge.nvme0q86
3792 +0.4% 3807 +0.2% 3801
interrupts.CPU93.CAL:Function_call_interrupts
1.67 ± 28% +20.0% 2.00 +12.5% 1.88 ± 17%
interrupts.CPU93.IWI:IRQ_work_interrupts
561604 ± 17% +7.8% 605591 +7.9% 605797
interrupts.CPU93.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU93.MCP:Machine_check_polls
6673 ± 28% +19.9% 8003 +12.6% 7515 ± 17%
interrupts.CPU93.NMI:Non-maskable_interrupts
6673 ± 28% +19.9% 8003 +12.6% 7515 ± 17%
interrupts.CPU93.PMI:Performance_monitoring_interrupts
307.33 +0.4% 308.50 +0.9% 310.25 ± 2%
interrupts.CPU93.RES:Rescheduling_interrupts
3076 ± 3% +2.0% 3138 ± 3% +0.9% 3104 ± 3%
interrupts.CPU93.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU94.130:PCI-MSI.23593047-edge.nvme0q87
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU94.137:PCI-MSI.23593047-edge.nvme0q87
3792 -0.4% 3777 +0.4% 3807 ± 2%
interrupts.CPU94.CAL:Function_call_interrupts
1.83 ± 20% +9.1% 2.00 -4.5% 1.75 ± 24%
interrupts.CPU94.IWI:IRQ_work_interrupts
561397 ± 17% +7.9% 605543 +7.9% 605773
interrupts.CPU94.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU94.MCP:Machine_check_polls
7340 ± 20% +9.0% 8002 -4.6% 7003 ± 24%
interrupts.CPU94.NMI:Non-maskable_interrupts
7340 ± 20% +9.0% 8002 -4.6% 7003 ± 24%
interrupts.CPU94.PMI:Performance_monitoring_interrupts
308.67 +1.3% 312.67 ± 4% +0.6% 310.62 ± 3%
interrupts.CPU94.RES:Rescheduling_interrupts
3110 ± 3% -2.4% 3036 ± 2% -0.2% 3103 ± 3%
interrupts.CPU94.TLB:TLB_shootdowns
4303 ± 29% -12.4% 3770 -13.5% 3721 ± 2%
interrupts.CPU95.CAL:Function_call_interrupts
1.83 ± 37% +100.0% 3.67 ± 30% +50.0% 2.75 ± 39%
interrupts.CPU95.IWI:IRQ_work_interrupts
561234 ± 17% +7.9% 605581 +8.0% 605952
interrupts.CPU95.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU95.MCP:Machine_check_polls
6003 ± 33% +33.5% 8017 +16.8% 7009 ± 24%
interrupts.CPU95.NMI:Non-maskable_interrupts
6003 ± 33% +33.5% 8017 +16.8% 7009 ± 24%
interrupts.CPU95.PMI:Performance_monitoring_interrupts
416.67 ± 55% -24.4% 315.17 ± 2% -24.9% 312.75
interrupts.CPU95.RES:Rescheduling_interrupts
3062 ± 5% +1.6% 3111 ± 3% +2.1% 3126 ± 2%
interrupts.CPU95.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU96.145:PCI-MSI.23593057-edge.nvme0q97
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU96.147:PCI-MSI.23593057-edge.nvme0q97
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU96.157:PCI-MSI.23593057-edge.nvme0q97
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU96.176:PCI-MSI.77824-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU96.176:PCI-MSI.79872-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU96.46:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU96.47:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU96.48:PCI-MSI.79872-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU96.52:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU96.53:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU96.56:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU96.60:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU96.62:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU96.64:PCI-MSI.23592960-edge.nvme0q0
13443 ± 20% +0.5% 13511 ± 10% +4.3% 14021 ± 21%
interrupts.CPU96.CAL:Function_call_interrupts
2.67 ± 17% +0.0% 2.67 ± 17% +7.8% 2.88 ± 11%
interrupts.CPU96.IWI:IRQ_work_interrupts
565798 ± 15% +7.0% 605647 +7.1% 605892
interrupts.CPU96.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU96.MCP:Machine_check_polls
6828 ± 28% -0.1% 6819 ± 28% +5.2% 7181 ± 24%
interrupts.CPU96.NMI:Non-maskable_interrupts
6828 ± 28% -0.1% 6819 ± 28% +5.2% 7181 ± 24%
interrupts.CPU96.PMI:Performance_monitoring_interrupts
377.83 ± 15% +28.3% 484.83 ± 58% -3.9% 363.00 ± 14%
interrupts.CPU96.RES:Rescheduling_interrupts
2838 ± 6% +0.8% 2859 ± 7% +2.2% 2901 ± 5%
interrupts.CPU96.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU97.146:PCI-MSI.23593058-edge.nvme0q98
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU97.158:PCI-MSI.23593058-edge.nvme0q98
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU97.161:PCI-MSI.23593058-edge.nvme0q98
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU97.177:PCI-MSI.79872-edge.ioat-msix
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU97.64:PCI-MSI.23592960-edge.nvme0q0
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU97.78:PCI-MSI.23592960-edge.nvme0q0
7825 ± 23% -11.8% 6899 ± 19% -22.8% 6039 ± 24%
interrupts.CPU97.CAL:Function_call_interrupts
2.33 ± 20% +14.3% 2.67 ± 17% +17.9% 2.75 ± 15%
interrupts.CPU97.IWI:IRQ_work_interrupts
564131 ± 16% +7.4% 605632 +7.4% 605976
interrupts.CPU97.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU97.MCP:Machine_check_polls
6145 ± 33% +11.0% 6819 ± 28% +25.2% 7694 ± 17%
interrupts.CPU97.NMI:Non-maskable_interrupts
6145 ± 33% +11.0% 6819 ± 28% +25.2% 7694 ± 17%
interrupts.CPU97.PMI:Performance_monitoring_interrupts
398.33 ± 7% +1.3% 403.50 ± 8% +5.5% 420.38 ± 15%
interrupts.CPU97.RES:Rescheduling_interrupts
2788 ± 3% -1.7% 2740 -0.8% 2765 ± 4%
interrupts.CPU97.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU98.147:PCI-MSI.23593059-edge.nvme0q99
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU98.156:PCI-MSI.23593059-edge.nvme0q99
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU98.163:PCI-MSI.23593059-edge.nvme0q99
5321 ± 23% -14.6% 4542 ± 22% -0.5% 5292 ± 25%
interrupts.CPU98.CAL:Function_call_interrupts
1.50 ± 33% +11.1% 1.67 ± 28% +25.0% 1.88 ± 17%
interrupts.CPU98.IWI:IRQ_work_interrupts
564374 ± 16% +7.3% 605519 +7.4% 605929
interrupts.CPU98.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU98.MCP:Machine_check_polls
6145 ± 33% +11.0% 6822 ± 28% +25.2% 7697 ± 17%
interrupts.CPU98.NMI:Non-maskable_interrupts
6145 ± 33% +11.0% 6822 ± 28% +25.2% 7697 ± 17%
interrupts.CPU98.PMI:Performance_monitoring_interrupts
491.17 ± 24% -19.7% 394.33 ± 19% +8.2% 531.25 ± 30%
interrupts.CPU98.RES:Rescheduling_interrupts
2892 ± 5% +1.2% 2928 ± 5% -1.4% 2852 ± 5%
interrupts.CPU98.TLB:TLB_shootdowns
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU99.143:PCI-MSI.23593060-edge.nvme0q100
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU99.144:PCI-MSI.23593060-edge.nvme0q100
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.CPU99.150:PCI-MSI.23593060-edge.nvme0q100
3703 +12.5% 4165 ± 16% +1.9% 3774 ± 2%
interrupts.CPU99.CAL:Function_call_interrupts
1.33 ± 35% +25.0% 1.67 ± 28% +50.0% 2.00 ± 25%
interrupts.CPU99.IWI:IRQ_work_interrupts
563589 ± 16% +7.4% 605502 +7.5% 605873
interrupts.CPU99.LOC:Local_timer_interrupts
1.00 +0.0% 1.00 +0.0% 1.00
interrupts.CPU99.MCP:Machine_check_polls
5461 ± 35% +24.9% 6821 ± 28% +40.9% 7696 ± 17%
interrupts.CPU99.NMI:Non-maskable_interrupts
5461 ± 35% +24.9% 6821 ± 28% +40.9% 7696 ± 17%
interrupts.CPU99.PMI:Performance_monitoring_interrupts
863.17 ±138% -54.9% 389.50 ± 26% -55.5% 383.75 ± 26%
interrupts.CPU99.RES:Rescheduling_interrupts
2835 ± 4% +1.7% 2883 ± 4% +1.4% 2875 ± 4%
interrupts.CPU99.TLB:TLB_shootdowns
402.67 ± 5% +2.5% 412.67 ± 2% +4.6% 421.38 ± 7%
interrupts.IWI:IRQ_work_interrupts
1.083e+08 ± 16% +7.3% 1.163e+08 +7.4% 1.163e+08
interrupts.LOC:Local_timer_interrupts
192.00 +0.0% 192.00 +0.0% 192.00
interrupts.MCP:Machine_check_polls
1436687 ± 6% +1.8% 1463114 ± 2% +2.6% 1474090 ± 6%
interrupts.NMI:Non-maskable_interrupts
1436687 ± 6% +1.8% 1463114 ± 2% +2.6% 1474090 ± 6%
interrupts.PMI:Performance_monitoring_interrupts
66401 -0.5% 66077 -0.3% 66175 ± 2%
interrupts.RES:Rescheduling_interrupts
0.00 -100.0% 0.00 -100.0% 0.00
interrupts.RTR:APIC_ICR_read_retries
576474 -0.1% 575678 -0.3% 574989
interrupts.TLB:TLB_shootdowns
>
> diff --git a/include/linux/secretmem.h b/include/linux/secretmem.h
> index 907a6734059c..a3541362431f 100644
> --- a/include/linux/secretmem.h
> +++ b/include/linux/secretmem.h
> @@ -4,8 +4,19 @@
>
> #ifdef CONFIG_SECRETMEM
>
> +extern const struct address_space_operations secretmem_aops;
> +
> +static inline bool page_is_secretmem(struct page *page)
> +{
> + struct address_space *mapping = page_mapping(page);
> +
> + if (!mapping)
> + return false;
> +
> + return mapping->a_ops == &secretmem_aops;
> +}
> +
> bool vma_is_secretmem(struct vm_area_struct *vma);
> -bool page_is_secretmem(struct page *page);
> bool secretmem_active(void);
>
> #else
> diff --git a/mm/secretmem.c b/mm/secretmem.c
> index f2ae3f32a193..cfdb6d9a213d 100644
> --- a/mm/secretmem.c
> +++ b/mm/secretmem.c
> @@ -151,22 +151,12 @@ static void secretmem_freepage(struct page *page)
> clear_highpage(page);
> }
>
> -static const struct address_space_operations secretmem_aops = {
> +const struct address_space_operations secretmem_aops = {
> .freepage = secretmem_freepage,
> .migratepage = secretmem_migratepage,
> .isolate_page = secretmem_isolate_page,
> };
>
> -bool page_is_secretmem(struct page *page)
> -{
> - struct address_space *mapping = page_mapping(page);
> -
> - if (!mapping)
> - return false;
> -
> - return mapping->a_ops == &secretmem_aops;
> -}
> -
> static struct vfsmount *secretmem_mnt;
>
> static struct file *secretmem_file_create(unsigned long flags)
>
>
> >
> > Details are as below:
> >
-------------------------------------------------------------------------------------------------->
> >
> >
> > To reproduce:
> >
> > git clone
https://github.com/intel/lkp-tests.git
> > cd lkp-tests
> > bin/lkp install job.yaml # job file is attached in this
email
> > bin/lkp split-job --compatible job.yaml
> > bin/lkp run compatible-job.yaml
> >
> >
=========================================================================================
> >
compiler/cpufreq_governor/kconfig/mode/nr_task/rootfs/tbox_group/test/testcase/ucode:
> >
gcc-9/performance/x86_64-rhel-8.3/thread/100%/debian-10.4-x86_64-20200603.cgz/lkp-csl-2ap2/futex1/will-it-scale/0x5003006
> >
> > commit:
> > 043463bfe8 ("set_memory: allow querying whether set_direct_map_*() is
actually enabled")
> > 81a779a1a4 ("mm: introduce memfd_secret system call to create
"secret" memory areas")
> >
> > "/lkp/benchmarks/python3/bin/python3" "./runtest.py"
"futex1" "295" "thread" "192"
>
>
> --
> Sincerely yours,
> Mike.