From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id BAC7BA0C43; Fri, 16 Apr 2021 13:04:30 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6D9A71414D6; Fri, 16 Apr 2021 13:04:24 +0200 (CEST) Received: from szxga07-in.huawei.com (szxga07-in.huawei.com [45.249.212.35]) by mails.dpdk.org (Postfix) with ESMTP id 1800B141116 for ; Fri, 16 Apr 2021 13:04:21 +0200 (CEST) Received: from DGGEMS414-HUB.china.huawei.com (unknown [172.30.72.60]) by szxga07-in.huawei.com (SkyGuard) with ESMTP id 4FMCvr1QPVzB1jW; Fri, 16 Apr 2021 19:02:00 +0800 (CST) Received: from localhost.localdomain (10.69.192.56) by DGGEMS414-HUB.china.huawei.com (10.3.19.214) with Microsoft SMTP Server id 14.3.498.0; Fri, 16 Apr 2021 19:04:11 +0800 From: Chengchang Tang To: CC: , , , Date: Fri, 16 Apr 2021 19:04:31 +0800 Message-ID: <1618571071-5927-3-git-send-email-tangchengchang@huawei.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1618571071-5927-1-git-send-email-tangchengchang@huawei.com> References: <1618571071-5927-1-git-send-email-tangchengchang@huawei.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.69.192.56] X-CFilter-Loop: Reflected Subject: [dpdk-dev] [RFC 2/2] app/testpmd: add cmd for bonding Tx prepare X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" Add new command to support enable/disable Tx prepare on each slave of a bonded device. This helps to test some Tx HW offloads (e.g. checksum and TSO) for boned devices in testpmd. The related commands are as follows: set bonding tx_prepare [enable|disable] When this option is enabled, bonding driver would call rte_eth_dev_prepare to do some adjustment to the packets in the fast path to meet the device's requirement to turn on some HW offload(e.g. processing pseudo headers when Tx checksum offload enabled). This help bonded device to use more Tx offloads. Signed-off-by: Chengchang Tang --- app/test-pmd/cmdline.c | 66 +++++++++++++++++++++++++++++ doc/guides/testpmd_app_ug/testpmd_funcs.rst | 9 ++++ 2 files changed, 75 insertions(+) diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c index f44116b..2d1b3b6 100644 --- a/app/test-pmd/cmdline.c +++ b/app/test-pmd/cmdline.c @@ -647,6 +647,9 @@ static void cmd_help_long_parsed(void *parsed_result, "set bonding lacp dedicated_queues (enable|disable)\n" " Enable/disable dedicated queues for LACP control traffic.\n\n" + "set bonding tx_prepare (enable|disable)\n" + " Enable/disable tx_prepare for fast path traffic.\n\n" + #endif "set link-up port (port_id)\n" " Set link up for a port.\n\n" @@ -5886,6 +5889,68 @@ cmdline_parse_inst_t cmd_set_lacp_dedicated_queues = { } }; +/* *** SET BONDING TX_PREPARE *** */ +struct cmd_set_bonding_tx_prepare_result { + cmdline_fixed_string_t set; + cmdline_fixed_string_t bonding; + cmdline_fixed_string_t tx_prepare; + portid_t port_id; + cmdline_fixed_string_t mode; +}; + +static void cmd_set_bonding_tx_prepare_parsed(void *parsed_result, + __rte_unused struct cmdline *cl, + __rte_unused void *data) +{ + struct cmd_set_bonding_tx_prepare_result *res = parsed_result; + portid_t port_id = res->port_id; + + if (!strcmp(res->mode, "enable")) { + if (rte_eth_bond_tx_prepare_enable(port_id) == 0) + printf("Tx prepare for bonding device enabled\n"); + else + printf("Enabling bonding device Tx prepare " + "on port %d failed\n", port_id); + } else if (!strcmp(res->mode, "disable")) { + if (rte_eth_bond_tx_prepare_disable(port_id) == 0) + printf("Tx prepare for bonding device disabled\n"); + else + printf("Disabling bonding device Tx prepare " + "on port %d failed\n", port_id); + } +} + +cmdline_parse_token_string_t cmd_setbonding_tx_prepare_set = +TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_tx_prepare_result, + set, "set"); +cmdline_parse_token_string_t cmd_setbonding_tx_prepare_bonding = +TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_tx_prepare_result, + bonding, "bonding"); +cmdline_parse_token_string_t cmd_setbonding_tx_prepare_tx_prepare = +TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_tx_prepare_result, + tx_prepare, "tx_prepare"); +cmdline_parse_token_num_t cmd_setbonding_tx_prepare_port_id = +TOKEN_NUM_INITIALIZER(struct cmd_set_bonding_tx_prepare_result, + port_id, RTE_UINT16); +cmdline_parse_token_string_t cmd_setbonding_tx_prepare_mode = +TOKEN_STRING_INITIALIZER(struct cmd_set_bonding_tx_prepare_result, + mode, "enable#disable"); + +cmdline_parse_inst_t cmd_set_bond_tx_prepare = { + .f = cmd_set_bonding_tx_prepare_parsed, + .help_str = "set bonding tx_prepare enable|disable: " + "Enable/disable tx_prepare for port_id", + .data = NULL, + .tokens = { + (void *)&cmd_setbonding_tx_prepare_set, + (void *)&cmd_setbonding_tx_prepare_bonding, + (void *)&cmd_setbonding_tx_prepare_tx_prepare, + (void *)&cmd_setbonding_tx_prepare_port_id, + (void *)&cmd_setbonding_tx_prepare_mode, + NULL + } +}; + /* *** SET BALANCE XMIT POLICY *** */ struct cmd_set_bonding_balance_xmit_policy_result { cmdline_fixed_string_t set; @@ -16966,6 +17031,7 @@ cmdline_parse_ctx_t main_ctx[] = { (cmdline_parse_inst_t *) &cmd_set_balance_xmit_policy, (cmdline_parse_inst_t *) &cmd_set_bond_mon_period, (cmdline_parse_inst_t *) &cmd_set_lacp_dedicated_queues, + (cmdline_parse_inst_t *) &cmd_set_bond_tx_prepare, (cmdline_parse_inst_t *) &cmd_set_bonding_agg_mode_policy, #endif (cmdline_parse_inst_t *)&cmd_vlan_offload, diff --git a/doc/guides/testpmd_app_ug/testpmd_funcs.rst b/doc/guides/testpmd_app_ug/testpmd_funcs.rst index 36f0a32..bdbf1ea 100644 --- a/doc/guides/testpmd_app_ug/testpmd_funcs.rst +++ b/doc/guides/testpmd_app_ug/testpmd_funcs.rst @@ -2590,6 +2590,15 @@ when in mode 4 (link-aggregation-802.3ad):: testpmd> set bonding lacp dedicated_queues (port_id) (enable|disable) +set bonding tx_prepare +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Enable Tx prepare on bonding devices to help the slave devices prepare the +packets for some HW offloading (e.g. checksum and TSO):: + + testpmd> set bonding tx_prepare (port_id) (enable|disable) + + set bonding agg_mode ~~~~~~~~~~~~~~~~~~~~ -- 2.7.4