DPDK patches and discussions
 help / color / mirror / Atom feed
From: Stephen Hemminger <stephen@networkplumber.org>
To: madhuker.mythri@oracle.com
Cc: ferruh.yigit@intel.com, dev@dpdk.org
Subject: Re: [PATCH] net/tap: Fixed RSS algorithm to support fragmented packets
Date: Fri, 3 Jun 2022 08:53:59 -0700	[thread overview]
Message-ID: <20220603085359.229c898c@hermes.local> (raw)
In-Reply-To: <20220325152809.2035-1-madhuker.mythri@oracle.com>

On Fri, 25 Mar 2022 20:58:09 +0530
madhuker.mythri@oracle.com wrote:

> From: Madhuker Mythri <madhuker.mythri@oracle.com>
> 
> As per analysis on DPDK Tap PMD, the existing RSS algorithm considering 4-tuple(Src-IP, Dst-IP, Src-port and Dst-port) and identification of fragment packets is not done, thus we are seeing all the fragmented chunks of single packet differs RSS hash value and distributed across multiple queues.
> The RSS algorithm assumes that, all the incoming IP packets are based on L4-protocol(UDP/TCP) and trying to fetch the L4 fields(Src-port and Dst-port) for each incoming packet, but for the fragmented packets these L4-header will not be present(except for first packet) and should not consider in RSS hash for L4 header fields in-case of fragmented packets.
> Which is a bug in the RSS algorithm implemented in the BPF functionality under TAP PMD.
> 
> So, modified the RSS eBPF C-program and generated the structure of C-array in the 'tap_bpf_insns.h' file, which is in eBPF byte-code instructions format.
> 
> Bugzilla Id: 870
> 
> Signed-off-by: Madhuker Mythri <madhuker.mythri@oracle.com>
> ---
>  drivers/net/tap/tap_bpf_insns.h   | 3371 +++++++++++++++--------------
>  drivers/net/tap/tap_bpf_program.c |   48 +-
>  2 files changed, 1743 insertions(+), 1676 deletions(-)
>

Going back to the original RSS specs on Windows:
https://docs.microsoft.com/en-us/windows-hardware/drivers/network/rss-hashing-types

There is note there:

	If a NIC receives a packet that has both IP and TCP headers, NDIS_HASH_TCP_IPV4 should not always
	be used. In the case of a fragmented IP packet, NDIS_HASH_IPV4 must be used. 
	This includes the first fragment which contains both IP and TCP headers.

The modified BPF program in this patch does not do that exactly.
Adding port of 0 is not the same hashing a smaller tuple.

IPV6 fragments need similar fix?



  reply	other threads:[~2022-06-03 15:54 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-25 15:28 madhuker.mythri
2022-06-03 15:53 ` Stephen Hemminger [this message]
2022-06-03 16:21   ` Stephen Hemminger
2022-04-20 11:24 madhuker.mythri
2023-01-19 12:03 ` 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=20220603085359.229c898c@hermes.local \
    --to=stephen@networkplumber.org \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@intel.com \
    --cc=madhuker.mythri@oracle.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).