75526eb1982545ce19bd2ad4eb65841ed5564d96
[yardstick.git] / ansible / roles / enable_hugepages_on_boot / tasks / main.yml
1 # Copyright (c) 2017 Intel Corporation
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 ---
15 - name: check if hugepages are set by this role
16   command: "grep -o '{{ hugepage_param_regex }}' /etc/default/grub"
17   register: is_mine_huge
18   ignore_errors: True
19
20 # won't work in chroot
21 #- name: Detect EFI
22 #  stat: path="/sys/firmware/efi"
23 #  register: efi
24
25 - name: check if hugepages are set by someone else
26   command: "grep -o 'default_hugepagesz=' /etc/default/grub"
27   register: is_huge
28   ignore_errors: True
29
30 - fail:
31     msg: "Hugepages already set by someone else"
32   when: is_mine_huge.stdout == "" and is_huge.stdout != ""
33
34 - name: configure hugepages as idempotent block
35   block:
36     - name: use 8 for auto num_hugepages and 1G size
37       set_fact:
38         num_hugepages: 8
39       when: num_hugepages|default("auto") == "auto"
40
41     - name: set hugepages in grub
42       lineinfile:
43         dest: /etc/default/grub
44         regexp: '{{ hugepage_param_regex }}'
45         line: '{{ hugepage_param }}'
46         state: present
47
48     - name: create hugetables mount
49       file:
50         path: "{{ hugetable_mount }}"
51         state: directory
52
53     - name: mount hugetlbfs
54       mount:
55         name: "{{ hugetable_mount }}"
56         src: nodev
57         fstype: hugetlbfs
58         state: present
59
60     - service:
61         name: procps
62         enabled: yes
63
64     - include: manual_modify_grub.yml
65       # only tested on Ubuntu, kernel line is probably different on other distros
66       when: ansible_distribution == "Ubuntu"
67   when: is_mine_huge.stdout == ""