diff mbox series

[ovs-dev,dpdk-latest,v2,2/3] netdev-dpdk: Drop reference to Rx header split.

Message ID 20221007111613.1695524-3-david.marchand@redhat.com
State Accepted
Headers show
Series API updates for DPDK 22.11 | expand

Checks

Context Check Description
ovsrobot/apply-robot success apply and check: success
ovsrobot/github-robot-_Build_and_Test success github build: passed
ovsrobot/intel-ovs-compilation success test: success

Commit Message

David Marchand Oct. 7, 2022, 11:16 a.m. UTC
The Rx header split feature was implemented by no driver in DPDK.
This feature is being reworked, and one associated field has been removed
from the Rx port configuration (see [1]).

OVS was not using it, simply drop reference to this field.

1: https://git.dpdk.org/dpdk/commit/?id=8d54b1ec4a8b

Signed-off-by: David Marchand <david.marchand@redhat.com>
---
 lib/netdev-dpdk.c | 1 -
 1 file changed, 1 deletion(-)

Comments

Pai G, Sunil Oct. 10, 2022, 8:34 a.m. UTC | #1
> -----Original Message-----
> From: David Marchand <david.marchand@redhat.com>
> Sent: Friday, October 7, 2022 4:46 PM
> To: dev@openvswitch.org
> Cc: Stokes, Ian <ian.stokes@intel.com>; ktraynor@redhat.com;
> maxime.coquelin@redhat.com; Pai G, Sunil <sunil.pai.g@intel.com>
> Subject: [PATCH dpdk-latest v2 2/3] netdev-dpdk: Drop reference to Rx
> header split.
> 
> The Rx header split feature was implemented by no driver in DPDK.
> This feature is being reworked, and one associated field has been removed
> from the Rx port configuration (see [1]).
> 
> OVS was not using it, simply drop reference to this field.
> 
> 1: https://git.dpdk.org/dpdk/commit/?id=8d54b1ec4a8b
> 
> Signed-off-by: David Marchand <david.marchand@redhat.com>
> ---
>  lib/netdev-dpdk.c | 1 -
>  1 file changed, 1 deletion(-)
> 


Patch LGTM, 

Acked-by: Sunil Pai G <sunil.pai.g@intel.com>

Thanks and regards
Sunil
diff mbox series

Patch

diff --git a/lib/netdev-dpdk.c b/lib/netdev-dpdk.c
index fb4b3282dc..132ebb2843 100644
--- a/lib/netdev-dpdk.c
+++ b/lib/netdev-dpdk.c
@@ -160,7 +160,6 @@  typedef uint16_t dpdk_port_t;
 
 static const struct rte_eth_conf port_conf = {
     .rxmode = {
-        .split_hdr_size = 0,
         .offloads = 0,
     },
     .rx_adv_conf = {