Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
其他驱动程序可以访问函数中的不同入口点吗?
我知道通过使用EXPORT_SYMBOL我们可以为函数和符号做到这一点。我的困惑是可以read/write入口点被导出。如果我这样做会违反良好的驾驶员习惯吗?
EXPORT_SYMBOL
read
write
您可以使用 EXPORT_SYMBOL() 甚至设备文件操作 read() 和 write() 导出任何全局函数和变量。由于调用它们所需的参数(例如设备的文件指针),从任何内核模块调用它们都将非常困难。