Re: [PATCH v14 11/13] vduse: add vq group asid support

From: ALOK TIWARI

Date: Fri Jan 16 2026 - 13:48:55 EST




On 1/16/2026 7:34 PM, Eugenio Pérez wrote:
+/**
+ * struct vduse_iotlb_entry_v2 - entry of IOTLB to describe one IOVA region
+ *
+ * @v1: the original vduse_iotlb_entry
+ * @asid: address space ID of the IOVA region
+ * @reserver: for future use, needs to be initialized to zero

reserver -> reserved

+ *
+ * Structure used by VDUSE_IOTLB_GET_FD2 ioctl to find an overlapped IOVA region.
+ */
+struct vduse_iotlb_entry_v2 {
+ struct vduse_iotlb_entry v1;
+ __u32 asid;
+ __u32 reserved[12];
+};


Thanks,
Alok