[v2] net/bnxt: fix mark handling to check metafmt not metadata

Message ID 20200501191616.62325-1-ajit.khaparde@broadcom.com (mailing list archive)
State Accepted, archived
Delegated to: Ajit Khaparde
Headers
Series [v2] net/bnxt: fix mark handling to check metafmt not metadata |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/iol-intel-Performance success Performance Testing PASS
ci/iol-nxp-Performance success Performance Testing PASS
ci/iol-mellanox-Performance success Performance Testing PASS
ci/Intel-compilation success Compilation OK
ci/iol-testing success Testing PASS

Commit Message

Ajit Khaparde May 1, 2020, 7:16 p.m. UTC
  From: Mike Baucom <michael.baucom@broadcom.com>

The current mark handling uses the meta data field of the rxcmp as the
first level check for determining gfid vs lfid.  When the meta data is
zero due to only the lowest 16bits of the gfid being set, the cfa code
is incorrectly interpreted as being an lfid.  Changing code to look at
meta fmt instead of the meta data directly for the determination.

Fixes: b87abb2e55cb ("net/bnxt: support marking packet")

Signed-off-by: Mike Baucom <michael.baucom@broadcom.com>
Reviewed-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
Reviewed-by: Lance Richardson <lance.richardson@broadcom.com>
--
v1->v2: fixed the commit log.
---
 drivers/net/bnxt/bnxt_rxr.c | 85 ++++++++++++++++++++++---------------
 drivers/net/bnxt/bnxt_rxr.h |  2 +
 2 files changed, 53 insertions(+), 34 deletions(-)
  

Comments

Ajit Khaparde May 1, 2020, 10:02 p.m. UTC | #1
On Fri, May 1, 2020 at 12:16 PM Ajit Khaparde <ajit.khaparde@broadcom.com>
wrote:

> From: Mike Baucom <michael.baucom@broadcom.com>
>
> The current mark handling uses the meta data field of the rxcmp as the
> first level check for determining gfid vs lfid.  When the meta data is
> zero due to only the lowest 16bits of the gfid being set, the cfa code
> is incorrectly interpreted as being an lfid.  Changing code to look at
> meta fmt instead of the meta data directly for the determination.
>
> Fixes: b87abb2e55cb ("net/bnxt: support marking packet")
>
> Signed-off-by: Mike Baucom <michael.baucom@broadcom.com>
> Reviewed-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
> Reviewed-by: Lance Richardson <lance.richardson@broadcom.com>
> --
> v1->v2: fixed the commit log.
> ---
>  drivers/net/bnxt/bnxt_rxr.c | 85 ++++++++++++++++++++++---------------
>  drivers/net/bnxt/bnxt_rxr.h |  2 +
>  2 files changed, 53 insertions(+), 34 deletions(-)
>
> Patch applied to dpdk-next-net-brcm.
  

Patch

diff --git a/drivers/net/bnxt/bnxt_rxr.c b/drivers/net/bnxt/bnxt_rxr.c
index a657150d1..9ecdf5e65 100644
--- a/drivers/net/bnxt/bnxt_rxr.c
+++ b/drivers/net/bnxt/bnxt_rxr.c
@@ -409,7 +409,7 @@  bnxt_ulp_set_mark_in_mbuf(struct bnxt *bp, struct rx_pkt_cmpl_hi *rxcmp1,
 	uint32_t cfa_code;
 	uint32_t meta_fmt;
 	uint32_t meta;
-	uint32_t eem = 0;
+	bool gfid = false;
 	uint32_t mark_id;
 	uint32_t flags2;
 	int rc;
@@ -417,53 +417,70 @@  bnxt_ulp_set_mark_in_mbuf(struct bnxt *bp, struct rx_pkt_cmpl_hi *rxcmp1,
 	cfa_code = rte_le_to_cpu_16(rxcmp1->cfa_code);
 	flags2 = rte_le_to_cpu_32(rxcmp1->flags2);
 	meta = rte_le_to_cpu_32(rxcmp1->metadata);
-	if (meta) {
-		meta >>= BNXT_RX_META_CFA_CODE_SHIFT;
 
-		/* The flags field holds extra bits of info from [6:4]
-		 * which indicate if the flow is in TCAM or EM or EEM
+	/*
+	 * The flags field holds extra bits of info from [6:4]
+	 * which indicate if the flow is in TCAM or EM or EEM
+	 */
+	meta_fmt = (flags2 & BNXT_CFA_META_FMT_MASK) >>
+		BNXT_CFA_META_FMT_SHFT;
+
+	switch (meta_fmt) {
+	case 0:
+		/* Not an LFID or GFID, a flush cmd. */
+		goto skip_mark;
+	case 4:
+	case 5:
+		/*
+		 * EM/TCAM case
+		 * Assume that EM doesn't support Mark due to GFID
+		 * collisions with EEM.  Simply return without setting the mark
+		 * in the mbuf.
 		 */
-		meta_fmt = (flags2 & BNXT_CFA_META_FMT_MASK) >>
-			    BNXT_CFA_META_FMT_SHFT;
-		/* meta_fmt == 4 => 'b100 => 'b10x => EM.
-		 * meta_fmt == 5 => 'b101 => 'b10x => EM + VLAN
-		 * meta_fmt == 6 => 'b110 => 'b11x => EEM
-		 * meta_fmt == 7 => 'b111 => 'b11x => EEM + VLAN.
+		if (BNXT_CFA_META_EM_TEST(meta))
+			goto skip_mark;
+		/*
+		 * It is a TCAM entry, so it is an LFID. The TCAM IDX and Mode
+		 * can also be determined by decoding the meta_data.  We are not
+		 * using these for now.
 		 */
-		meta_fmt >>= BNXT_CFA_META_FMT_EM_EEM_SHFT;
-
-		eem = meta_fmt == BNXT_CFA_META_FMT_EEM;
+		break;
+	case 6:
+	case 7:
+		/* EEM Case, only using gfid in EEM for now. */
+		gfid = true;
 
-		/* For EEM flows, The first part of cfa_code is 16 bits.
+		/*
+		 * For EEM flows, The first part of cfa_code is 16 bits.
 		 * The second part is embedded in the
 		 * metadata field from bit 19 onwards. The driver needs to
 		 * ignore the first 19 bits of metadata and use the next 12
 		 * bits as higher 12 bits of cfa_code.
 		 */
-		if (eem)
-			cfa_code |= meta << BNXT_CFA_CODE_META_SHIFT;
+		meta >>= BNXT_RX_META_CFA_CODE_SHIFT;
+		cfa_code |= meta << BNXT_CFA_CODE_META_SHIFT;
+		break;
+	default:
+		/* For other values, the cfa_code is assumed to be an LFID. */
+		break;
 	}
 
 	if (cfa_code) {
-		mbuf->hash.fdir.hi = 0;
-		mbuf->hash.fdir.id = 0;
-		if (eem)
-			rc = ulp_mark_db_mark_get(&bp->ulp_ctx, true,
-						  cfa_code, &mark_id);
-		else
-			rc = ulp_mark_db_mark_get(&bp->ulp_ctx, false,
-						  cfa_code, &mark_id);
-		/* If the above fails, simply return and don't add the mark to
-		 * mbuf
-		 */
-		if (rc)
+		rc = ulp_mark_db_mark_get(&bp->ulp_ctx, gfid,
+					  cfa_code, &mark_id);
+		if (!rc) {
+			/* Got the mark, write it to the mbuf and return */
+			mbuf->hash.fdir.hi = mark_id;
+			mbuf->udata64 = (cfa_code & 0xffffffffull) << 32;
+			mbuf->hash.fdir.id = rxcmp1->cfa_code;
+			mbuf->ol_flags |= PKT_RX_FDIR | PKT_RX_FDIR_ID;
 			return;
-
-		mbuf->hash.fdir.hi	= mark_id;
-		mbuf->udata64		= (cfa_code & 0xffffffffull) << 32;
-		mbuf->hash.fdir.id	= rxcmp1->cfa_code;
-		mbuf->ol_flags		|= PKT_RX_FDIR | PKT_RX_FDIR_ID;
+		}
 	}
+
+skip_mark:
+	mbuf->hash.fdir.hi = 0;
+	mbuf->hash.fdir.id = 0;
 }
 
 void bnxt_set_mark_in_mbuf(struct bnxt *bp,
diff --git a/drivers/net/bnxt/bnxt_rxr.h b/drivers/net/bnxt/bnxt_rxr.h
index d10dae25a..811dcd86b 100644
--- a/drivers/net/bnxt/bnxt_rxr.h
+++ b/drivers/net/bnxt/bnxt_rxr.h
@@ -238,5 +238,7 @@  void bnxt_set_mark_in_mbuf(struct bnxt *bp,
 #define BNXT_CFA_META_FMT_SHFT			4
 #define BNXT_CFA_META_FMT_EM_EEM_SHFT		1
 #define BNXT_CFA_META_FMT_EEM			3
+#define BNXT_CFA_META_EEM_TCAM_SHIFT		31
+#define BNXT_CFA_META_EM_TEST(x) ((x) >> BNXT_CFA_META_EEM_TCAM_SHIFT)
 
 #endif