netdev_open 之后会发生什么?

发布于 2024-09-08 11:10:36 字数 121 浏览 7 评论 0原文

我正在尝试了解无线 Linux 设备驱动程序。

那么调用 netdev_open 后......

会发生什么?

我知道数据包是通过 xmit 函数传输的,但是代码是如何到达那里的?

I'm trying to understand a wireless linux device driver.

So after netdev_open is called...

what happens?

I know packets are being transmitted through an xmit function, but how does the code get there?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花开浅夏 2024-09-15 11:10:36

netdev 的 dev->hard_start_xmit() 函数是从网络核心调用的 - 请参阅 net/core/dev.c (特别是 dev_hard_start_xmit( )dev_queue_xmit())。这些函数依次从协议处理程序中调用 - 请参阅 net/ipv4/ip_output.c 中的 ip_queue_xmit() 示例。

The dev->hard_start_xmit() function for the netdev is called out of the networking core - see net/core/dev.c (in particular dev_hard_start_xmit() and dev_queue_xmit()). These functions are in turn called out from the protocol handlers - see for example ip_queue_xmit() in net/ipv4/ip_output.c.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文