Re: [RFC v4 3/5] vhost: Data structure changes to support packed vqs

2024-12-11 Thread Sahil Siddiq
Hi, On 12/10/24 2:25 PM, Eugenio Perez Martin wrote: On Thu, Dec 5, 2024 at 9:35 PM Sahil Siddiq wrote: Introduce "struct vring_packed". Modify VhostShadowVirtqueue so it can support split and packed virtqueue formats. This patch should be before the previous one or it does not compile, i

Re: [RFC v4 3/5] vhost: Data structure changes to support packed vqs

2024-12-10 Thread Eugenio Perez Martin
On Thu, Dec 5, 2024 at 9:35 PM Sahil Siddiq wrote: > > Introduce "struct vring_packed". > > Modify VhostShadowVirtqueue so it can support split > and packed virtqueue formats. > This patch should be before the previous one or it does not compile, isn't it? > Signed-off-by: Sahil Siddiq > --- >

[RFC v4 3/5] vhost: Data structure changes to support packed vqs

2024-12-05 Thread Sahil Siddiq
Introduce "struct vring_packed". Modify VhostShadowVirtqueue so it can support split and packed virtqueue formats. Signed-off-by: Sahil Siddiq --- Changes v3 -> v4: - Commit #2 of v3 is now commit #3 in this series. - vhost-shadow-virtqueue.h (struct VhostShadowVirtqueue): Add bool is_packed.