Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save johnsimcall/e0571a6997693bf798e9d0801522ee19 to your computer and use it in GitHub Desktop.
Save johnsimcall/e0571a6997693bf798e9d0801522ee19 to your computer and use it in GitHub Desktop.
iommu groups
#!/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;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment