Krishna iResearch Intelligent Cloud Platform - VIRtual Generic Os - VIRGO - Linux kernel extensions for cloud
 All Classes
virgo_clone.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  .arch = MODULE_ARCH_INIT,
11 };
12 
13 static const struct modversion_info ____versions[]
14 __used
15 __attribute__((section("__versions"))) = {
16  { 0x36c33dd0, "module_layout" },
17  { 0xf0fdf6cb, "__stack_chk_fail" },
18  { 0xafd83fbb, "kernel_recvmsg" },
19  { 0xc77614ca, "kernel_sendmsg" },
20  { 0xb3b722e9, "kernel_connect" },
21  { 0x140b3257, "sock_create" },
22  { 0xe914e41e, "strcpy" },
23  { 0xaccabc6a, "in4_pton" },
24  { 0xd0d8621b, "strlen" },
25  { 0xc499ae1e, "kstrdup" },
26  { 0x2ed2c4e4, "kmem_cache_alloc_trace" },
27  { 0xfaae8f6e, "kmalloc_caches" },
28  { 0xb4390f9a, "mcount" },
29 };
30 
31 static const char __module_depends[]
32 __used
33 __attribute__((section(".modinfo"))) =
34 "depends=";
35 
36 
37 MODULE_INFO(srcversion, "37C2B2AC5AD0AA2B9763138");