From ba373e1191cd8325cfde96e08e3a1d0e72815ff3 Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Tue, 20 Feb 2018 12:43:54 +0100 Subject: CSIT-891: Add data sources for 1801 report Change-Id: Ifd1bcbf376e9eff9afbb578d88df377ba301cafa Signed-off-by: Tibor Frank (cherry picked from commit 3c5428b13bdf28774922b3abe370f23e3ccc5ead) --- .../test_environment_sut_conf_3.rst | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 docs/report/vpp_performance_tests/test_environment_sut_conf_3.rst (limited to 'docs/report/vpp_performance_tests/test_environment_sut_conf_3.rst') diff --git a/docs/report/vpp_performance_tests/test_environment_sut_conf_3.rst b/docs/report/vpp_performance_tests/test_environment_sut_conf_3.rst new file mode 100644 index 0000000000..e50a08eb98 --- /dev/null +++ b/docs/report/vpp_performance_tests/test_environment_sut_conf_3.rst @@ -0,0 +1,27 @@ + +**Host IRQ affinity** + +Changing the default pinning of every IRQ to core 0. (Same does apply on both +guest VM and host OS) + +:: + + $ for l in `ls /proc/irq`; do echo 1 | sudo tee /proc/irq/$l/smp_affinity; done + +**Host RCU affinity** + +Changing the default pinning of RCU to core 0. (Same does apply on both guest VM +and host OS) + +:: + + $ for i in `pgrep rcu[^c]` ; do sudo taskset -pc 0 $i ; done + +**Host Writeback affinity** + +Changing the default pinning of writebacks to core 0. (Same does apply on both +guest VM and host OS) + +:: + + $ echo 1 | sudo tee /sys/bus/workqueue/devices/writeback/cpumask -- cgit 1.2.3-korg