aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/testbed-setup/ansible/roles/tg_sut/tasks/x86_64.yaml
blob: e5a2ad3c7a16fec58d8be9ffa6ec9d9a465692a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
# file: roles/tg_sut/tasks/x86_64.yaml

- name: Configure x86_64 kernel parameters
  lineinfile:
    path: '/etc/default/grub'
    state: 'present'
    regexp: '^GRUB_CMDLINE_LINUX='
    line: 'GRUB_CMDLINE_LINUX="isolcpus={{ grub.isolcpus }} nohz_full={{ grub.nohz_full }} rcu_nocbs={{ grub.rcu_nocbs }} 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"'
  notify: ['Update GRUB']
  tags: set-grub

- name: Load msr by default
  lineinfile:
    path: '/etc/modules'
    state: 'present'
    line: 'msr'
  tags: disable-turbo-boost