DPDK usage discussions
 help / color / mirror / Atom feed
From: Stephen Hemminger <stephen@networkplumber.org>
To: Alex Kiselev <alex@therouter.net>
Cc: users@dpdk.org
Subject: Re: [dpdk-users] RSS hash based on L2 (src mac, dst mac) on Intel 82599 NICs
Date: Tue, 18 Dec 2018 10:36:05 -0800	[thread overview]
Message-ID: <20181218103605.2f69f403@xeon-e3> (raw)
In-Reply-To: <1127504271.20181218200206@therouter.net>

On Tue, 18 Dec 2018 20:02:06 +0300
Alex Kiselev <alex@therouter.net> wrote:

> Hi.
> 
> Is it possible to configure Intel 82599 NICs RSS function to calculate rss hash value
> based on only the L2 src address and dst address for nonIp packets?
> 
> It's possible to do so with Intel x710 cards, but I haven't found the same feature
> for 82599. Have I missed something? Or it's a unique feature available only on x710
> cards?
> 
> Thanks.
> 

In DPDK this is ETH_RSS_L2_PAYLOAD.
The ixgbe driver does not list this is a supported offload type:

#define IXGBE_RSS_OFFLOAD_ALL ( \
	ETH_RSS_IPV4 | \
	ETH_RSS_NONFRAG_IPV4_TCP | \
	ETH_RSS_NONFRAG_IPV4_UDP | \
	ETH_RSS_IPV6 | \
	ETH_RSS_NONFRAG_IPV6_TCP | \
	ETH_RSS_NONFRAG_IPV6_UDP | \
	ETH_RSS_IPV6_EX | \
	ETH_RSS_IPV6_TCP_EX | \
	ETH_RSS_IPV6_UDP_EX)

The Linux driver does not appear to support this either.

  reply	other threads:[~2018-12-18 18:36 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-18 17:02 Alex Kiselev
2018-12-18 18:36 ` Stephen Hemminger [this message]
2018-12-18 18:45   ` Alex Kiselev

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=20181218103605.2f69f403@xeon-e3 \
    --to=stephen@networkplumber.org \
    --cc=alex@therouter.net \
    --cc=users@dpdk.org \
    /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).