DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] net/ice: fix missing Tx burst mode name
@ 2022-04-04 14:41 Michael Pfeiffer
  2022-04-13  7:21 ` Zhang, Qi Z
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Pfeiffer @ 2022-04-04 14:41 UTC (permalink / raw)
  To: Qiming Yang, Qi Zhang
  Cc: dev, stable, Michael Pfeiffer, wenzhuo.lu, Michael Rossberg

The function ice_xmit_pkts_vec_avx2_offload was left out in the list
of tx functions for ice_tx_burst_mode_get.

Fixes: 52ccdcf2fd41 ("net/ice: add AVX2 offload Tx")
Cc: wenzhuo.lu@intel.com
Cc: stable@dpdk.org

Signed-off-by: Michael Pfeiffer <michael.pfeiffer@tu-ilmenau.de>
Suggested-by: Michael Rossberg <michael.rossberg@tu-ilmenau.de>
---
 drivers/net/ice/ice_rxtx.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ice/ice_rxtx.c b/drivers/net/ice/ice_rxtx.c
index 041f4bc91f..62ce23b53a 100644
--- a/drivers/net/ice/ice_rxtx.c
+++ b/drivers/net/ice/ice_rxtx.c
@@ -3552,8 +3552,9 @@ static const struct {
 	{ ice_xmit_pkts_vec_avx512, "Vector AVX512" },
 	{ ice_xmit_pkts_vec_avx512_offload, "Offload Vector AVX512" },
 #endif
-	{ ice_xmit_pkts_vec_avx2, "Vector AVX2" },
-	{ ice_xmit_pkts_vec,      "Vector SSE" },
+	{ ice_xmit_pkts_vec_avx2,         "Vector AVX2" },
+	{ ice_xmit_pkts_vec_avx2_offload, "Offload Vector AVX2" },
+	{ ice_xmit_pkts_vec,              "Vector SSE" },
 #endif
 };
 
-- 
2.35.1


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-04-13  7:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-04 14:41 [PATCH] net/ice: fix missing Tx burst mode name Michael Pfeiffer
2022-04-13  7:21 ` Zhang, Qi Z

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).