【问题标题】:Linux Kernel module calling a function in another moduleLinux内核模块调用另一个模块中的函数 【发布时间】:2016-05-31 15:41:17 【问题描述】: linux内核模块中的函数是否可以调用另一个模块中的函数? 【问题讨论】: stackoverflow.com/questions/9820458/kernel-modules-develop/… How to call exported kernel module functions from another module?的可能重复 标签: c linux-kernel 【解决方案1】: 是的。当然,必须加载其他内核模块。 举个例子,看看USB代码,它被实现为多层驱动,每一层都在自己的模块中。参考链接here。 【讨论】: