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
有问题的内核版本 - Linux 2.6.32
2 个解决方案
#1
6
module_refcount()
will give you the use count of the module passed.
module_refcount()将为您提供传递的模块的使用计数。
#2
0
/sbin/lsmod
The third column will be the number of usages.
第三列将是使用次数。
#1
6
module_refcount()
will give you the use count of the module passed.
module_refcount()将为您提供传递的模块的使用计数。
#2
0
/sbin/lsmod
The third column will be the number of usages.
第三列将是使用次数。