DPDK patches and discussions
 help / color / mirror / Atom feed
From: Wenjun Wu <wenjun1.wu@intel.com>
To: dev@dpdk.org, jingjing.wu@intel.com, beilei.xing@intel.com,
	qi.z.zhang@intel.com
Cc: Wenjun Wu <wenjun1.wu@intel.com>
Subject: [dpdk-dev] [PATCH v2] net/iavf: support default RSS for IP fragment packet
Date: Mon, 12 Jul 2021 16:27:30 +0800	[thread overview]
Message-ID: <20210712082730.908291-1-wenjun1.wu@intel.com> (raw)
In-Reply-To: <20210712023943.800953-1-wenjun1.wu@intel.com>

This patch adds default RSS support for IPv4 and IPv6 fragment packet.

Signed-off-by: Wenjun Wu <wenjun1.wu@intel.com>

---
v2: modify error implementation
---
 drivers/net/iavf/iavf_hash.c | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/drivers/net/iavf/iavf_hash.c b/drivers/net/iavf/iavf_hash.c
index 03dae5d999..2b03dad858 100644
--- a/drivers/net/iavf/iavf_hash.c
+++ b/drivers/net/iavf/iavf_hash.c
@@ -623,6 +623,38 @@ iavf_rss_hash_set(struct iavf_adapter *ad, uint64_t rss_hf, bool add)
 		iavf_add_del_rss_cfg(ad, &rss_cfg, 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;
+		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;
+		iavf_add_del_rss_cfg(ad, &rss_cfg, add);
+	}
+
 	vf->rss_hf = rss_hf & IAVF_RSS_HF_ALL;
 	return 0;
 }
-- 
2.25.1


  reply	other threads:[~2021-07-12  8:45 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-12  2:39 [dpdk-dev] [PATCH v1] " Wenjun Wu
2021-07-12  8:27 ` Wenjun Wu [this message]
2021-07-13  0:44   ` [dpdk-dev] [PATCH v2] " Zhang, Qi Z

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=20210712082730.908291-1-wenjun1.wu@intel.com \
    --to=wenjun1.wu@intel.com \
    --cc=beilei.xing@intel.com \
    --cc=dev@dpdk.org \
    --cc=jingjing.wu@intel.com \
    --cc=qi.z.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).