DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] Broken RSS hash computation on Intel 82574L
@ 2015-08-31 12:15 Martin Drašar
  2015-09-01 13:45 ` De Lara Guarch, Pablo
  0 siblings, 1 reply; 7+ messages in thread
From: Martin Drašar @ 2015-08-31 12:15 UTC (permalink / raw)
  To: dev

Hi,

I am using RSS to get identical hash for both directions of a flow.
Everything is working as it should with the Intel 82599ES, but when I
run the same code with the Intel 82574L, then the hash is not calculated
correctly and returns 0 as a hash value for all flows.

I could use the Toeplitz hash implementation from 2.1.0, but I would
rather do it in hardware, because according to specification, 82574L can
do RSS in hardware.

Any ideas what might be wrong?

Thanks in advance,
Martin

conf:
#define RSS_HASH_KEY_LENGTH 40
static uint8_t hash_key[RSS_HASH_KEY_LENGTH] = {
        0x6D, 0x5A, 0x6D, 0x5A, 0x6D, 0x5A, 0x6D, 0x5A,
        0x6D, 0x5A, 0x6D, 0x5A, 0x6D, 0x5A, 0x6D, 0x5A,
        0x6D, 0x5A, 0x6D, 0x5A, 0x6D, 0x5A, 0x6D, 0x5A,
        0x6D, 0x5A, 0x6D, 0x5A, 0x6D, 0x5A, 0x6D, 0x5A,
        0x6D, 0x5A, 0x6D, 0x5A, 0x6D, 0x5A, 0x6D, 0x5A };

static const struct rte_eth_conf port_conf = {
  .link_speed  = 0,
  .link_duplex = 0,
  .rxmode = {
    .mq_mode        = ETH_RSS,
    .max_rx_pkt_len = 0,
    .split_hdr_size = 0,
    .header_split   = 0,
    .hw_ip_checksum = 0,
    .hw_vlan_filter = 0,
    .hw_vlan_strip  = 0,
    .hw_vlan_extend = 0,
    .jumbo_frame    = 0,
    .hw_strip_crc   = 0,
  },
  .txmode = {
    .mq_mode = ETH_DCB_NONE,
  },
  .lpbk_mode = 0,
  .rx_adv_conf = {
    .rss_conf = {
      .rss_key     = hash_key,
      .rss_key_len = RSS_HASH_KEY_LENGTH,
      .rss_hf      = ETH_RSS_PROTO_MASK,
      },
    },
};

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2015-09-01 15:19 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-31 12:15 [dpdk-dev] Broken RSS hash computation on Intel 82574L Martin Drašar
2015-09-01 13:45 ` De Lara Guarch, Pablo
2015-09-01 14:37   ` Martin Drašar
2015-09-01 14:47     ` Matthew Hall
2015-09-01 14:50       ` Avi Kivity
2015-09-01 15:00         ` Martin Drašar
2015-09-01 15:19       ` Jim Thompson

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).