Krishna iResearch Intelligent Cloud Platform - VIRtual Generic Os - VIRGO - Linux kernel extensions for cloud
 All Classes
virgo_cloud_mempool_kernelspace.mod.c
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  .arch = MODULE_ARCH_INIT,
15 };
16 
17 static const struct modversion_info ____versions[]
18 __used
19 __attribute__((section("__versions"))) = {
20  { 0x8a9dc593, "module_layout" },
21  { 0x12da5bb2, "__kmalloc" },
22  { 0xc499ae1e, "kstrdup" },
23  { 0x11089ac7, "_ctype" },
24  { 0x50eedeb8, "printk" },
25  { 0x20c55ae0, "sscanf" },
26  { 0xb4390f9a, "mcount" },
27  { 0x952664c5, "do_exit" },
28  { 0x61651be, "strcat" },
29  { 0xf0fdf6cb, "__stack_chk_fail" },
30  { 0x54a9db5f, "_kstrtoul" },
31  { 0x37a0cba, "kfree" },
32  { 0xe914e41e, "strcpy" },
33 };
34 
35 static const char __module_depends[]
36 __used
37 __attribute__((section(".modinfo"))) =
38 "depends=";
39 
40 
41 MODULE_INFO(srcversion, "DB1B6B05FCE719110DE5A8A");