From: Dekel Peled Date: Thu, 6 Dec 2018 12:06:14 +0000 (+0200) Subject: doc: fix flow action command names in testpmd guide X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=47182a79db2f3eb8064c354fca24d96191da97bd;p=dpdk.git doc: fix flow action command names in testpmd guide testpmd actions set_tp_src and set_tp_dst documentation adds the of_ prefix to action names, while the implementation doesn't add it. This patch removes the prefix from action names in testpmd documentation. Fixes: 9ccc94919500 ("ethdev: add flow API actions to modify TCP/UDP port numbers") Cc: stable@dpdk.org Signed-off-by: Dekel Peled Acked-by: Ori Kam Acked-by: Rahul Lakkireddy --- diff --git a/doc/guides/testpmd_app_ug/testpmd_funcs.rst b/doc/guides/testpmd_app_ug/testpmd_funcs.rst index 63e4a2d196..cbf23e928d 100644 --- a/doc/guides/testpmd_app_ug/testpmd_funcs.rst +++ b/doc/guides/testpmd_app_ug/testpmd_funcs.rst @@ -3931,12 +3931,12 @@ This section lists supported actions and their attributes, if any. - ``ipv6_addr``: New IPv6 destination address. -- ``of_set_tp_src``: Set a new source port number in the outermost TCP/UDP +- ``set_tp_src``: Set a new source port number in the outermost TCP/UDP header. - ``port``: New TCP/UDP source port number. -- ``of_set_tp_dst``: Set a new destination port number in the outermost TCP/UDP +- ``set_tp_dst``: Set a new destination port number in the outermost TCP/UDP header. - ``port``: New TCP/UDP destination port number.