为什么我的符号不会与EXPORT_SYMBOL一起导出?

时间:2012-10-08 16:17:26

标签: linux kernel driver

我正在制作一个简单的内核对象。但不知何故,变量不会与EXPORT_SYMBIL宏一起导出。 来源是:

#include <linux/module.h>
#include <linux/init.h>

MODULE_LICENSE("Dual BSD/GPL");

int hello_int __attribute__ ((__unused__));
EXPORT_SYMBOL(hello_int);

static int hello_init(void)
{
        printk(KERN_ALERT "driver loaded\n");
        return 0;
}

static void hello_exit(void)
{
        printk(KERN_ALERT "driver unloaded\n");
}

module_init(hello_init);
module_exit(hello_exit);

# insmod hello.ko
# cat /proc/kallsyms | grep hello

d9fb0000 t hello_exit   [hello]
d9fb000c t hello_init   [hello]
d9fb0000 t cleanup_module       [hello]
d9fb000c t init_module  [hello]
d9f6374e t br_hello_timer_expired       [bridge]
d9f64027 t show_hello_timer     [bridge]
d9f640fb t store_hello_time     [bridge]
d9f64264 t set_hello_time       [bridge]
d9f641ee t show_hello_time      [bridge]

没有hello_int。但当然,

# cat Module.symvers

0x8ed8de1a      hello_int       /home/ken/myprojects/hello/hello        EXPORT_SYMBOL

为什么呢?有什么不对吗?

# uname -a
Linux debian-6-0-6-i386 2.6.32-5-686 #1 SMP Sun Sep 23 09:49:36 UTC 2012 i686 GNU/Linux

这里是Makefile:

obj-m := hello.o

all:
        make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules

clean:
        make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean

1 个答案:

答案 0 :(得分:0)

你的问题是内核配置没有设置CONFIG_KALLSYMS_ALL,导致它只导出函数而不是变量。我发现track what happened in relation to this很难,但看起来在某个时候,在一个内核更新中启用了标志。