From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id E21852BF3 for ; Fri, 13 Jan 2017 09:43:19 +0100 (CET) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga101.jf.intel.com with ESMTP; 13 Jan 2017 00:43:18 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,220,1477983600"; d="scan'208";a="52782645" Received: from irsmsx106.ger.corp.intel.com ([163.33.3.31]) by fmsmga005.fm.intel.com with ESMTP; 13 Jan 2017 00:43:18 -0800 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.173]) by IRSMSX106.ger.corp.intel.com ([169.254.8.197]) with mapi id 14.03.0248.002; Fri, 13 Jan 2017 08:43:17 +0000 From: "De Lara Guarch, Pablo" To: "Yang, Qiming" , "dev@dpdk.org" CC: "Yang, Qiming" Thread-Topic: [dpdk-dev] [PATCH v5] app/testpmd: supported offload capabilities query Thread-Index: AQHSbISHcvMZ81sJI0a7wgsOSg5rDqE2FOkA Date: Fri, 13 Jan 2017 08:43:16 +0000 Message-ID: References: <1482485513-7087-1-git-send-email-qiming.yang@intel.com> <1484191582-17293-1-git-send-email-qiming.yang@intel.com> In-Reply-To: <1484191582-17293-1-git-send-email-qiming.yang@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNzE5Yjc1OWYtNWM1My00NzlmLWEwYjctODY3OTg3OTYyYzEwIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6ImNRTnRFUTZBa2hReGN5SUxVYVV2ZDBMZnRiYm5YcTNFU1VKaWRmTXVVMU09In0= x-ctpclassification: CTP_IC x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v5] app/testpmd: supported offload capabilities query 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: , X-List-Received-Date: Fri, 13 Jan 2017 08:43:20 -0000 Hi Qiming, > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Qiming Yang > Sent: Thursday, January 12, 2017 3:26 AM > To: dev@dpdk.org > Cc: Yang, Qiming > Subject: [dpdk-dev] [PATCH v5] app/testpmd: supported offload capabilitie= s > query >=20 > Add two new commands "show port cap " and "show > port cap all"to diaplay what offload capabilities supported > in ports. It will not only display all the capabilities of > the port, but also the enabling condition for each capability > in the running time. >=20 > Signed-off-by: Qiming Yang > Acked-by: Jingjing Wu > Acked-by: Beilei Xing > --- > v2 changes: > * fixed the output style as Ferruh's patch show and add some > description in docs for new functions. > v3 changes: > * add new command in cmd_help_long_parsed. > v4 changes: > * use 'cap' instead of 'capa'. > v5 changes: > * rebased, fixed the inappropriate expression and adjusted the > output order. > --- > --- > app/test-pmd/cmdline.c | 17 ++- > app/test-pmd/config.c | 175 > ++++++++++++++++++++++++++++ > app/test-pmd/testpmd.h | 1 + > doc/guides/testpmd_app_ug/testpmd_funcs.rst | 12 +- > 4 files changed, 195 insertions(+), 10 deletions(-) >=20 > diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c > index 4e8b0d8..6fa1783 100644 > --- a/app/test-pmd/cmdline.c > +++ b/app/test-pmd/cmdline.c ... > cmdline_parse_token_string_t cmd_showportall_show =3D > @@ -5821,13 +5824,14 @@ cmdline_parse_token_string_t > cmd_showportall_port =3D > TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, port, > "port"); > cmdline_parse_token_string_t cmd_showportall_what =3D > TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, what, > - > "info#stats#xstats#fdir#stat_qmap#dcb_tc"); > + > "info#stats#xstats#fdir#stat_qmap#dcb_tc#cap"); > cmdline_parse_token_string_t cmd_showportall_all =3D > TOKEN_STRING_INITIALIZER(struct cmd_showportall_result, all, > "all"); > cmdline_parse_inst_t cmd_showportall =3D { > .f =3D cmd_showportall_parsed, > .data =3D NULL, > - .help_str =3D "show|clear port > info|stats|xstats|fdir|stat_qmap|dcb_tc all", > + .help_str =3D "show|clear port" Missing space after "port" > + "info|stats|xstats|fdir|stat_qmap|dcb_tc|cap all", > .tokens =3D { > (void *)&cmd_showportall_show, > (void *)&cmd_showportall_port, > @@ -5867,6 +5871,8 @@ static void cmd_showport_parsed(void > *parsed_result, > nic_stats_mapping_display(res->portnum); > else if (!strcmp(res->what, "dcb_tc")) > port_dcb_info_display(res->portnum); > + else if (!strcmp(res->what, "cap")) > + port_offload_cap_display(res->portnum); > } >=20 > cmdline_parse_token_string_t cmd_showport_show =3D > @@ -5876,14 +5882,15 @@ cmdline_parse_token_string_t > cmd_showport_port =3D > TOKEN_STRING_INITIALIZER(struct cmd_showport_result, port, > "port"); > cmdline_parse_token_string_t cmd_showport_what =3D > TOKEN_STRING_INITIALIZER(struct cmd_showport_result, what, > - > "info#stats#xstats#fdir#stat_qmap#dcb_tc"); > + > "info#stats#xstats#fdir#stat_qmap#dcb_tc#cap"); > cmdline_parse_token_num_t cmd_showport_portnum =3D > TOKEN_NUM_INITIALIZER(struct cmd_showport_result, portnum, > UINT8); >=20 > cmdline_parse_inst_t cmd_showport =3D { > .f =3D cmd_showport_parsed, > .data =3D NULL, > - .help_str =3D "show|clear port > info|stats|xstats|fdir|stat_qmap|dcb_tc " > + .help_str =3D "show|clear port" Missing space after "port". Also, add a tab in the following line to be consistent with the help_str of the next command. > + "info|stats|xstats|fdir|stat_qmap|dcb_tc|cap " > "", > .tokens =3D { > (void *)&cmd_showport_show, > diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c > index 617e6d4..8a2ef56 100644 > --- a/app/test-pmd/config.c > +++ b/app/test-pmd/config.c ... > + > + if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_TCP_CKSUM) { > + printf("RX TCP checksum: "); > + if (dev->data->dev_conf.rxmode.hw_ip_checksum) > + printf("on\n"); > + else > + printf("off\n"); > + } > + > + if (dev_info.rx_offload_capa & > DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM) > + printf("RX Outer IPv4 checksum: "); Missing on/off? > + > + if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_TCP_LRO) { > + printf("Large receive offload: "); > + if (dev->data->dev_conf.rxmode.enable_lro) > + printf("on\n"); > + else > + printf("off\n"); > + } Thanks for this nice patch. Pablo