xref: /qemu/hw/vfio-user/container.h (revision 9fca2b7d702f7ba216c571504922b2f8994537cc)
1 /*
2  * vfio-user specific definitions.
3  *
4  * SPDX-License-Identifier: GPL-2.0-or-later
5  */
6 
7 #ifndef HW_VFIO_USER_CONTAINER_H
8 #define HW_VFIO_USER_CONTAINER_H
9 
10 #include "qemu/osdep.h"
11 
12 #include "hw/vfio/vfio-container-base.h"
13 
14 /* MMU container sub-class for vfio-user. */
15 typedef struct VFIOUserContainer {
16     VFIOContainerBase bcontainer;
17 } VFIOUserContainer;
18 
19 OBJECT_DECLARE_SIMPLE_TYPE(VFIOUserContainer, VFIO_IOMMU_USER);
20 
21 #endif /* HW_VFIO_USER_CONTAINER_H */
22