I've been out of the scene a long time, but recognised your name. Most of my time Makoto was doing l
I've been out of the scene a long time, but recognised your name. Most of my time Makoto was doing linux support


#!/bin/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