summaryrefslogtreecommitdiff
path: root/hosts/iroha/scripts/iommu-groups
blob: 217d1e225e92cb918a0705971f32c44a30bb6692 (plain)
1
2
3
4
5
6
#! /usr/bin/env bash
for d in /sys/kernel/iommu_groups/*/devices/*; do
  n=${d#*/iommu_groups/*}; n=${n%%/*}
  printf 'IOMMU Group %s ' "$n"
  lspci -nns "${d##*/}"
done