summaryrefslogtreecommitdiff
path: root/scripts/iommu.sh
blob: d971665e964c3634b7795909624c573057eb5859 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
shopt -s nullglob
for g in $(find /sys/kernel/iommu_groups/* -maxdepth 0 -type d | sort -V); do
    echo "IOMMU Group ${g##*/}:"
    for d in $g/devices/*; do
        echo -e "\t$(lspci $@ -nns ${d##*/})"
    done;
done;