From: Qin Ke <qin...@corigine.com>

Performance is reduced because of adding redundant read configure
operations in nfp_net_parse_ptype() called by nfp_net_recv_pkts(),
which cause every received packet to spend more time.

Fix the performance issue by deleting the redundant code directly.

Fixes: 2e7c36128be ("net/nfp: report packet type by Rx descriptor")
Cc: sta...@dpdk.org

Signed-off-by: Qin Ke <qin...@corigine.com>
Reviewed-by: Niklas Söderlund <niklas.soderl...@corigine.com>
Reviewed-by: Chaoyong He <chaoyong...@corigine.com>
Reviewed-by: Peng Zhang <peng.zh...@corigine.com>
---
 drivers/net/nfp/nfp_rxtx.c | 17 +++--------------
 1 file changed, 3 insertions(+), 14 deletions(-)

diff --git a/drivers/net/nfp/nfp_rxtx.c b/drivers/net/nfp/nfp_rxtx.c
index 9867db4388..297864450b 100644
--- a/drivers/net/nfp/nfp_rxtx.c
+++ b/drivers/net/nfp/nfp_rxtx.c
@@ -317,7 +317,8 @@ nfp_net_parse_meta(struct nfp_net_rx_desc *rxds,
  *   Mbuf to set the packet type.
  */
 static void
-nfp_net_set_ptype(const struct nfp_ptype_parsed *nfp_ptype, struct rte_mbuf 
*mb)
+nfp_net_set_ptype(const struct nfp_ptype_parsed *nfp_ptype,
+               struct rte_mbuf *mb)
 {
        uint32_t mbuf_ptype = RTE_PTYPE_L2_ETHER;
        uint8_t nfp_tunnel_ptype = nfp_ptype->tunnel_ptype;
@@ -420,31 +421,19 @@ nfp_net_set_ptype(const struct nfp_ptype_parsed 
*nfp_ptype, struct rte_mbuf *mb)
  *
  * @param rxds
  *   Rx descriptor including the offloading info of packet type.
- * @param hw
- *   Device.
  * @param mb
  *   Mbuf to set the packet type.
  */
 static void
 nfp_net_parse_ptype(struct nfp_net_rx_desc *rxds,
-               struct nfp_net_hw *hw,
                struct rte_mbuf *mb)
 {
-       uint32_t cap_extend;
-       uint32_t ctrl_extend;
        struct nfp_ptype_parsed nfp_ptype;
        uint16_t rxd_ptype = rxds->rxd.offload_info;
 
        if (rxd_ptype == 0 || (rxds->rxd.flags & PCIE_DESC_RX_VLAN) != 0)
                return;
 
-       cap_extend = nn_cfg_readl(hw, NFP_NET_CFG_CAP_WORD1);
-       ctrl_extend = nn_cfg_readl(hw, NFP_NET_CFG_CTRL_WORD1);
-
-       if ((cap_extend & NFP_NET_CFG_CTRL_PKT_TYPE) == 0 ||
-                       (ctrl_extend & NFP_NET_CFG_CTRL_PKT_TYPE) == 0)
-               return;
-
        nfp_ptype.l4_ptype = (rxd_ptype & NFP_NET_PTYPE_L4_MASK) >>
                        NFP_NET_PTYPE_L4_OFFSET;
        nfp_ptype.l3_ptype = (rxd_ptype & NFP_NET_PTYPE_L3_MASK) >>
@@ -593,7 +582,7 @@ nfp_net_recv_pkts(void *rx_queue, struct rte_mbuf 
**rx_pkts, uint16_t nb_pkts)
                struct nfp_meta_parsed meta = {};
                nfp_net_parse_meta(rxds, rxq, hw, mb, &meta);
 
-               nfp_net_parse_ptype(rxds, hw, mb);
+               nfp_net_parse_ptype(rxds, mb);
 
                /* Checking the checksum flag */
                nfp_net_rx_cksum(rxq, rxds, mb);
-- 
2.39.1

Reply via email to