net/ark: remove use of seqn for debug
authorDavid Marchand <david.marchand@redhat.com>
Wed, 28 Oct 2020 12:20:07 +0000 (13:20 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Sat, 31 Oct 2020 21:14:29 +0000 (22:14 +0100)
The seqn mbuf field is deprecated.
It is currently hacked for debug purpose, it could be changed to a
dynamic field but I see little value in the debug info it offers.

Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Ed Czeck <ed.czeck@atomicrules.com>
drivers/net/ark/ark_ethdev_rx.c

index 825b479..c24cc00 100644 (file)
@@ -302,8 +302,6 @@ eth_ark_recv_pkts(void *rx_queue,
                                mbuf->pkt_len = 63;
                                meta->pkt_len = 63;
                        }
-                       /* seqn is only set under debug */
-                       mbuf->seqn = cons_index;
                }
 
                if (unlikely(meta->pkt_len > ARK_RX_MAX_NOCHAIN))
@@ -360,8 +358,6 @@ eth_ark_rx_jumbo(struct ark_rx_queue *queue,
                mbuf_prev = mbuf;
                mbuf->data_len = data_len;
                mbuf->data_off = 0;
-               if (ARK_DEBUG_CORE)
-                       mbuf->seqn = cons_index;        /* for debug only */
 
                cons_index += 1;
        }
@@ -667,8 +663,8 @@ dump_mbuf_data(struct rte_mbuf *mbuf, uint16_t lo, uint16_t hi)
 {
        uint16_t i, j;
 
-       ARK_PMD_LOG(DEBUG, " MBUF: %p len %d, off: %d, seq: %" PRIU32 "\n",
-                   mbuf, mbuf->pkt_len, mbuf->data_off, mbuf->seqn);
+       ARK_PMD_LOG(DEBUG, " MBUF: %p len %d, off: %d\n",
+                   mbuf, mbuf->pkt_len, mbuf->data_off);
        for (i = lo; i < hi; i += 16) {
                uint8_t *dp = RTE_PTR_ADD(mbuf->buf_addr, i);