获取英特尔网络接口卡支持的 RSS 描述符队列号
Get Intel Network Interface Card Supported RSS Descriptor Queue Number
有没有办法以编程方式为 Centos5 中的 Intel 网络接口卡获取支持的接收端缩放描述符队列数?
例如I210
我想得到4
,对于I350
我想得到8
.
我将在 modprobe.conf
文件中使用该值将 RSS 参数传递给 igb 模块。例如:options igb RSS=4,8
我尝试了 lspci -vvv
和 ethtool -i interface
,但其中 none 对我有用。
经过一些研究,我发现将 0
分配给 igb 模块的所有 RSS 参数就足够了。它会自动分配最少 cpu 个号码或队列号码。例如:options igb RSS=0,0
来自 igb 驱动程序的自述文件:
0 = Assign up to the lesser value of the number of CPUs or the number of queues
有没有办法以编程方式为 Centos5 中的 Intel 网络接口卡获取支持的接收端缩放描述符队列数?
例如I210
我想得到4
,对于I350
我想得到8
.
我将在 modprobe.conf
文件中使用该值将 RSS 参数传递给 igb 模块。例如:options igb RSS=4,8
我尝试了 lspci -vvv
和 ethtool -i interface
,但其中 none 对我有用。
经过一些研究,我发现将 0
分配给 igb 模块的所有 RSS 参数就足够了。它会自动分配最少 cpu 个号码或队列号码。例如:options igb RSS=0,0
来自 igb 驱动程序的自述文件:
0 = Assign up to the lesser value of the number of CPUs or the number of queues