驱动程序是否使用 Linux NAPI 接口?
有没有办法确认 Linux 以太网驱动程序是否使用 NAPI 接口?
Is there a way to confirm if a Linux Ethernet driver is using the NAPI interface?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道这听起来是一个显而易见的答案,但请检查源代码以查看是否正在使用 NAPI API。
例如:
netif_receive_skb() 而不是 netif_rx()。
如果这两个问题的结果均为“是”,则您的驱动程序正在使用 NAPI。
注意:以下内容是从此处复制的,
请查看此维基百科文章 及其外部链接以获取更多详细信息。
我希望这有帮助。
I know this sounds like an obvious answer, but check the source to see if the NAPI API is being used.
For example:
netif_receive_skb() instead of netif_rx().
If both of those questions lead to 'YES', the your driver is using NAPI.
Note: The following was copied from here
Check out this wikipedia article and the external links in it for more detailed information.
I hope that helps.