-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvirtual_sensor.mod.c
More file actions
75 lines (64 loc) · 1.77 KB
/
virtual_sensor.mod.c
File metadata and controls
75 lines (64 loc) · 1.77 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#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") =
"\x18\x00\x00\x00\xa6\x61\xf7\x18"
"device_create\0\0\0"
"\x1c\x00\x00\x00\xc0\xfb\xc3\x6b"
"__unregister_chrdev\0"
"\x18\x00\x00\x00\x8f\xc9\x3e\x5a"
"class_destroy\0\0\0"
"\x18\x00\x00\x00\x0e\xbe\x0e\xaa"
"device_destroy\0\0"
"\x1c\x00\x00\x00\xe4\xd2\x5d\xa1"
"class_unregister\0\0\0\0"
"\x1c\x00\x00\x00\x09\x37\xed\x41"
"get_random_bytes\0\0\0\0"
"\x14\x00\x00\x00\x6e\x4a\x6e\x65"
"snprintf\0\0\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\xcb\xf6\xfd\xf0"
"__stack_chk_fail\0\0\0\0"
"\x14\x00\x00\x00\xbb\x6d\xfb\xbd"
"__fentry__\0\0"
"\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\xa2\x62\xf9\xe8"
"__register_chrdev\0\0\0"
"\x18\x00\x00\x00\x28\xb0\x32\x80"
"class_create\0\0\0\0"
"\x18\x00\x00\x00\x34\x61\x23\x68"
"module_layout\0\0\0"
"\x00\x00\x00\x00\x00\x00\x00\x00";
MODULE_INFO(depends, "");
MODULE_INFO(srcversion, "05C3496EE939DAF61062E65");