[16] | 1 | #include <linux/module.h> |
---|
| 2 | #include <linux/vermagic.h> |
---|
| 3 | #include <linux/compiler.h> |
---|
| 4 | |
---|
| 5 | MODULE_INFO(vermagic, VERMAGIC_STRING); |
---|
| 6 | |
---|
| 7 | struct module __this_module |
---|
| 8 | __attribute__((section(".gnu.linkonce.this_module"))) = { |
---|
| 9 | .name = KBUILD_MODNAME, |
---|
| 10 | .init = init_module, |
---|
| 11 | #ifdef CONFIG_MODULE_UNLOAD |
---|
| 12 | .exit = cleanup_module, |
---|
| 13 | #endif |
---|
| 14 | }; |
---|
| 15 | |
---|
| 16 | static const struct modversion_info ____versions[] |
---|
| 17 | __attribute_used__ |
---|
| 18 | __attribute__((section("__versions"))) = { |
---|
| 19 | { 0x89fac617, "struct_module" }, |
---|
| 20 | { 0xd6ee688f, "vmalloc" }, |
---|
| 21 | { 0xc8b57c27, "autoremove_wake_function" }, |
---|
| 22 | { 0xc8be7b15, "_spin_lock" }, |
---|
| 23 | { 0x2fd1d81c, "vfree" }, |
---|
| 24 | { 0x1139ffc, "max_mapnr" }, |
---|
| 25 | { 0x1d26aa98, "sprintf" }, |
---|
| 26 | { 0xda4008e6, "cond_resched" }, |
---|
| 27 | { 0x1b7d4074, "printk" }, |
---|
| 28 | { 0x2f287f0d, "copy_to_user" }, |
---|
| 29 | { 0x26baf42, "module_put" }, |
---|
| 30 | { 0x8d823e07, "init_task" }, |
---|
| 31 | { 0x4292364c, "schedule" }, |
---|
| 32 | { 0x17d59d01, "schedule_timeout" }, |
---|
| 33 | { 0x56f9d0e2, "register_chrdev" }, |
---|
| 34 | { 0xffd3c7, "init_waitqueue_head" }, |
---|
| 35 | { 0x6989a769, "vsnprintf" }, |
---|
| 36 | { 0xbaadbd11, "__wake_up" }, |
---|
| 37 | { 0x72270e35, "do_gettimeofday" }, |
---|
| 38 | { 0x7c9049bf, "prepare_to_wait" }, |
---|
| 39 | { 0xa5c5f2b8, "send_sig_info" }, |
---|
| 40 | { 0xc192d491, "unregister_chrdev" }, |
---|
| 41 | { 0x5e1389a, "finish_wait" }, |
---|
| 42 | { 0x60a4461c, "__up_wakeup" }, |
---|
| 43 | { 0x96b27088, "__down_failed" }, |
---|
| 44 | { 0xd6c963c, "copy_from_user" }, |
---|
| 45 | }; |
---|
| 46 | |
---|
| 47 | static const char __module_depends[] |
---|
| 48 | __attribute_used__ |
---|
| 49 | __attribute__((section(".modinfo"))) = |
---|
| 50 | "depends="; |
---|
| 51 | |
---|