-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpcd_n.mod.c
77 lines (66 loc) · 1.83 KB
/
pcd_n.mod.c
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#include <linux/module.h>
#define INCLUDE_VERMAGIC
#include <linux/build-salt.h>
#include <linux/elfnote-lto.h>
#include <linux/export-internal.h>
#include <linux/vermagic.h>
#include <linux/compiler.h>
#ifdef CONFIG_UNWINDER_ORC
#include <asm/orc_header.h>
ORC_HEADER;
#endif
BUILD_SALT;
BUILD_LTO_INFO;
MODULE_INFO(vermagic, VERMAGIC_STRING);
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,
};
#ifdef CONFIG_MITIGATION_RETPOLINE
MODULE_INFO(retpoline, "Y");
#endif
static const char ____versions[]
__used __section("__versions") =
"\x10\x00\x00\x00\x7e\x3a\x2c\x12"
"_printk\0"
"\x1c\x00\x00\x00\xca\x39\x82\x5b"
"__x86_return_thunk\0\0"
"\x1c\x00\x00\x00\x48\x9f\xdb\x88"
"__check_object_size\0"
"\x18\x00\x00\x00\xe1\xbe\x10\x6b"
"_copy_to_user\0\0\0"
"\x1c\x00\x00\x00\x2b\x2f\xec\xe3"
"alloc_chrdev_region\0"
"\x18\x00\x00\x00\x6b\xaa\x0f\xe7"
"class_create\0\0\0\0"
"\x14\x00\x00\x00\x1e\x70\xe8\x75"
"cdev_init\0\0\0"
"\x14\x00\x00\x00\x5e\xc3\x64\xaa"
"cdev_add\0\0\0\0"
"\x18\x00\x00\x00\xfe\xc8\xfb\x9d"
"device_create\0\0\0"
"\x18\x00\x00\x00\x4b\xc2\x7c\x8c"
"device_destroy\0\0"
"\x14\x00\x00\x00\x69\x1b\x25\x12"
"cdev_del\0\0\0\0"
"\x18\x00\x00\x00\x7f\xe7\x31\xb2"
"class_destroy\0\0\0"
"\x24\x00\x00\x00\x33\xb3\x91\x60"
"unregister_chrdev_region\0\0\0\0"
"\x28\x00\x00\x00\xb3\x1c\xa2\x87"
"__ubsan_handle_out_of_bounds\0\0\0\0"
"\x18\x00\x00\x00\xc2\x9c\xc4\x13"
"_copy_from_user\0"
"\x14\x00\x00\x00\xbb\x6d\xfb\xbd"
"__fentry__\0\0"
"\x18\x00\x00\x00\xde\x9f\x8a\x25"
"module_layout\0\0\0"
"\x00\x00\x00\x00\x00\x00\x00\x00";
MODULE_INFO(depends, "");
MODULE_INFO(srcversion, "93F0848E4536CA4CB48A05E");