|WARNING| pw117853 [PATCH] [v1, 25/35] net/ionic: advertise supported packet types
dpdklab at iol.unh.edu
dpdklab at iol.unh.edu
Tue Oct 11 06:19:00 CEST 2022
Test-Label: iol-testing
Test-Status: WARNING
http://dpdk.org/patch/117853
_apply patch failure_
Submitter: Andrew Boyer <Andrew.Boyer at amd.com>
Date: Tuesday, October 11 2022 00:50:22
Applied on: CommitID:f13604fad12a81383da7b04821a4befb3d01e2ed
Apply patch set 117853 failed:
Checking patch doc/guides/rel_notes/release_22_11.rst...
error: while searching for:
* Updated to reflect that Pensando has been acquired by AMD.
* Enhanced data path to provide substantial performance improvements.
* Added support for mbuf fast free.
* **Added support for MACsec in rte_security.**
error: patch failed: doc/guides/rel_notes/release_22_11.rst:166
Checking patch drivers/net/ionic/ionic_ethdev.c...
Hunk #1 succeeded at 80 (offset 10 lines).
Checking patch drivers/net/ionic/ionic_rxtx.c...
error: while searching for:
RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6 | RTE_PTYPE_L4_UDP,
};
/*
* Cleans one descriptor. Connects the filled mbufs into a chain.
* Does not advance the tail index.
error: patch failed: drivers/net/ionic/ionic_rxtx.c:850
Checking patch drivers/net/ionic/ionic_rxtx.h...
Hunk #1 succeeded at 41 (offset 1 line).
Applying patch doc/guides/rel_notes/release_22_11.rst with 1 reject...
Rejected hunk #1.
Applied patch drivers/net/ionic/ionic_ethdev.c cleanly.
Applying patch drivers/net/ionic/ionic_rxtx.c with 1 reject...
Rejected hunk #1.
Applied patch drivers/net/ionic/ionic_rxtx.h cleanly.
diff a/doc/guides/rel_notes/release_22_11.rst b/doc/guides/rel_notes/release_22_11.rst (rejected hunks)
@@ -166,6 +166,7 @@ New Features
* Updated to reflect that Pensando has been acquired by AMD.
* Enhanced data path to provide substantial performance improvements.
* Added support for mbuf fast free.
+ * Added support for advertising packet types.
* **Added support for MACsec in rte_security.**
diff a/drivers/net/ionic/ionic_rxtx.c b/drivers/net/ionic/ionic_rxtx.c (rejected hunks)
@@ -850,6 +850,25 @@ static const uint32_t ionic_ptype_table[IONIC_RXQ_COMP_PKT_TYPE_MASK]
RTE_PTYPE_L2_ETHER | RTE_PTYPE_L3_IPV6 | RTE_PTYPE_L4_UDP,
};
+const uint32_t *
+ionic_dev_supported_ptypes_get(struct rte_eth_dev *dev __rte_unused)
+{
+ /* See ionic_ptype_table[] */
+ static const uint32_t ptypes[] = {
+ RTE_PTYPE_L2_ETHER,
+ RTE_PTYPE_L2_ETHER_TIMESYNC,
+ RTE_PTYPE_L2_ETHER_LLDP,
+ RTE_PTYPE_L2_ETHER_ARP,
+ RTE_PTYPE_L3_IPV4,
+ RTE_PTYPE_L3_IPV6,
+ RTE_PTYPE_L4_TCP,
+ RTE_PTYPE_L4_UDP,
+ RTE_PTYPE_UNKNOWN
+ };
+
+ return ptypes;
+}
+
/*
* Cleans one descriptor. Connects the filled mbufs into a chain.
* Does not advance the tail index.
https://lab.dpdk.org/results/dashboard/patchsets/23894/
UNH-IOL DPDK Community Lab
More information about the test-report
mailing list