mbox series

[v3,0/2] vduse: TSO & vIOMMU fixes

Message ID 20230713135240.240453-1-maxime.coquelin@redhat.com (mailing list archive)
Headers
Series vduse: TSO & vIOMMU fixes |

Message

Maxime Coquelin July 13, 2023, 1:52 p.m. UTC
  This series contains two patches to fix TSO support
and enable vIOMMU by default as it is required by
VDUSE.

Changes in v3:
==============
- Ensure async copy cannot be enabled with VDUSE (Kevin)

Changes in v2:
==============
- Fix typo in commit message
- Fix build when VDUSE is not supported by the Kernel (0-day robot)

Maxime Coquelin (2):
  vhost: fix net offload compliance
  vhost: force vIOMMU enablement with VDUSE

 lib/vhost/socket.c | 14 ++++++++------
 lib/vhost/vduse.c  |  4 ++--
 lib/vhost/vduse.h  |  6 ++++--
 3 files changed, 14 insertions(+), 10 deletions(-)
  

Comments

Maxime Coquelin July 13, 2023, 3:32 p.m. UTC | #1
On 7/13/23 15:52, Maxime Coquelin wrote:
> This series contains two patches to fix TSO support
> and enable vIOMMU by default as it is required by
> VDUSE.
> 
> Changes in v3:
> ==============
> - Ensure async copy cannot be enabled with VDUSE (Kevin)
> 
> Changes in v2:
> ==============
> - Fix typo in commit message
> - Fix build when VDUSE is not supported by the Kernel (0-day robot)
> 
> Maxime Coquelin (2):
>    vhost: fix net offload compliance
>    vhost: force vIOMMU enablement with VDUSE
> 
>   lib/vhost/socket.c | 14 ++++++++------
>   lib/vhost/vduse.c  |  4 ++--
>   lib/vhost/vduse.h  |  6 ++++--
>   3 files changed, 14 insertions(+), 10 deletions(-)
> 

Thanks for the review!

Applied to dpdk-next-virtio/main.

Maxime