我尝试重做此主题中找到的内核模块代码如何在 Linux 内核模块中获取电池电量?。但是当我尝试使用 power_supply.h 中包含的函数时...
如何在 Linux 内核模块中获取电池电量?中 找到的内核模块代码 。但是,当我尝试使用 power_supply.h 头文件中包含的函数时,模块加载失败,因为它无法识别 power_supply_get_by_name 函数。
这是我在内核版本为 4.15.0-101-generic 的 Ubuntu 18.04 上使用的代码:
#include <linux/module.h>
#include <linux/power_supply.h>
static int __init test_init (void)
{
struct power_supply *psy;
char name[] = "BAT1";
psy = power_supply_get_by_name(name);
printk(KERN_DEBUG "Test module inserted");
return 0;
}
static void __exit test_exit (void)
{
printk(KERN_DEBUG "Test module removed");
}
module_init (test_init);
module_exit (test_exit);
除了有关模块许可证的警告外,我在编译时没有遇到任何错误,我认为这与我的问题无关,但我收到以下错误:
我检查了 kallsyms proc 文件,如果我理解了这个主题,该函数被指示可在其他内核模块中使用 /proc/kallsyms 中的 T 和 t 有什么区别 。以下是读取 kallsyms 文件的输出:
ffffffff8e9bd270 T power_supply_get_by_name
有谁知道为什么这不起作用,而我可以毫无问题地使用其他 Linux 标头函数,如果可以,我该如何解决我的问题?
提前致谢