Let's check the received/sent mbufs, it can help debugging.

Signed-off-by: David Marchand <david.march...@redhat.com>
---
 app/test-pmd/util.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app/test-pmd/util.c b/app/test-pmd/util.c
index 687bfa4..6b0791d 100644
--- a/app/test-pmd/util.c
+++ b/app/test-pmd/util.c
@@ -36,6 +36,7 @@
        uint32_t sw_packet_type;
        uint16_t udp_port;
        uint32_t vx_vni;
+       const char *reason;
 
        if (!nb_pkts)
                return;
@@ -147,6 +148,8 @@
                printf("\n");
                rte_get_rx_ol_flag_list(mb->ol_flags, buf, sizeof(buf));
                printf("  ol_flags: %s\n", buf);
+               if (rte_mbuf_check(mb, 1, &reason) < 0)
+                       printf("INVALID mbuf: %s\n", reason);
        }
 }
 
-- 
1.8.3.1

Reply via email to