Update report doc for rls1807
[csit.git] / docs / report / introduction / test_environment_sut_conf_1.rst
1 SUT Configuration - Host OS Linux
2 ---------------------------------
3
4 System provisioning is done by combination of PXE boot unattented
5 install and
6 `Ansible <https://www.ansible.com>`_ described in `CSIT Testbed Setup`_.
7
8 Below a subset of the running configuration:
9
10 #. Haswell - Ubuntu 16.04.1 LTS
11
12 ::
13
14     $ lsb_release -a
15     No LSB modules are available.
16     Distributor ID:     Ubuntu
17     Description:        Ubuntu 16.04.1 LTS
18     Release:    16.04
19     Codename:   xenial
20
21 #. Skylake - Ubuntu 18.04 LTS
22
23 ::
24
25     $ lsb_release -a
26     No LSB modules are available.
27     Distributor ID: Ubuntu
28     Description:    Ubuntu 18.04 LTS
29     Release:        18.04
30     Codename:       bionic
31
32 **Kernel boot parameters used in CSIT performance testbeds**
33
34 - **isolcpus=<cpu number>-<cpu number>** used for all cpu cores apart from
35   first core of each socket used for running VPP worker threads and Qemu/LXC
36   processes
37   https://www.kernel.org/doc/Documentation/admin-guide/kernel-parameters.txt
38 - **intel_pstate=disable** - [X86] Do not enable intel_pstate as the default
39   scaling driver for the supported processors. Intel P-State driver decide what
40   P-state (CPU core power state) to use based on requesting policy from the
41   cpufreq core. [X86 - Either 32-bit or 64-bit x86]
42   https://www.kernel.org/doc/Documentation/cpu-freq/intel-pstate.txt
43 - **nohz_full=<cpu number>-<cpu number>** - [KNL,BOOT] In kernels built with
44   CONFIG_NO_HZ_FULL=y, set the specified list of CPUs whose tick will be stopped
45   whenever possible. The boot CPU will be forced outside the range to maintain
46   the timekeeping. The CPUs in this range must also be included in the
47   rcu_nocbs= set. Specifies the adaptive-ticks CPU cores, causing kernel to
48   avoid sending scheduling-clock interrupts to listed cores as long as they have
49   a single runnable task. [KNL - Is a kernel start-up parameter, SMP - The
50   kernel is an SMP kernel].
51   https://www.kernel.org/doc/Documentation/timers/NO_HZ.txt
52 - **rcu_nocbs** - [KNL] In kernels built with CONFIG_RCU_NOCB_CPU=y, set the
53   specified list of CPUs to be no-callback CPUs, that never queue RCU callbacks
54   (read-copy update).
55   https://www.kernel.org/doc/Documentation/admin-guide/kernel-parameters.txt
56 - **numa_balancing=disable** - [KNL,X86] Disable automatic NUMA balancing.
57 - **intel_iommu=enable** - [DMAR] Enable Intel IOMMU driver (DMAR) option.
58 - **iommu=on, iommu=pt** - [x86, IA-64] Disable IOMMU bypass, using IOMMU for
59   PCI devices.
60 - **nmi_watchdog=0** - [KNL,BUGS=X86] Debugging features for SMP kernels. Turn
61   hardlockup detector in nmi_watchdog off.
62 - **nosoftlockup** - [KNL] Disable the soft-lockup detector.
63 - **tsc=reliable** - Disable clocksource stability checks for TSC.
64   [x86] reliable: mark tsc clocksource as reliable, this disables clocksource
65   verification at runtime, as well as the stability checks done at bootup.
66   Used to enable high-resolution timer mode on older hardware, and in
67   virtualized environment.
68 - **hpet=disable** - [X86-32,HPET] Disable HPET and use PIT instead.
69
70 **Applied command line boot parameters:**
71
72 #. Haswell - Ubuntu 16.04.1 LTS
73
74 ::
75
76     $ cat /proc/cmdline
77     BOOT_IMAGE=/vmlinuz-4.4.0-72-generic root=UUID=35ea11e4-e44f-4f67-8cbe-12f09c49ed90 ro isolcpus=1-17,19-35 nohz_full=1-17,19-35 rcu_nocbs=1-17,19-35 intel_pstate=disable console=tty0 console=ttyS0,115200n8
78
79 #. Skylake - Ubuntu 18.04 LTS
80
81 ::
82
83     $ cat /proc/cmdline
84     BOOT_IMAGE=/vmlinuz-4.15.0-23-generic root=UUID=3fa246fd-1b80-4361-bb90-f339a6bbed51 ro isolcpus=1-27,29-55,57-83,85-111 nohz_full=1-27,29-55,57-83,85-111 rcu_nocbs=1-27,29-55,57-83,85-111 numa_balancing=disable intel_pstate=disable intel_iommu=on iommu=pt nmi_watchdog=0 audit=0 nosoftlockup processor.max_cstate=1 intel_idle.max_cstate=1 hpet=disable tsc=reliable mce=off console=tty0 console=ttyS0,115200n8
85
86