网站尾部分页数字怎么做,seo排名网,绍兴市网站建设,素材下载网站陆陆续续也写了几个Linux内核模块了#xff0c;但每次都是把代码写在一个源文件中#xff0c;上次尝试了写在两个.c文件中#xff0c;结果没有编译通过。 无奈之下#xff0c;将其中一个.c文件重命名成.h文件#xff0c;再include当另一个当中。但是#xff0c;在.h文件中… 陆陆续续也写了几个Linux内核模块了但每次都是把代码写在一个源文件中上次尝试了写在两个.c文件中结果没有编译通过。 无奈之下将其中一个.c文件重命名成.h文件再include当另一个当中。但是在.h文件中写函数的实现总感觉怪怪的。 今天查看了以下Kbuild的文档有如下描述 [c-sharp] view plaincopy If a kernel module is built from several source files, you specify that you want to build a module in the same way as above. Kbuild needs to know which the parts that you want to build your module from, so you have to tell it by setting an $(module_name-objs) variable. Example: #drivers/isdn/i4l/Makefile obj-$(CONFIG_ISDN) isdn.o isdn-objs : isdn_net_lib.o isdn_v110.o isdn_common.o In this example, the module name will be isdn.o. Kbuild will compile the objects listed in $(isdn-objs) and then run $(LD) -r on the list of these files to generate isdn.o. 整理自己的源文件成两个.c文件simpLB.c和sahu_lb_tools.c、一个.h文件(sahu_lb.h)和Makefile文件。两个.c文件都包含了sahu_lb.h 按照Kbuild的文档所述把Makefile改成如下内容 [c-sharp] view plaincopy obj-m simpLB.o simpLB-objs:sahu_lb_tools.o all: make -C /lib/modules/uname -r/build Mpwd clean: make -C /lib/modules/uname -r/build Mpwd clean install: /sbin/insmod simpLB.ko remove: /sbin/rmmod simpLB 编译没有问题但是安装后模块的功能没有实现就连我在init_module()中打印的提示信息都没有。lsmod却有simpLB。 只好再上网查了查发现如下文章 http://www.linuxquestions.org/questions/programming-9/linking-multiple-files-kernel-module-programming-701735/ 按照文章的的建议我把Makefile修改成如下内容 [c-sharp] view plaincopy obj-m sahuLB.o sahuLB-objs:simpLB.o sahu_lb_tools.o all: make -C /lib/modules/uname -r/build Mpwd clean: make -C /lib/modules/uname -r/build Mpwd clean install: /sbin/insmod sahuLB.ko remove: /sbin/rmmod sahuLB