Skip to content

Commit e471b6c

Browse files
authored
Merge pull request #114 from CESNET/dpdk-rss
dpdk: changed input of RSS to IP addresses only
2 parents 6fdef62 + cc8c7a7 commit e471b6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

input/dpdk.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ void DpdkCore::configureRSS()
197197
struct rte_eth_rss_conf rssConfig = {
198198
.rss_key = rssKey,
199199
.rss_key_len = RSS_KEY_LEN,
200-
.rss_hf = ETH_RSS_IP | ETH_RSS_TCP | ETH_RSS_UDP,
200+
.rss_hf = ETH_RSS_IP,
201201
};
202202

203203
if (rte_eth_dev_rss_hash_update(m_portId, &rssConfig)) {

0 commit comments

Comments
 (0)