SR-IOV允许我们从 PF 创建 VF,现在我想通过 Flow Director 将一些流引导到 VF。
这是ethtool
帮助信息
action N
Specifies the Rx queue to send packets to, or some other action.
loc N
Specify the location/ID to insert the rule. This will overwrite any rule present in that location and will not go through any of the rule ordering process.
delete N
Deletes the RX classification rule with the given ID.
我真的很困惑如何设置 的值,action
以便可以将流匹配过滤器定向到特定的 VF。
我在DPDK Flow Bifurcation How-to Guide中找到了答案(是的,答案不在
SR-IOV
docs 或Ethtool
docs,orz 中)例子:
在哪里:
$queue_index_in_VFn
:变量的位 39:32 定义 VF id + 1;低 32 位表示 VF 的队列索引。因此:$queue_index_in_VF0 = (0x1 & 0xFF) << 32 + [queue index]
.$queue_index_in_VF1 = (0x2 & 0xFF) << 32 + [queue index]
.行动价值结构