Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Oct 2021 00:09:09 GMT
From:      Navdeep Parhar <np@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: d31b8f0dece1 - stable/12 - cxgbe(4): Revert r367917.
Message-ID:  <202110210009.19L099Di015488@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/12 has been updated by np:

URL: https://cgit.FreeBSD.org/src/commit/?id=d31b8f0dece18bb5c301a71200d8a8c03ab84602

commit d31b8f0dece18bb5c301a71200d8a8c03ab84602
Author:     Navdeep Parhar <np@FreeBSD.org>
AuthorDate: 2020-12-02 20:54:03 +0000
Commit:     Navdeep Parhar <np@FreeBSD.org>
CommitDate: 2021-10-20 18:26:49 +0000

    cxgbe(4): Revert r367917.
    
    r367917 fixed the backpressure on the netmap rxq being stopped but that
    doesn't help if some other netmap rxq is starved (because it is stopping
    too although the driver doesn't know this yet) and blocks the pipeline.
    An alternate fix that works in all cases will be checked in instead.
    
    Sponsored by:   Chelsio Communications
    
    (cherry picked from commit f42f3b2955e5afa770275fd76b4f754fbd67bbeb)
---
 sys/dev/cxgbe/adapter.h   |  3 ---
 sys/dev/cxgbe/t4_netmap.c | 48 -----------------------------------------------
 2 files changed, 51 deletions(-)

diff --git a/sys/dev/cxgbe/adapter.h b/sys/dev/cxgbe/adapter.h
index a1006df3e987..18dd334a391c 100644
--- a/sys/dev/cxgbe/adapter.h
+++ b/sys/dev/cxgbe/adapter.h
@@ -737,9 +737,6 @@ struct sge_nm_rxq {
 	bus_dma_tag_t fl_desc_tag;
 	bus_dmamap_t fl_desc_map;
 	bus_addr_t fl_ba;
-
-	void *bb;		/* bit bucket for packets with nowhere to go. */
-	uma_zone_t bb_zone;
 };
 
 #define INVALID_NM_TXQ_CNTXT_ID ((u_int)(-1))
diff --git a/sys/dev/cxgbe/t4_netmap.c b/sys/dev/cxgbe/t4_netmap.c
index 3dd3f42c5636..2bee6040b10e 100644
--- a/sys/dev/cxgbe/t4_netmap.c
+++ b/sys/dev/cxgbe/t4_netmap.c
@@ -42,8 +42,6 @@ __FBSDID("$FreeBSD$");
 #include <sys/socket.h>
 #include <sys/sockio.h>
 #include <machine/bus.h>
-#include <vm/vm.h>
-#include <vm/pmap.h>
 #include <net/ethernet.h>
 #include <net/if.h>
 #include <net/if_media.h>
@@ -588,8 +586,6 @@ cxgbe_netmap_on(struct adapter *sc, struct vi_info *vi, struct ifnet *ifp,
 
 		alloc_nm_rxq_hwq(vi, nm_rxq, tnl_cong(vi->pi, nm_cong_drop));
 		nm_rxq->fl_hwidx = hwidx;
-		nm_rxq->bb_zone = rxb->zone;
-		nm_rxq->bb = uma_zalloc(nm_rxq->bb_zone, M_WAITOK);
 		slot = netmap_reset(na, NR_RX, i, 0);
 		MPASS(slot != NULL);	/* XXXNM: error check, not assert */
 
@@ -632,31 +628,6 @@ cxgbe_netmap_on(struct adapter *sc, struct vi_info *vi, struct ifnet *ifp,
 	return (cxgbe_netmap_rss(sc, vi, ifp, na));
 }
 
-static void
-flush_nm_rxq(struct adapter *sc, struct vi_info *vi, struct sge_nm_rxq *nm_rxq)
-{
-	int i, n;
-	u_int fl_pidx, fl_pidx_target, hw_cidx_desc;
-	const uint64_t ba = pmap_kextract((vm_offset_t)nm_rxq->bb);
-
-	hw_cidx_desc = nm_rxq->fl_cidx / 8;
-	if (hw_cidx_desc == 0)
-		fl_pidx_target = nm_rxq->fl_sidx2 - 8;
-	else
-		fl_pidx_target = (hw_cidx_desc - 1) * 8;
-	MPASS((fl_pidx_target & 7) == 0);
-
-	fl_pidx = nm_rxq->fl_pidx;
-	MPASS((fl_pidx & 7) == 0);
-	for (n = 0; fl_pidx != fl_pidx_target; n++) {
-		for (i = 0; i < 8; i++, fl_pidx++)
-			nm_rxq->fl_desc[fl_pidx] = htobe64(ba | nm_rxq->fl_hwidx);
-		if (__predict_false(fl_pidx == nm_rxq->fl_sidx2))
-			fl_pidx = 0;
-	}
-	t4_write_reg(sc, sc->sge_kdoorbell_reg, nm_rxq->fl_db_val | V_PIDX(n));
-}
-
 static int
 cxgbe_netmap_off(struct adapter *sc, struct vi_info *vi, struct ifnet *ifp,
     struct netmap_adapter *na)
@@ -681,23 +652,6 @@ cxgbe_netmap_off(struct adapter *sc, struct vi_info *vi, struct ifnet *ifp,
 	if (rc != 0)
 		return (rc);	/* error message logged already. */
 
-	/*
-	 * First pass over the rx queues to make sure they're all caught up.
-	 *
-	 * The freelists could be out of buffers and we may need to arrange
-	 * things so that any packets still in flight (after TP's cong_drop
-	 * logic but not yet DMA'd) have somewhere to go and do not block the
-	 * pipeline.  Do this before trying to free any queue.
-	 */
-	for_each_nm_rxq(vi, i, nm_rxq) {
-		nm_state = atomic_load_int(&nm_rxq->nm_state);
-		kring = na->rx_rings[nm_rxq->nid];
-		if (nm_state == NM_OFF || !nm_kring_pending_off(kring))
-			continue;
-		MPASS(nm_rxq->iq_cntxt_id != INVALID_NM_RXQ_CNTXT_ID);
-		flush_nm_rxq(sc, vi, nm_rxq);
-	}
-
 	for_each_nm_txq(vi, i, nm_txq) {
 		struct sge_qstat *spg = (void *)&nm_txq->desc[nm_txq->sidx];
 
@@ -734,8 +688,6 @@ cxgbe_netmap_off(struct adapter *sc, struct vi_info *vi, struct ifnet *ifp,
 			pause("nmst", 1);
 
 		free_nm_rxq_hwq(vi, nm_rxq);
-		uma_zfree(nm_rxq->bb_zone, nm_rxq->bb);
-		nm_rxq->bb = NULL;
 
 		/* XXX: netmap, not the driver, should do this. */
 		kring->rhead = kring->rcur = kring->nr_hwcur = 0;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202110210009.19L099Di015488>