]> git.droids-corp.org - dpdk.git/commitdiff
net/bnxt: refactor Rx ring cleanup for representors
authorAjit Khaparde <ajit.khaparde@broadcom.com>
Tue, 26 Oct 2021 05:14:55 +0000 (22:14 -0700)
committerAjit Khaparde <ajit.khaparde@broadcom.com>
Wed, 27 Oct 2021 01:52:02 +0000 (03:52 +0200)
Rx ring for representors does not use aggregation rings for Rx.
Instead they use simple software buffers for handling Rx packets.
So there is no need to use the same cleanup routine as done by
the non-representor code path.

Signed-off-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
Acked-by: Kalesh AP <kalesh-anakkur.purayil@broadcom.com>
Acked-by: Somnath Kotur <somnath.kotur@broadcom.com>
drivers/net/bnxt/bnxt_reps.c

index 1c07db3ca9c5cadee81494aab6287bbe7b6eb23f..92beea35582e455fca891919b96564f71f0055f4 100644 (file)
@@ -386,6 +386,26 @@ static int bnxt_vfr_alloc(struct rte_eth_dev *vfr_ethdev)
        return rc;
 }
 
+static void bnxt_vfr_rx_queue_release_mbufs(struct bnxt_rx_queue *rxq)
+{
+       struct rte_mbuf **sw_ring;
+       unsigned int i;
+
+       if (!rxq || !rxq->rx_ring)
+               return;
+
+       sw_ring = rxq->rx_ring->rx_buf_ring;
+       if (sw_ring) {
+               for (i = 0; i < rxq->rx_ring->rx_ring_struct->ring_size; i++) {
+                       if (sw_ring[i]) {
+                               if (sw_ring[i] != &rxq->fake_mbuf)
+                                       rte_pktmbuf_free_seg(sw_ring[i]);
+                               sw_ring[i] = NULL;
+                       }
+               }
+       }
+}
+
 static void bnxt_rep_free_rx_mbufs(struct bnxt_representor *rep_bp)
 {
        struct bnxt_rx_queue *rxq;
@@ -393,7 +413,7 @@ static void bnxt_rep_free_rx_mbufs(struct bnxt_representor *rep_bp)
 
        for (i = 0; i < rep_bp->rx_nr_rings; i++) {
                rxq = rep_bp->rx_queues[i];
-               bnxt_rx_queue_release_mbufs(rxq);
+               bnxt_vfr_rx_queue_release_mbufs(rxq);
        }
 }