使用 ethtool 禁用 LRO?
我的网卡驱动程序不支持 H/W LRO,但在驱动程序中模拟 LRO。现在可以使用“ethtool -k ethx gro off”禁用 GRO(这是 Linux 网络堆栈功能)。 LRO 也可以使用吗?我知道大多数发行版都有 LRO 或 GRO。因此,如果使用 ethtool 禁用 LRO 是否意味着关闭 H/W LRO 功能或我在驱动程序中执行的 LRO 模拟功能?
My NIC driver does not support H/W LRO but emulates LRO in the driver. Now GRO (which is a linux network stack feature) can be disabled using 'ethtool -k ethx gro off'. Is that available for LRO as well? i know most distros have either LRO or GRO. So if LRO is disabled using ethtool does it imply turning off the H/W LRO feature or the LRO emulation feature that i do in my driver?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,如果您的 ethtool 足够新的话。
在我的 Ubuntu 机器(Natty Narwhal)上,“man ethtool”和“ethtool --help”显示 LRO 的控制方式与 GRO 一样;即
运行“ethtool --help | grep lro”来查看您的是否支持它。
Yes, if your ethtool is new enough.
On my Ubuntu box (Natty Narwhal), "man ethtool" and "ethtool --help" show that LRO is controlled just like GRO; i.e.
Run "ethtool --help | grep lro" to see if yours supports it.