summaryrefslogtreecommitdiff
path: root/iommu_group
blob: 9757a85cc8e6f4ded8f48a741cf35ce96dcc84a7 (plain)
1
2
3
4
5
#!/bin/sh

echo $(dirname $0)

for d in /sys/kernel/iommu_groups/*/devices/*; do n=${d#*/iommu_groups/*}; n=${n%%/*}; printf 'IOMMU Group %s ' "$n"; lspci -nns "${d##*/}"; done;