aboutsummaryrefslogtreecommitdiff
path: root/include/vfio-user.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/vfio-user.h')
-rw-r--r--include/vfio-user.h25
1 files changed, 13 insertions, 12 deletions
diff --git a/include/vfio-user.h b/include/vfio-user.h
index f6cd75a..3994abc 100644
--- a/include/vfio-user.h
+++ b/include/vfio-user.h
@@ -107,13 +107,21 @@ struct vfio_user_device_info {
uint32_t num_irqs;
} __attribute__((packed));
+/* based on struct vfio_bitmap */
+struct vfio_user_bitmap {
+ uint64_t pgsize;
+ uint64_t size;
+ char data[];
+} __attribute__((packed));
+
struct vfio_user_dma_region {
- uint64_t addr;
- uint64_t size;
- uint64_t offset;
- uint32_t prot;
- uint32_t flags;
+ uint64_t addr;
+ uint64_t size;
+ uint64_t offset;
+ uint32_t prot;
#define VFIO_USER_F_DMA_REGION_MAPPABLE (1 << 0)
+ uint32_t flags;
+ struct vfio_user_bitmap bitmap[];
} __attribute__((packed));
struct vfio_user_region_access {
@@ -133,13 +141,6 @@ struct vfio_user_irq_info {
uint32_t subindex;
} __attribute__((packed));
-/* based on struct vfio_bitmap */
-struct vfio_user_bitmap {
- uint64_t pgsize;
- uint64_t size;
- char data[];
-} __attribute__((packed));
-
/* based on struct vfio_iommu_type1_dirty_bitmap_get */
struct vfio_user_bitmap_range {
uint64_t iova;