From: Ferruh Yigit <ferruh.yigit@intel.com>
To: Wenjun Wu <wenjun1.wu@intel.com>, <dev@dpdk.org>,
<jingjing.wu@intel.com>, <beilei.xing@intel.com>,
<qi.z.zhang@intel.com>
Subject: Re: [dpdk-dev] [PATCH v1 1/2] net/iavf: remove redundant default RSS field for IP fragment packets
Date: Fri, 13 Aug 2021 12:58:33 +0100 [thread overview]
Message-ID: <e6979b30-5581-dc2d-883b-495b9548bdad@intel.com> (raw)
In-Reply-To: <20210802083619.1003586-1-wenjun1.wu@intel.com>
On 8/2/2021 9:36 AM, Wenjun Wu wrote:
> This patch removes redundant default RSS field for IP fragment packets,
> only src MAC address and dst MAC address are needed.
>
Hi Wenjun,
The impact is not clear, from the description I take this as code refactoring
without any impact but can you please clarify this in the commit log?
Also patch title it too long, can we update as following:
net/iavf: fix default RSS field for IP fragment packets
If so can you please put the Fixes tag? This way patch can be backported too.
> Signed-off-by: Wenjun Wu <wenjun1.wu@intel.com>
> ---
> drivers/net/iavf/iavf_hash.c | 26 ++------------------------
> 1 file changed, 2 insertions(+), 24 deletions(-)
>
> diff --git a/drivers/net/iavf/iavf_hash.c b/drivers/net/iavf/iavf_hash.c
> index 2b03dad858..eba55ecea5 100644
> --- a/drivers/net/iavf/iavf_hash.c
> +++ b/drivers/net/iavf/iavf_hash.c
> @@ -624,34 +624,12 @@ iavf_rss_hash_set(struct iavf_adapter *ad, uint64_t rss_hf, bool add)
> }
>
> if (rss_hf & ETH_RSS_FRAG_IPV4) {
> - struct virtchnl_proto_hdrs hdr = {
> - .tunnel_level = TUNNEL_LEVEL_OUTER,
> - .count = 3,
> - .proto_hdr = {
> - proto_hdr_eth,
> - proto_hdr_ipv4,
> - {
> - VIRTCHNL_PROTO_HDR_IPV4_FRAG,
> - FIELD_SELECTOR(VIRTCHNL_PROTO_HDR_IPV4_FRAG_PKID),
> - {BUFF_NOUSED},
> - },
> - },
> - };
> - rss_cfg.proto_hdrs = hdr;
> + rss_cfg.proto_hdrs = outer_ipv4_tmplt;
> iavf_add_del_rss_cfg(ad, &rss_cfg, add);
> }
>
> if (rss_hf & ETH_RSS_FRAG_IPV6) {
> - struct virtchnl_proto_hdrs hdr = {
> - .tunnel_level = TUNNEL_LEVEL_OUTER,
> - .count = 3,
> - .proto_hdr = {
> - proto_hdr_eth,
> - proto_hdr_ipv6,
> - proto_hdr_ipv6_frag,
> - },
> - };
> - rss_cfg.proto_hdrs = hdr;
> + rss_cfg.proto_hdrs = outer_ipv6_tmplt;
> iavf_add_del_rss_cfg(ad, &rss_cfg, add);
> }
>
>
next prev parent reply other threads:[~2021-08-13 11:58 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-02 8:36 Wenjun Wu
2021-08-13 11:58 ` Ferruh Yigit [this message]
2021-08-17 6:23 ` Wu, Wenjun1
2021-08-17 6:53 ` [dpdk-dev] [PATCH v2 1/2] net/iavf: fix " Wenjun Wu
2021-08-17 8:43 ` [dpdk-dev] [PATCH v3 0/2] " Wenjun Wu
2021-08-29 11:45 ` Zhang, Qi Z
2021-08-17 8:44 ` [dpdk-dev] [PATCH v3 1/2] net/iavf: " Wenjun Wu
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=e6979b30-5581-dc2d-883b-495b9548bdad@intel.com \
--to=ferruh.yigit@intel.com \
--cc=beilei.xing@intel.com \
--cc=dev@dpdk.org \
--cc=jingjing.wu@intel.com \
--cc=qi.z.zhang@intel.com \
--cc=wenjun1.wu@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).