From: Hemant Agrawal <[email protected]> Remove the soft parser related code from the Tx path. The soft parser can only be loaded before Linux boots, so this code was never reachable at runtime.
Signed-off-by: Hemant Agrawal <[email protected]> --- drivers/net/dpaa2/dpaa2_rxtx.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/drivers/net/dpaa2/dpaa2_rxtx.c b/drivers/net/dpaa2/dpaa2_rxtx.c index eda88a7bed..5c6a77d2f8 100644 --- a/drivers/net/dpaa2/dpaa2_rxtx.c +++ b/drivers/net/dpaa2/dpaa2_rxtx.c @@ -169,16 +169,6 @@ dpaa2_dev_rx_parse_new(struct dpaa2_dev_priv *priv, ext_packet_type |= RTE_PTYPE_INNER_L3_IPV4; } } - if (priv->sp_protocol) { - if (frc_parse->fafe2) { - frc_parse->fafe2 = 0; - ext_packet_type |= RTE_PTYPE_TUNNEL_GENEVE; - } - if (frc_parse->sum_l.l4.fafe3) { - frc_parse->sum_l.l4.fafe3 = 0; - ext_packet_type |= RTE_PTYPE_INNER_L3_IPV4; - } - } switch (frc) { case DPAA2_PKT_TYPE_IPV4_UDP: m->packet_type = RTE_PTYPE_L2_ETHER | -- 2.43.0

