1

我正在制作一个简单的内核对象。但不知何故,变量没有用 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
4

1 回答 1

0

你的问题是内核配置没有CONFIG_KALLSYMS_ALL设置,导致它只导出函数而不是变量。我发现很难跟踪与 this 相关的情况,但看起来在某个时候该标志已在其中一个内核更新中启用。

于 2012-10-17T15:20:45.733 回答