From patchwork Thu Dec 6 12:06:14 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dekel Peled X-Patchwork-Id: 48562 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id AF0A35F2A; Thu, 6 Dec 2018 13:08:25 +0100 (CET) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id C2A915F14 for ; Thu, 6 Dec 2018 13:08:23 +0100 (CET) Received: from Internal Mail-Server by MTLPINE1 (envelope-from dekelp@mellanox.com) with ESMTPS (AES256-SHA encrypted); 6 Dec 2018 14:14:24 +0200 Received: from mtl-vdi-280.wap.labs.mlnx. (mtl-vdi-280.wap.labs.mlnx [10.128.130.87]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id wB6C8MJ5016341; Thu, 6 Dec 2018 14:08:22 +0200 From: Dekel Peled To: wenzhuo.lu@intel.com, jingjing.wu@intel.com, bernard.iremonger@intel.com Cc: dev@dpdk.org, orika@mellanox.com, shahafs@mellanox.com, dekelp@mellanox.com, rahul.lakkireddy@chelsio.com Date: Thu, 6 Dec 2018 14:06:14 +0200 Message-Id: <1544097974-5507-1-git-send-email-dekelp@mellanox.com> X-Mailer: git-send-email 1.7.1 Subject: [dpdk-dev] [PATCH] doc: remove redundant "OF" prefix from testpmd doc X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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: rahul.lakkireddy@chelsio.com Signed-off-by: Dekel Peled Acked-by: Ori Kam Acked-by: Rahul Lakkireddy --- doc/guides/testpmd_app_ug/testpmd_funcs.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/guides/testpmd_app_ug/testpmd_funcs.rst b/doc/guides/testpmd_app_ug/testpmd_funcs.rst index 056f8bb..9d4f107 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.