summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorMenno Lageman <menno.lageman@oracle.com>2020-07-07 09:55:53 +0200
committerCole Robinson <crobinso@redhat.com>2020-07-12 09:15:52 -0400
commit25419db9caf0e45578e98d85af096fab52a3c7cc (patch)
treef73293d69804213208590c6d9ed8aa09be4d55bb /man
parent4eb7834c6e20360af02fb52da594c338112b542c (diff)
downloadvirt-manager-25419db9caf0e45578e98d85af096fab52a3c7cc.tar.gz
virtinst: add support for configuring the IOMMU
Add a --iommu option to configure IOMMU parameters as described in https://libvirt.org/formatdomain.html#elementsIommu E.g. 'virt-install --iommu model=intel,driver.aw_bits=48,driver.iotlb=on ...' will generate the following domain XML: <devices> <iommu model="intel"> <driver aw_bits="48" iotlb="on"/> </iommu> </devices> Reviewed-by: Cole Robinson <crobinso@redhat.com> Signed-off-by: Menno Lageman <menno.lageman@oracle.com>
Diffstat (limited to 'man')
-rw-r--r--man/virt-install.pod6
1 files changed, 6 insertions, 0 deletions
diff --git a/man/virt-install.pod b/man/virt-install.pod
index bc9f3e53..058b9364 100644
--- a/man/virt-install.pod
+++ b/man/virt-install.pod
@@ -1814,6 +1814,12 @@ Configure a vsock host/guest interface. A typical configuration would be
Use --vsock=? to see a list of all available sub options. Complete details at L<https://libvirt.org/formatdomain.html#vsock>.
+=item B<--iommu> MODEL[,OPTS]
+
+Add an IOMMU device to the guest.
+
+Use --iommu=? to see a list of all available options. Complete details at L<https://libvirt.org/formatdomain.html#elementsIommu>.
+
=back