diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-12-10 03:52:12 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-12-10 03:52:12 +0300 |
commit | 6764e5ebd5c62236d082f9ae030674467d0b2779 (patch) | |
tree | 8bdaff91e3a463d9c84337eb614d336f17fe6d33 /include/linux | |
parent | eef121f407f727a8c34d8284f9b954828d2cb5ce (diff) | |
parent | ae5515d66362b9d96cdcfce504567f0b8b7bd83e (diff) | |
download | linux-6764e5ebd5c62236d082f9ae030674467d0b2779.tar.xz |
Merge tag 'vfio-v4.4-rc5' of git://github.com/awilliam/linux-vfio
Pull VFIO fixes from Alex Williamson:
- Various fixes for removing redundancy, const'ifying structs, avoiding
stack usage, fixing WARN usage (Krzysztof Kozlowski, Julia Lawall,
Kees Cook, Dan Carpenter)
- Revert No-IOMMU mode as the intended user has not emerged (Alex
Williamson)
* tag 'vfio-v4.4-rc5' of git://github.com/awilliam/linux-vfio:
Revert: "vfio: Include No-IOMMU mode"
vfio: fix a warning message
vfio: platform: remove needless stack usage
vfio-pci: constify pci_error_handlers structures
vfio: Drop owner assignment from platform_driver
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/vfio.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/vfio.h b/include/linux/vfio.h index 610a86a892b8..ddb440975382 100644 --- a/include/linux/vfio.h +++ b/include/linux/vfio.h @@ -44,9 +44,6 @@ struct vfio_device_ops { void (*request)(void *device_data, unsigned int count); }; -extern struct iommu_group *vfio_iommu_group_get(struct device *dev); -extern void vfio_iommu_group_put(struct iommu_group *group, struct device *dev); - extern int vfio_add_group_dev(struct device *dev, const struct vfio_device_ops *ops, void *device_data); |