-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Iommu update for Rocky Linux 9 #21
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
- name: Regenerate initramfs | ||
ansible.builtin.shell: |- | ||
#!/bin/bash | ||
set -eux | ||
dracut -v -f /boot/initramfs-$(uname -r).img $(uname -r) | ||
become: true | ||
changed_when: true |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,44 @@ | ||
--- | ||
- name: Template dracut config for vfio | ||
ansible.builtin.blockinfile: | ||
path: /etc/dracut.conf.d/gpu-vfio.conf | ||
block: | | ||
add_drivers+="vfio vfio_iommu_type1 vfio_pci vfio_virqfd" | ||
owner: root | ||
group: root | ||
mode: "0660" | ||
create: true | ||
become: true | ||
when: iommu_vfio_pci_ids is defined | ||
notify: | ||
- Regenerate initramfs | ||
- reboot | ||
|
||
- name: Add vfio to modules-load.d | ||
ansible.builtin.blockinfile: | ||
path: /etc/modules-load.d/vfio.conf | ||
block: | | ||
vfio | ||
vfio_iommu_type1 | ||
vfio_pci | ||
vfio_virqfd | ||
owner: root | ||
group: root | ||
mode: "0664" | ||
create: true | ||
become: true | ||
when: iommu_vfio_pci_ids is defined | ||
notify: reboot | ||
|
||
- name: Add iommu to kernel command line (Intel) | ||
ansible.builtin.include_role: | ||
name: stackhpc.linux.grubcmdline | ||
vars: | ||
kernel_cmdline: # noqa: var-naming[no-role-prefix] | ||
- intel_iommu=on | ||
kernel_cmdline: "{{ ['intel_iommu=on'] + (['vfio-pci.ids=' + iommu_vfio_pci_ids] if iommu_vfio_pci_ids is defined else []) }}" # noqa: var-naming[no-role-prefix] | ||
kernel_cmdline_remove: # noqa: var-naming[no-role-prefix] | ||
- ^intel_iommu= | ||
when: "'Intel' in ansible_facts.processor.0" | ||
- ^vfio-pci\.ids= | ||
when: ansible_facts.processor | select('search', 'Intel') | list | length > 0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also I am not sure how the previous
So There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I tested with different Ansible versions for Yoga and for 2023.1. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. cpu_facts come from /proc/cpuinfo - I've seen it returning 0 in the first line and GenuineIntel in the first line, maybe there was some bug in the past that caused lack of '0' in the first line |
||
|
||
- name: Set iommu=pt | ||
ansible.builtin.include_role: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to be careful not to break ubuntu
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://help.ubuntu.com/community/Update%20the%20Ramdisk