|
@@ -65,6 +65,7 @@ struct vhost_iotlb_msg {
|
|
|
};
|
|
|
|
|
|
#define VHOST_IOTLB_MSG 0x1
|
|
|
+#define VHOST_IOTLB_MSG_V2 0x2
|
|
|
|
|
|
struct vhost_msg {
|
|
|
int type;
|
|
@@ -74,6 +75,15 @@ struct vhost_msg {
|
|
|
};
|
|
|
};
|
|
|
|
|
|
+struct vhost_msg_v2 {
|
|
|
+ __u32 type;
|
|
|
+ __u32 reserved;
|
|
|
+ union {
|
|
|
+ struct vhost_iotlb_msg iotlb;
|
|
|
+ __u8 padding[64];
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
struct vhost_memory_region {
|
|
|
__u64 guest_phys_addr;
|
|
|
__u64 memory_size; /* bytes */
|
|
@@ -160,6 +170,14 @@ struct vhost_memory {
|
|
|
#define VHOST_GET_VRING_BUSYLOOP_TIMEOUT _IOW(VHOST_VIRTIO, 0x24, \
|
|
|
struct vhost_vring_state)
|
|
|
|
|
|
+/* Set or get vhost backend capability */
|
|
|
+
|
|
|
+/* Use message type V2 */
|
|
|
+#define VHOST_BACKEND_F_IOTLB_MSG_V2 0x1
|
|
|
+
|
|
|
+#define VHOST_SET_BACKEND_FEATURES _IOW(VHOST_VIRTIO, 0x25, __u64)
|
|
|
+#define VHOST_GET_BACKEND_FEATURES _IOR(VHOST_VIRTIO, 0x26, __u64)
|
|
|
+
|
|
|
/* VHOST_NET specific defines */
|
|
|
|
|
|
/* Attach virtio net ring to a raw socket, or tap device.
|