CSIT-891: Add data sources for 1801 report
[csit.git] / docs / report / vpp_performance_tests / test_environment_sut_conf_3.rst
1
2 **Host IRQ affinity**
3
4 Changing the default pinning of every IRQ to core 0. (Same does apply on both
5 guest VM and host OS)
6
7 ::
8
9     $ for l in `ls /proc/irq`; do echo 1 | sudo tee /proc/irq/$l/smp_affinity; done
10
11 **Host RCU affinity**
12
13 Changing the default pinning of RCU to core 0. (Same does apply on both guest VM
14 and host OS)
15
16 ::
17
18     $ for i in `pgrep rcu[^c]` ; do sudo taskset -pc 0 $i ; done
19
20 **Host Writeback affinity**
21
22 Changing the default pinning of writebacks to core 0. (Same does apply on both
23 guest VM and host OS)
24
25 ::
26
27     $ echo 1 | sudo tee /sys/bus/workqueue/devices/writeback/cpumask