ifconfig 数据包计数

发布于 2024-08-24 10:46:29 字数 128 浏览 8 评论 0 原文

如果我输入 ifconfig,我会收到 Tx 和 RX 的数据包...增加此计数器的代码片段到底在哪里? 它在网络驱动程序本身中吗?或者在内核中?

如果可能,请提供所使用的计数器变量的 lxr 链接。

谢谢 !

if I type ifconfig i get packet for Tx and RX ... where exactly the piece of code to increment this counter?
Is it in the network driver itself? or in the kernel ?

If possible please provide lxr link of the counter variable used.

Thx !

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

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

发布评论

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

评论(2

子栖 2024-08-31 10:46:29

这是在单独的网络驱动程序中完成的。

例如,对于 rtl8139too 驱动程序,TX 计数在第 1786 行递增 (参见此处)。

It's done in the individual network drivers.

Eg, for the rtl8139too driver, the TX count is incremented on line 1786 (see here).

海之角 2024-08-31 10:46:29

ifconfig 从 procfs 读取统计信息。 proc 中找到的值由内核更新,并最终归结为网卡的驱动程序。

ifconfig read the statistics off from procfs. The values found in proc is updated by the kernel and ultimately boils down to the drivers of the network card.

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