mbox series

[v7,0/3] Add GENEVE protocol parsing to testpmd

Message ID 20201008201656.19865-1-ophirmu@nvidia.com (mailing list archive)
Headers
Series Add GENEVE protocol parsing to testpmd |

Message

Ophir Munk Oct. 8, 2020, 8:16 p.m. UTC
  v1:
Initial version
v2:
Rebased + Minor update in protocol options field:
char opts[0] ===> uint8_t opts[]
v3:
Rebase
document "geneve-port=N" parameter
v4:
Mispelling corrections
v5:
Rebase + Updates following review
http://patches.dpdk.org/patch/77734/
v6:
Rebase + Updates following reviews: more cleanup and added documentation.
v7:
Updates following reviews: rename geneve-port as geneve-parsed-port + added documentation.


Ophir Munk (3):
  app/testpmd: add GENEVE parsing
  app/testpmd: enable configuring GENEVE port
  app/testpmd: tunnel parsing protocols cleanup

 app/test-pmd/cmdline_flow.c                 |   3 +-
 app/test-pmd/csumonly.c                     | 129 ++++++++++++++++++----------
 app/test-pmd/parameters.c                   |  15 +++-
 app/test-pmd/testpmd.h                      |   1 +
 doc/guides/testpmd_app_ug/run_app.rst       |   6 ++
 doc/guides/testpmd_app_ug/testpmd_funcs.rst |   6 +-
 lib/librte_net/meson.build                  |   3 +-
 lib/librte_net/rte_geneve.h                 |  66 ++++++++++++++
 lib/librte_net/rte_vxlan.h                  |   1 +
 9 files changed, 177 insertions(+), 53 deletions(-)
 create mode 100644 lib/librte_net/rte_geneve.h
  

Comments

Ferruh Yigit Oct. 9, 2020, 12:49 p.m. UTC | #1
On 10/8/2020 9:16 PM, Ophir Munk wrote:
> v1:
> Initial version
> v2:
> Rebased + Minor update in protocol options field:
> char opts[0] ===> uint8_t opts[]
> v3:
> Rebase
> document "geneve-port=N" parameter
> v4:
> Mispelling corrections
> v5:
> Rebase + Updates following review
> http://patches.dpdk.org/patch/77734/
> v6:
> Rebase + Updates following reviews: more cleanup and added documentation.
> v7:
> Updates following reviews: rename geneve-port as geneve-parsed-port + added documentation.
> 
> 
> Ophir Munk (3):
>    app/testpmd: add GENEVE parsing
>    app/testpmd: enable configuring GENEVE port
>    app/testpmd: tunnel parsing protocols cleanup
> 

For series,
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>

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