码迷,mamicode.com
首页 > 其他好文 > 详细

EXPORT_SYMBOL的使用

时间:2016-12-26 22:04:32      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:cpp   process   span   bsp   init   save   ref   article   cli   

转自:http://blog.csdn.net/cailiwei712/article/details/7998525

在查看内核驱动代码的时候会经常看到在一些函数后面总会跟EXPORT_SYMBOL()这样的宏定义,通过网上查阅,它的作用大致总结如下:

1、定义说明

     把内核函数的符号导出,也可以理解成将函数名作为符号导出;符号的意思就是函数的入口地址,或者说是把这些符号和对应的地址保存起来的,在内核运行的过程中,可以找到这些符号对应的地址的。

2、相关处理

     (1)、对编译所得的.ko进行strip -S,处理掉调试信息,这样可以大大缩小ko文件的大小;

     (2)、使用KBUILD_EXTRA_SYMBOLS

主要使用于下面这样的场合:

有两个我们自己的模块,其中Module B使用了Module A中的export的函数,因此在Module B的Makefile文件中必须添加:

KBUILD_EXTRA_SYMBOLS += /path/to/ModuleA/Module.symvers

export KBUILD_EXTRA_SYMBOLS

这样在编译Module B时,才不会出现Warning,提示说func1这个符号找不到,而导致编译得到的ko加载时也会出错。

[cpp] view plain copy
 
  1. // Module A (mod_a.c)  
  2. #include<linux/init.h>  
  3. #include<linux/module.h>  
  4. #include<linux/kernel.h>  
  5.   
  6. static int func1(void)  
  7. {  
  8.        printk("In Func: %s...\n",__func__);  
  9.        return 0;  
  10. }  
  11.   
  12. // Export symbol func1  
  13. EXPORT_SYMBOL(func1);  
  14.   
  15. static int __init hello_init(void)  
  16. {  
  17.        printk("Module 1,Init!\n");  
  18.        return 0;  
  19. }  
  20.   
  21. static void __exit hello_exit(void)  
  22. {  
  23.        printk("Module 1,Exit!\n");  
  24. }  
  25.   
  26. module_init(hello_init);  
  27. module_exit(hello_exit);  
[cpp] view plain copy
 
  1. // Module B (mod_b.c)  
  2. #include<linux/init.h>  
  3. #include<linux/kernel.h>  
  4. #include<linux/module.h>  
  5.   
  6. static int func2(void)  
  7. {  
  8.        extern int func1(void);  
  9.        func1();  
  10.        printk("In Func: %s...\n",__func__);  
  11.        return 0;  
  12. }  
  13.   
  14. static int __init hello_init(void)  
  15. {  
  16.        printk("Module 2,Init!\n");  
  17.        func2();  
  18.        return 0;  
  19. }  
  20.   
  21. static void __exit hello_exit(void)  
  22. {  
  23.        printk("Module 2,Exit!\n");  
  24. }  
  25.   
  26. module_init(hello_init);  
  27. module_exit(hello_exit);  
 

EXPORT_SYMBOL的使用

标签:cpp   process   span   bsp   init   save   ref   article   cli   

原文地址:http://www.cnblogs.com/dirt2/p/6223801.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!