examples/packet_ordering: fix port configuration
authorDapeng Yu <dapengx.yu@intel.com>
Fri, 19 Mar 2021 07:11:18 +0000 (15:11 +0800)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 24 Mar 2021 10:16:37 +0000 (11:16 +0100)
commitc99f115bbd9d56630fc5a8d404443e0761684832
tree9d3d21868c75f5efab5b465a87c774f1f0133492
parent0b50ea60fbfadba1f5edce1893782e4d928e5446
examples/packet_ordering: fix port configuration

A global ethernet port configuration is assigned to local variable
because in this way the local variable may be updated as required. But
this local variable is not used as input of rte_eth_dev_configure() in
original implementation, and cause that fast mbuf free feature cannot
be enabled on port.

This patch use this local variable as input of rte_eth_dev_configure().

Fixes: 6833f919f56b ("examples/packet_ordering: convert to new ethdev offloads API")
Cc: stable@dpdk.org
Signed-off-by: Dapeng Yu <dapengx.yu@intel.com>
Acked-by: Reshma Pattan <reshma.pattan@intel.com>
examples/packet_ordering/main.c