我无法理解x710哈希设置。我的以下理解正确吗?
Q2:什么是hash_inset?例如,在
文档:For example, to use only 48bit prefix for IPv6 src address for IPv6 TCP RSS:
testpmd> port config 0 pctype 43 hash_inset clear all
testpmd> port config 0 pctype 43 hash_inset set field 13
testpmd> port config 0 pctype 43 hash_inset set field 14
testpmd> port config 0 pctype 43 hash_inset set field 15
我从数据表中发现pctype 43是NonFIPV6, TCP
,但是字段13、14、15与src地址的48位前缀有什么关系?
rte_eth_dev_filter_ctrl()
之类的通用函数和诸如rte_pmd_i40e_inset_set
之类i40e特定的函数。我需要他们两个一起工作吗?他们之间有什么关系吗?非常感谢。