aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/vfio.txt
diff options
context:
space:
mode:
authorAlexey Kardashevskiy <aik@ozlabs.ru>2013-06-21 11:43:21 -0400
committerAlex Williamson <alex.williamson@redhat.com>2013-06-21 11:43:21 -0400
commitb0e59b85abd42f8a525ff032d5063457e1378808 (patch)
treec06c808c7994d15b0e18da578feda81edaf33e1b /Documentation/vfio.txt
parent5c6c2b21ecc9adfc47cfaf93404937b6ecd8395d (diff)
vfio: fix documentation
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru> Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'Documentation/vfio.txt')
-rw-r--r--Documentation/vfio.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/vfio.txt b/Documentation/vfio.txt
index 8eda3635a17d..e71782a4f2a4 100644
--- a/Documentation/vfio.txt
+++ b/Documentation/vfio.txt
@@ -172,12 +172,12 @@ group and can access them as follows:
172 struct vfio_device_info device_info = { .argsz = sizeof(device_info) }; 172 struct vfio_device_info device_info = { .argsz = sizeof(device_info) };
173 173
174 /* Create a new container */ 174 /* Create a new container */
175 container = open("/dev/vfio/vfio, O_RDWR); 175 container = open("/dev/vfio/vfio", O_RDWR);
176 176
177 if (ioctl(container, VFIO_GET_API_VERSION) != VFIO_API_VERSION) 177 if (ioctl(container, VFIO_GET_API_VERSION) != VFIO_API_VERSION)
178 /* Unknown API version */ 178 /* Unknown API version */
179 179
180 if (!ioctl(container, VFIO_CHECK_EXTENSION, VFIO_X86_IOMMU)) 180 if (!ioctl(container, VFIO_CHECK_EXTENSION, VFIO_TYPE1_IOMMU))
181 /* Doesn't support the IOMMU driver we want. */ 181 /* Doesn't support the IOMMU driver we want. */
182 182
183 /* Open the group */ 183 /* Open the group */
@@ -193,7 +193,7 @@ group and can access them as follows:
193 ioctl(group, VFIO_GROUP_SET_CONTAINER, &container); 193 ioctl(group, VFIO_GROUP_SET_CONTAINER, &container);
194 194
195 /* Enable the IOMMU model we want */ 195 /* Enable the IOMMU model we want */
196 ioctl(container, VFIO_SET_IOMMU, VFIO_X86_IOMMU) 196 ioctl(container, VFIO_SET_IOMMU, VFIO_TYPE1_IOMMU)
197 197
198 /* Get addition IOMMU info */ 198 /* Get addition IOMMU info */
199 ioctl(container, VFIO_IOMMU_GET_INFO, &iommu_info); 199 ioctl(container, VFIO_IOMMU_GET_INFO, &iommu_info);