-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpanic_module.mod.c
More file actions
51 lines (42 loc) · 1.02 KB
/
panic_module.mod.c
File metadata and controls
51 lines (42 loc) · 1.02 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <linux/module.h>
#include <linux/export-internal.h>
#include <linux/compiler.h>
MODULE_INFO(name, KBUILD_MODNAME);
__visible struct module __this_module
__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 __section("__versions") = {
{ 0xd272d446, "__fentry__" },
{ 0x67628f51, "msleep" },
{ 0x75738bed, "panic" },
{ 0xe8213e80, "_printk" },
{ 0xd272d446, "__x86_return_thunk" },
{ 0xab006604, "module_layout" },
};
static const u32 ____version_ext_crcs[]
__used __section("__version_ext_crcs") = {
0xd272d446,
0x67628f51,
0x75738bed,
0xe8213e80,
0xd272d446,
0xab006604,
};
static const char ____version_ext_names[]
__used __section("__version_ext_names") =
"__fentry__\0"
"msleep\0"
"panic\0"
"_printk\0"
"__x86_return_thunk\0"
"module_layout\0"
;
MODULE_INFO(depends, "");
MODULE_INFO(srcversion, "ACBA56FA0D4818320E614B8");