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 <[email protected]> --- lib/netdev-dpdk.c | 1 - 1 file changed, 1 deletion(-) 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 = { -- 2.37.3 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
