mbox series

[v5,0/4] app/testpmd: flowgen fixes and improvements

Message ID 20210813080548.38637-1-wangzhihong.wzh@bytedance.com (mailing list archive)
Headers
Series app/testpmd: flowgen fixes and improvements |

Message

王志宏 Aug. 13, 2021, 8:05 a.m. UTC
  This series fixes a tx retry defect and improves multi-core performance
by using per-core variable for flow indexing.

v5: replace modulo operation to improve performance
v4: use loop local variable to improve performance
v3: split changes and keep original flow generation logic
v2: fix assigning ip header cksum

Zhihong Wang (4):
  app/testpmd: fix tx retry in flowgen
  app/testpmd: use rte_ipv4_cksum in flowgen
  app/testpmd: record rx_burst and fwd_dropped in flowgen
  app/testpmd: use per-core variable in flowgen

 app/test-pmd/flowgen.c | 47 ++++++++++++++---------------------------------
 1 file changed, 14 insertions(+), 33 deletions(-)
  

Comments

Ferruh Yigit Aug. 24, 2021, 5:21 p.m. UTC | #1
On 8/13/2021 9:05 AM, Zhihong Wang wrote:
> This series fixes a tx retry defect and improves multi-core performance
> by using per-core variable for flow indexing.
> 
> v5: replace modulo operation to improve performance
> v4: use loop local variable to improve performance
> v3: split changes and keep original flow generation logic
> v2: fix assigning ip header cksum
> 
> Zhihong Wang (4):
>   app/testpmd: fix tx retry in flowgen
>   app/testpmd: use rte_ipv4_cksum in flowgen
>   app/testpmd: record rx_burst and fwd_dropped in flowgen
>   app/testpmd: use per-core variable in flowgen
> 

Series applied to dpdk-next-net/main, thanks.