如何从Linux内核模块获取使用计数?
我对正在开发的内核模块的使用计数有疑问。我想打印它以进行调试。如何从模块代码中获取它?
有问题的内核版本 - Linux 2.6.32
I have a problem with use count of kernel module being developed.I'd like to print it for debugging purpose. How can I obtain it from the module code?
Kernel version in question - Linux 2.6.32
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
module_refcount()
将为您提供所传递模块的使用计数。module_refcount()
will give you the use count of the module passed./sbin/lsmod
第三列是使用次数。
/sbin/lsmod
The third column will be the number of usages.