Test-Label: iol-testing Test-Status: WARNING http://dpdk.org/patch/117849 _apply patch failure_ Submitter: Andrew Boyer Date: Tuesday, October 11 2022 00:50:18 Applied on: CommitID:f13604fad12a81383da7b04821a4befb3d01e2ed Apply patch set 117849 failed: Checking patch doc/guides/nics/features/ionic.ini... 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 MACsec in rte_security.** error: patch failed: doc/guides/rel_notes/release_22_11.rst:165 Checking patch drivers/net/ionic/ionic_ethdev.c... Hunk #1 succeeded at 403 (offset 7 lines). Checking patch drivers/net/ionic/ionic_lif.h... Hunk #1 succeeded at 52 (offset 2 lines). Checking patch drivers/net/ionic/ionic_rxtx.c... Hunk #1 succeeded at 62 (offset -32 lines). error: while searching for: if (!txm) break; rte_pktmbuf_free_seg(txm); info[i] = NULL; } error: patch failed: drivers/net/ionic/ionic_rxtx.c:136 Hunk #3 succeeded at 211 (offset -34 lines). Applied patch doc/guides/nics/features/ionic.ini cleanly. 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. Applied patch drivers/net/ionic/ionic_lif.h cleanly. Applying patch drivers/net/ionic/ionic_rxtx.c with 1 reject... Hunk #1 applied cleanly. Rejected hunk #2. Hunk #3 applied cleanly. diff a/doc/guides/rel_notes/release_22_11.rst b/doc/guides/rel_notes/release_22_11.rst (rejected hunks) @@ -165,6 +165,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 MACsec in rte_security.** diff a/drivers/net/ionic/ionic_rxtx.c b/drivers/net/ionic/ionic_rxtx.c (rejected hunks) @@ -136,7 +138,10 @@ ionic_tx_flush(struct ionic_tx_qcq *txq) if (!txm) break; - rte_pktmbuf_free_seg(txm); + if (txq->flags & IONIC_QCQ_F_FAST_FREE) + rte_mempool_put(txm->pool, txm); + else + rte_pktmbuf_free_seg(txm); info[i] = NULL; } https://lab.dpdk.org/results/dashboard/patchsets/23890/ UNH-IOL DPDK Community Lab