-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello_proc.mod.c
More file actions
37 lines (31 loc) · 1.08 KB
/
hello_proc.mod.c
File metadata and controls
37 lines (31 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include <linux/module.h>
#include <linux/vermagic.h>
#include <linux/compiler.h>
MODULE_INFO(vermagic, VERMAGIC_STRING);
__visible struct module __this_module
__attribute__((section(".gnu.linkonce.this_module"))) = {
.name = KBUILD_MODNAME,
.init = init_module,
#ifdef CONFIG_MODULE_UNLOAD
.exit = cleanup_module,
#endif
.arch = MODULE_ARCH_INIT,
};
static const struct modversion_info ____versions[]
__used
__attribute__((section("__versions"))) = {
{ 0x5c7202ab, __VMLINUX_SYMBOL_STR(module_layout) },
{ 0xbf96f285, __VMLINUX_SYMBOL_STR(remove_proc_entry) },
{ 0xe6f51caa, __VMLINUX_SYMBOL_STR(kmem_cache_alloc_trace) },
{ 0xdfeb1fad, __VMLINUX_SYMBOL_STR(kmalloc_caches) },
{ 0x85173fa9, __VMLINUX_SYMBOL_STR(proc_create_data) },
{ 0x4f8b5ddb, __VMLINUX_SYMBOL_STR(_copy_to_user) },
{ 0x27e1a049, __VMLINUX_SYMBOL_STR(printk) },
{ 0x4f6b400b, __VMLINUX_SYMBOL_STR(_copy_from_user) },
{ 0xbdfb6dbb, __VMLINUX_SYMBOL_STR(__fentry__) },
};
static const char __module_depends[]
__used
__attribute__((section(".modinfo"))) =
"depends=";
MODULE_INFO(srcversion, "8FACA379C4D63EE15548A8D");