quickpassthrough/utils/ls-iommu

8 lines
320 B
Text
Raw Normal View History

2022-02-26 12:25:34 -05:00
#!/bin/bash
# Script from Wendell from Level1Tech
# Originally from here: https://forum.level1techs.com/t/ubuntu-17-04-vfio-pcie-passthrough-kernel-update-4-14-rc1/119639
for d in /sys/kernel/iommu_groups/*/devices/*; do
n=${d#*/iommu_groups/*}; n=${n%%/*}
printf 'IOMMU Group %s: ' "$n"
2022-02-26 12:25:34 -05:00
lspci -nns "${d##*/}"
done