Main Page | Modules | Data Structures | Directories | File List | Data Fields | Globals | Related Pages

dtr.mod.c

00001 #include <linux/module.h>
00002 #include <linux/vermagic.h>
00003 #include <linux/compiler.h>
00004 
00005 MODULE_INFO(vermagic, VERMAGIC_STRING);
00006 
00007 #undef unix
00008 struct module __this_module
00009 __attribute__((section(".gnu.linkonce.this_module"))) = {
00010  .name = __stringify(KBUILD_MODNAME),
00011  .init = init_module,
00012 #ifdef CONFIG_MODULE_UNLOAD
00013  .exit = cleanup_module,
00014 #endif
00015 };
00016 
00017 static const struct modversion_info ____versions[]
00018 __attribute_used__
00019 __attribute__((section("__versions"))) = {
00020         { 0x506abef7, "struct_module" },
00021         { 0xb240ca65, "schedule_work" },
00022         { 0x1b9aca3f, "jprobe_return" },
00023         { 0xe3b0192b, "vscnprintf" },
00024         { 0x45e5f47f, "register_kprobe" },
00025         { 0x1e736243, "unregister_kprobe" },
00026         { 0xdd03a51e, "register_jprobe" },
00027         { 0x49a83d3a, "unregister_jprobe" },
00028         { 0x3fa03a97, "memset" },
00029         { 0xc16fe12d, "__memcpy" },
00030         { 0xe914e41e, "strcpy" },
00031         { 0xe2d5255a, "strcmp" },
00032         { 0x2fd1d81c, "vfree" },
00033         { 0x37a0cba, "kfree" },
00034         { 0xd6ee688f, "vmalloc" },
00035         { 0x8ce16b3f, "__kmalloc" },
00036         { 0x8e3c9cc3, "vprintk" },
00037         { 0xdd132261, "printk" },
00038 };
00039 
00040 static const char __module_depends[]
00041 __attribute_used__
00042 __attribute__((section(".modinfo"))) =
00043 "depends=";
00044 
00045 
00046 MODULE_INFO(srcversion, "3CC4F9300C5C4E353BD2804");