From: "lihuisong (C)" <lihuisong@huawei.com>
To: Ferruh Yigit <ferruh.yigit@xilinx.com>, <xiaoyun.li@intel.com>,
<aman.deep.singh@intel.com>, <yuying.zhang@intel.com>,
<andrew.rybchenko@oktetlabs.ru>
Cc: <dev@dpdk.org>, <thomas@monjalon.net>, <huangdaode@huawei.com>
Subject: Re: [PATCH V3 app/testpmd 4/4] app/testpmd: remove duplicated flow type to string table
Date: Thu, 9 Jun 2022 11:26:49 +0800 [thread overview]
Message-ID: <20a69b54-40ca-f1be-3253-4f5aed741919@huawei.com> (raw)
In-Reply-To: <e40eaba8-ee02-7060-550a-42227885268b@xilinx.com>
在 2022/6/7 23:47, Ferruh Yigit 写道:
> On 6/7/2022 9:32 AM, Huisong Li wrote:
>
>>
>> From: Ferruh Yigit <ferruh.yigit@xilinx.com>
>>
>> Flow type table has two instance, one is used for flow type to string
>> conversion, and other is used for string to flow type conversion.
>> And tables are diverged by time.
>>
>> Unifying tables to prevent maintaining two different tables.
>>
>> Note: made 'flowtype_to_str()' non-static to prevent build error for the
>> case PMDs using it disables. Making function generic, not for some PMDs.
>>
>> Signed-off-by: Ferruh Yigit <ferruh.yigit@xilinx.com>
>> Signed-off-by: Huisong Li <lihuisong@huawei.com>
>> ---
>> app/test-pmd/cmdline.c | 41 +------------------
>> app/test-pmd/config.c | 92 +++++++++++++++++++++++++++---------------
>> app/test-pmd/testpmd.h | 5 +++
>> 3 files changed, 65 insertions(+), 73 deletions(-)
>>
>> diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c
>> index fdd0cada3b..e44bb3f475 100644
>> --- a/app/test-pmd/cmdline.c
>> +++ b/app/test-pmd/cmdline.c
>> @@ -10591,45 +10591,6 @@ do { \
>>
>> #ifdef RTE_NET_I40E
>>
>> -static uint16_t
>> -str2flowtype(char *string)
>> -{
>> - uint8_t i = 0;
>> - static const struct {
>> - char str[32];
>> - uint16_t type;
>> - } flowtype_str[] = {
>> - {"raw", RTE_ETH_FLOW_RAW},
>> - {"ipv4", RTE_ETH_FLOW_IPV4},
>> - {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4},
>> - {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP},
>> - {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP},
>> - {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP},
>> - {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER},
>> - {"ipv6", RTE_ETH_FLOW_IPV6},
>> - {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6},
>> - {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP},
>> - {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP},
>> - {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP},
>> - {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER},
>> - {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD},
>> - {"ipv6-ex", RTE_ETH_FLOW_IPV6_EX},
>> - {"ipv6-tcp-ex", RTE_ETH_FLOW_IPV6_TCP_EX},
>> - {"ipv6-udp-ex", RTE_ETH_FLOW_IPV6_UDP_EX},
>> - {"gtpu", RTE_ETH_FLOW_GTPU},
>> - };
>> -
>> - for (i = 0; i < RTE_DIM(flowtype_str); i++) {
>> - if (!strcmp(flowtype_str[i].str, string))
>> - return flowtype_str[i].type;
>> - }
>> -
>> - if (isdigit(string[0]) && atoi(string) > 0 && atoi(string) < 64)
>> - return (uint16_t)atoi(string);
>> -
>> - return RTE_ETH_FLOW_UNKNOWN;
>> -}
>> -
>> /* *** deal with flow director filter *** */
>> struct cmd_flow_director_result {
>> cmdline_fixed_string_t flow_director_filter;
>> @@ -10658,7 +10619,7 @@ cmd_flow_director_filter_parsed(void
>> *parsed_result,
>> struct rte_pmd_i40e_flow_type_mapping
>> mapping[RTE_PMD_I40E_FLOW_TYPE_MAX];
>> struct rte_pmd_i40e_pkt_template_conf conf;
>> - uint16_t flow_type = str2flowtype(res->flow_type);
>> + uint16_t flow_type = str_to_flowtype(res->flow_type);
>> uint16_t i, port = res->port_id;
>> uint8_t add;
>>
>> diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c
>> index 209cbcc514..ed0be8036b 100644
>> --- a/app/test-pmd/config.c
>> +++ b/app/test-pmd/config.c
>> @@ -86,6 +86,38 @@ static const struct {
>> },
>> };
>>
>> +#if defined(RTE_NET_I40E) || defined(RTE_NET_IXGBE)
>> +
>
> Although right now 'flowtype_to_str()' & 'str_to_flowtype()' are used
> by code for above PMDs, the functionality is nothing special to any PMD.
> What about making above functions as non-static functions and get rid
> of all related #ifdef?
>
Currently, they are not used anywhere but here. If remove #ifdef, a
warning will encounter.
>
>> +static const struct {
>> + char str[32];
>> + uint16_t ftype;
>> +} flowtype_str_table[] = {
>> + {"raw", RTE_ETH_FLOW_RAW},
>> + {"ipv4", RTE_ETH_FLOW_IPV4},
>> + {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4},
>> + {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP},
>> + {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP},
>> + {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP},
>> + {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER},
>> + {"ipv6", RTE_ETH_FLOW_IPV6},
>> + {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6},
>> + {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP},
>> + {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP},
>> + {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP},
>> + {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER},
>> + {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD},
>> + {"ipv6-ex", RTE_ETH_FLOW_IPV6_EX},
>> + {"ipv6-tcp-ex", RTE_ETH_FLOW_IPV6_TCP_EX},
>> + {"ipv6-udp-ex", RTE_ETH_FLOW_IPV6_UDP_EX},
>> + {"port", RTE_ETH_FLOW_PORT},
>> + {"vxlan", RTE_ETH_FLOW_VXLAN},
>> + {"geneve", RTE_ETH_FLOW_GENEVE},
>> + {"nvgre", RTE_ETH_FLOW_NVGRE},
>> + {"vxlan-gpe", RTE_ETH_FLOW_VXLAN_GPE},
>> + {"gtpu", RTE_ETH_FLOW_GTPU},
>> +};
>> +#endif
>> +
>> const struct rss_type_info rss_offload_table[] = {
>> {"ipv4", RTE_ETH_RSS_IPV4},
>> {"ipv4-frag", RTE_ETH_RSS_FRAG_IPV4},
>> @@ -5713,41 +5745,35 @@ set_record_burst_stats(uint8_t on_off)
>> record_burst_stats = on_off;
>> }
>>
>> +#ifdef RTE_NET_I40E
>> +
>> +uint16_t
>> +str_to_flowtype(const char *string)
>> +{
>> + uint8_t i;
>> +
>> + for (i = 0; i < RTE_DIM(flowtype_str_table); i++) {
>> + if (!strcmp(flowtype_str_table[i].str, string))
>> + return flowtype_str_table[i].ftype;
>> + }
>> +
>> + if (isdigit(string[0])) {
>> + int val = atoi(string);
>> + if (val > 0 && val < 64)
>> + return (uint16_t)val;
>> + }
>> +
>> + return RTE_ETH_FLOW_UNKNOWN;
>> +}
>> +
>> +#endif /* RTE_NET_I40E */
>> +
>> #if defined(RTE_NET_I40E) || defined(RTE_NET_IXGBE)
>> -static char*
>> +
>> +static const char*
>> flowtype_to_str(uint16_t flow_type)
>> {
>> - struct flow_type_info {
>> - char str[32];
>> - uint16_t ftype;
>> - };
>> -
>> uint8_t i;
>> - static struct flow_type_info flowtype_str_table[] = {
>> - {"raw", RTE_ETH_FLOW_RAW},
>> - {"ipv4", RTE_ETH_FLOW_IPV4},
>> - {"ipv4-frag", RTE_ETH_FLOW_FRAG_IPV4},
>> - {"ipv4-tcp", RTE_ETH_FLOW_NONFRAG_IPV4_TCP},
>> - {"ipv4-udp", RTE_ETH_FLOW_NONFRAG_IPV4_UDP},
>> - {"ipv4-sctp", RTE_ETH_FLOW_NONFRAG_IPV4_SCTP},
>> - {"ipv4-other", RTE_ETH_FLOW_NONFRAG_IPV4_OTHER},
>> - {"ipv6", RTE_ETH_FLOW_IPV6},
>> - {"ipv6-frag", RTE_ETH_FLOW_FRAG_IPV6},
>> - {"ipv6-tcp", RTE_ETH_FLOW_NONFRAG_IPV6_TCP},
>> - {"ipv6-udp", RTE_ETH_FLOW_NONFRAG_IPV6_UDP},
>> - {"ipv6-sctp", RTE_ETH_FLOW_NONFRAG_IPV6_SCTP},
>> - {"ipv6-other", RTE_ETH_FLOW_NONFRAG_IPV6_OTHER},
>> - {"l2_payload", RTE_ETH_FLOW_L2_PAYLOAD},
>> - {"ipv6-ex", RTE_ETH_FLOW_IPV6_EX},
>> - {"ipv6-tcp-ex", RTE_ETH_FLOW_IPV6_TCP_EX},
>> - {"ipv6-udp-ex", RTE_ETH_FLOW_IPV6_UDP_EX},
>> - {"port", RTE_ETH_FLOW_PORT},
>> - {"vxlan", RTE_ETH_FLOW_VXLAN},
>> - {"geneve", RTE_ETH_FLOW_GENEVE},
>> - {"nvgre", RTE_ETH_FLOW_NVGRE},
>> - {"vxlan-gpe", RTE_ETH_FLOW_VXLAN_GPE},
>> - {"gtpu", RTE_ETH_FLOW_GTPU},
>> - };
>>
>> for (i = 0; i < RTE_DIM(flowtype_str_table); i++) {
>> if (flowtype_str_table[i].ftype == flow_type)
>> @@ -5821,7 +5847,7 @@ print_fdir_flex_mask(struct
>> rte_eth_fdir_flex_conf *flex_conf, uint32_t num)
>> {
>> struct rte_eth_fdir_flex_mask *mask;
>> uint32_t i, j;
>> - char *p;
>> + const char *p;
>>
>> for (i = 0; i < flex_conf->nb_flexmasks; i++) {
>> mask = &flex_conf->flex_mask[i];
>> @@ -5837,7 +5863,7 @@ static inline void
>> print_fdir_flow_type(uint32_t flow_types_mask)
>> {
>> int i;
>> - char *p;
>> + const char *p;
>>
>> for (i = RTE_ETH_FLOW_UNKNOWN; i < RTE_ETH_FLOW_MAX; i++) {
>> if (!(flow_types_mask & (1 << i)))
>> diff --git a/app/test-pmd/testpmd.h b/app/test-pmd/testpmd.h
>> index 6693813dda..b7931a2bee 100644
>> --- a/app/test-pmd/testpmd.h
>> +++ b/app/test-pmd/testpmd.h
>> @@ -1086,6 +1086,11 @@ void pmd_test_exit(void);
>> #if defined(RTE_NET_I40E) || defined(RTE_NET_IXGBE)
>> void fdir_get_infos(portid_t port_id);
>> #endif
>> +
>> +#ifdef RTE_NET_I40E
>> +uint16_t str_to_flowtype(const char *string);
>> +#endif
>> +
>> void fdir_set_flex_mask(portid_t port_id,
>> struct rte_eth_fdir_flex_mask *cfg);
>> void fdir_set_flex_payload(portid_t port_id,
>> --
>> 2.33.0
>>
>
> .
next prev parent reply other threads:[~2022-06-09 3:26 UTC|newest]
Thread overview: 72+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-29 10:24 [PATCH V2 0/2] fix RSS types display Huisong Li
2022-04-29 10:24 ` [PATCH V2 1/2] app/testpmd: fix supported RSS offload display Huisong Li
2022-04-29 10:24 ` [PATCH V2 2/2] app/testpmd: unify RSS types display Huisong Li
2022-06-07 8:32 ` [PATCH V3 app/testpmd 0/4] fix RSS types and flow type Huisong Li
2022-06-07 8:32 ` [PATCH V3 app/testpmd 1/4] app/testpmd: fix supported RSS offload display Huisong Li
2022-06-07 15:45 ` Ferruh Yigit
2022-06-09 3:25 ` lihuisong (C)
2022-06-17 1:38 ` lihuisong (C)
2022-06-20 12:35 ` Ferruh Yigit
2022-06-21 2:17 ` lihuisong (C)
2022-06-07 8:32 ` [PATCH V3 app/testpmd 2/4] app/testpmd: unify RSS types display and obtaination Huisong Li
2022-06-07 15:46 ` Ferruh Yigit
2022-06-09 3:25 ` lihuisong (C)
2022-06-07 8:32 ` [PATCH V3 app/testpmd 3/4] app/testpmd: compact RSS types output in some commands Huisong Li
2022-06-07 15:46 ` Ferruh Yigit
2022-06-09 3:41 ` lihuisong (C)
2022-06-20 12:37 ` Ferruh Yigit
2022-06-07 8:32 ` [PATCH V3 app/testpmd 4/4] app/testpmd: remove duplicated flow type to string table Huisong Li
2022-06-07 15:47 ` Ferruh Yigit
2022-06-09 3:26 ` lihuisong (C) [this message]
2022-06-20 12:38 ` Ferruh Yigit
2022-06-21 2:18 ` lihuisong (C)
2022-06-21 7:51 ` Ferruh Yigit
2022-06-21 12:21 ` lihuisong (C)
2022-06-24 4:12 ` [PATCH V4 0/7] app/testpmd: fix RSS and flow type Huisong Li
2022-06-24 4:12 ` [PATCH V4 1/7] app/testpmd: fix supported RSS offload display Huisong Li
2022-06-24 4:12 ` [PATCH V4 2/7] app/testpmd: unify the name of L2 payload offload Huisong Li
2022-06-24 4:12 ` [PATCH V4 3/7] app/testpmd: refactor config all RSS command Huisong Li
2022-06-24 4:12 ` [PATCH V4 4/7] app/testpmd: unify RSS types display Huisong Li
2022-06-24 4:12 ` [PATCH V4 5/7] app/testpmd: compact RSS types output in some commands Huisong Li
2022-06-24 4:12 ` [PATCH V4 6/7] app/testpmd: reorder elements in RSS type table array Huisong Li
2022-06-24 4:12 ` [PATCH V4 7/7] app/testpmd: remove duplicated flow type to string table Huisong Li
2022-06-24 7:23 ` [PATCH V5 0/7] app/testpmd: fix RSS and flow type Huisong Li
2022-06-24 7:23 ` [PATCH V5 1/7] app/testpmd: fix supported RSS offload display Huisong Li
2022-06-24 13:01 ` Ferruh Yigit
2022-06-25 2:12 ` lihuisong (C)
2022-06-28 13:18 ` Ferruh Yigit
2022-06-24 7:23 ` [PATCH V5 2/7] app/testpmd: unify the name of L2 payload offload Huisong Li
2022-06-24 13:53 ` Ferruh Yigit
2022-06-25 2:12 ` lihuisong (C)
2022-06-28 13:17 ` Ferruh Yigit
2022-06-29 1:47 ` lihuisong (C)
2022-06-24 7:23 ` [PATCH V5 3/7] app/testpmd: refactor config all RSS command Huisong Li
2022-06-24 13:55 ` Ferruh Yigit
2022-06-25 2:13 ` lihuisong (C)
2022-06-24 7:23 ` [PATCH V5 4/7] app/testpmd: unify RSS types display Huisong Li
2022-06-24 7:23 ` [PATCH V5 5/7] app/testpmd: compact RSS types output in some commands Huisong Li
2022-06-24 14:04 ` Ferruh Yigit
2022-06-25 2:13 ` lihuisong (C)
2022-06-28 13:18 ` Ferruh Yigit
2022-06-24 7:24 ` [PATCH V5 6/7] app/testpmd: reorder elements in RSS type table array Huisong Li
2022-06-24 14:00 ` Ferruh Yigit
2022-06-25 2:14 ` lihuisong (C)
2022-06-24 7:24 ` [PATCH V5 7/7] app/testpmd: remove duplicated flow type to string table Huisong Li
2022-06-24 8:55 ` [PATCH V5 0/7] app/testpmd: fix RSS and flow type lihuisong (C)
2022-06-24 8:59 ` David Marchand
2022-06-24 9:54 ` lihuisong (C)
2022-06-24 10:44 ` Ferruh Yigit
2022-06-25 1:09 ` lihuisong (C)
2022-06-28 13:18 ` Ferruh Yigit
2022-06-29 8:34 ` [PATCH V6 0/8] " Huisong Li
2022-06-29 8:34 ` [PATCH V6 1/8] app/testpmd: fix supported RSS offload display Huisong Li
2022-06-29 8:34 ` [PATCH V6 2/8] app/testpmd: unify the name of L2 payload offload Huisong Li
2022-06-29 8:34 ` [PATCH V6 3/8] doc: testpmd rename RSS type ether to L2 payload Huisong Li
2022-06-29 8:34 ` [PATCH V6 4/8] app/testpmd: refactor config all RSS command Huisong Li
2022-06-29 8:34 ` [PATCH V6 5/8] app/testpmd: unify RSS types display Huisong Li
2022-06-29 8:34 ` [PATCH V6 6/8] app/testpmd: compact RSS types output in some commands Huisong Li
2022-06-29 8:34 ` [PATCH V6 7/8] app/testpmd: reorder elements in RSS type table array Huisong Li
2022-06-29 8:34 ` [PATCH V6 8/8] app/testpmd: remove duplicated flow type to string table Huisong Li
2022-06-29 9:59 ` [PATCH V6 0/8] app/testpmd: fix RSS and flow type lihuisong (C)
2022-06-29 14:13 ` Ferruh Yigit
2022-06-29 20:05 ` Ferruh Yigit
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20a69b54-40ca-f1be-3253-4f5aed741919@huawei.com \
--to=lihuisong@huawei.com \
--cc=aman.deep.singh@intel.com \
--cc=andrew.rybchenko@oktetlabs.ru \
--cc=dev@dpdk.org \
--cc=ferruh.yigit@xilinx.com \
--cc=huangdaode@huawei.com \
--cc=thomas@monjalon.net \
--cc=xiaoyun.li@intel.com \
--cc=yuying.zhang@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).