在内核中获取运行时符号的地址

Get address of symbol at runtime in kernel

我正在编写一个 内核模块 并且 kaslr 已启用 我应该使用什么函数来给它一个符号,它 returns 在运行时返回该符号的地址?

对于 Linux,kallsyms_lookup_name() 将查找符号和 return 地址,定义为 here