From: "Зайцев Леонид Алексеевич" <LAZaytsev@sberbank.ru>
To: "users@dpdk.org" <users@dpdk.org>
Subject: hash.rss == 0 on mlx5
Date: Mon, 31 Mar 2025 13:00:50 +0000 [thread overview]
Message-ID: <9209B8F3-FDDD-4A37-B7A7-408DAF5E1772@sberbank.ru> (raw)
[-- Attachment #1: Type: text/plain, Size: 2531 bytes --]
Hello
I am encountering an issue where the RSS value for some packets is set to 0 when I try to calculate it. Here’s my code for configuring RSS:
static constexpr auto kRssHashKeyLen = 40U;
static std::array<uint8_t, kRssHashKeyLen> kSymmetricHashKey = {
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};
rte_eth_conf port_conf{};
rte_eth_rxmode rx_mode{};
rx_mode.mq_mode = RTE_ETH_MQ_RX_RSS;
rx_mode.offloads = RTE_ETH_RX_OFFLOAD_RSS_HASH;
port_conf.rxmode = rx_mode;
port_conf.rx_adv_conf.rss_conf.rss_key = kSymmetricHashKey.data();
port_conf.rx_adv_conf.rss_conf.rss_key_len = kRssHashKeyLen;
port_conf.rx_adv_conf.rss_conf.rss_hf = RTE_ETH_RSS_IP | RTE_ETH_RSS_UDP | RTE_ETH_RSS_TCP;
Setting rx_vec_en=0 on the device helped resolve this problem. However, a new issue has emerged—packets belonging to the same connection sometimes yield different RSS values at the output.
Could you please advise how to address this problem?
DPDK version: 23.11
Regards,
Zaytsev Leonid
УВЕДОМЛЕНИЕ О КОНФИДЕНЦИАЛЬНОСТИ: Это электронное сообщение и любые документы, приложенные к нему, содержат конфиденциальную информацию. Настоящим уведомляем Вас о том, что если это сообщение не предназначено Вам, использование, копирование, распространение информации, содержащейся в настоящем сообщении, а также осуществление любых действий на основе этой информации, строго запрещено. Если Вы получили это сообщение по ошибке, пожалуйста, сообщите об этом отправителю по электронной почте и удалите это сообщение. CONFIDENTIALITY NOTICE: This email and any files attached to it are confidential. If you are not the intended recipient you are notified that using, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited. If you have received this email in error please notify the sender and delete this email.
[-- Attachment #2: Type: text/html, Size: 30438 bytes --]
reply other threads:[~2025-04-01 8:07 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=9209B8F3-FDDD-4A37-B7A7-408DAF5E1772@sberbank.ru \
--to=lazaytsev@sberbank.ru \
--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).