From: Ye Xiaolong <xiaolong.ye@intel.com>
To: David Marchand <david.marchand@redhat.com>
Cc: Congwen Zhang <zhang.congwen@zte.com.cn>,
Wenzhuo Lu <wenzhuo.lu@intel.com>,
"Ananyev, Konstantin" <konstantin.ananyev@intel.com>,
dev <dev@dpdk.org>
Subject: Re: [dpdk-dev] [PATCH] net/ixgbe: fix rss_conf sizeof argument
Date: Wed, 7 Aug 2019 16:57:03 +0800 [thread overview]
Message-ID: <20190807085703.GC73775@intel.com> (raw)
In-Reply-To: <CAJFAV8zPS=1XqqTw70bH+m1WHV6vGKFLnvgZ_EsyXG5FYNbtBA@mail.gmail.com>
On 08/07, David Marchand wrote:
>On Wed, Aug 7, 2019 at 10:28 AM Congwen Zhang <zhang.congwen@zte.com.cn> wrote:
>>
>> The type of rss_conf is struct ixgbe_rte_flow_rss_conf *,
>> not struct rte_eth_rss_conf *.
>
>What is the actual issue?
>Does it deserve a Fixes: tag?
>
>>
>> Signed-off-by: Congwen Zhang <zhang.congwen@zte.com.cn>
>> ---
>> drivers/net/ixgbe/ixgbe_flow.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/net/ixgbe/ixgbe_flow.c b/drivers/net/ixgbe/ixgbe_flow.c
>> index 92377b8..b2a2bfc 100644
>> --- a/drivers/net/ixgbe/ixgbe_flow.c
>> +++ b/drivers/net/ixgbe/ixgbe_flow.c
>> @@ -2874,7 +2874,7 @@ static inline uint8_t signature_match(const struct rte_flow_item pattern[])
>> /* check if the next not void item is END */
>> act = next_no_void_action(actions, act);
>> if (act->type != RTE_FLOW_ACTION_TYPE_END) {
>> - memset(rss_conf, 0, sizeof(struct rte_eth_rss_conf));
>> + memset(rss_conf, 0, sizeof(struct ixgbe_rte_flow_rss_conf));
>
>Not sure what the maintainer prefers, but I would go with:
>+ memset(rss_conf, 0, sizeof(*rss_conf));
>
Since all other occurrences of memset in ixgbe_flow.c are using
memset(aaa, 0, sizeof(struct bbb))
format, maybe it's better to make it consistent with others.
Thanks,
Xiaolong
>> rte_flow_error_set(error, EINVAL,
>> RTE_FLOW_ERROR_TYPE_ACTION,
>> act, "Not supported action.");
>> --
>> 1.8.3.1
>>
>
>--
>David Marchand
next prev parent reply other threads:[~2019-08-07 8:57 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-07 7:47 Congwen Zhang
2019-08-07 8:40 ` Ye Xiaolong
2019-08-07 8:41 ` David Marchand
2019-08-07 8:57 ` Ye Xiaolong [this message]
2019-08-07 8:58 ` David Marchand
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=20190807085703.GC73775@intel.com \
--to=xiaolong.ye@intel.com \
--cc=david.marchand@redhat.com \
--cc=dev@dpdk.org \
--cc=konstantin.ananyev@intel.com \
--cc=wenzhuo.lu@intel.com \
--cc=zhang.congwen@zte.com.cn \
/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).