forked from abhijeetvg/ScullBuffer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscull.mod.c.bak
More file actions
executable file
·62 lines (56 loc) · 1.76 KB
/
scull.mod.c.bak
File metadata and controls
executable file
·62 lines (56 loc) · 1.76 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
#include <linux/module.h>
#include <linux/vermagic.h>
#include <linux/compiler.h>
MODULE_INFO(vermagic, VERMAGIC_STRING);
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[]
__attribute_used__
__attribute__((section("__versions"))) = {
{ 0xa024e4b1, "struct_module" },
{ 0xc82e262c, "cdev_del" },
{ 0x55fdb17f, "per_cpu__current_task" },
{ 0xab807860, "kmalloc_caches" },
{ 0x12da5bb2, "__kmalloc" },
{ 0xeeeefcf, "cdev_init" },
{ 0xa5423cc4, "param_get_int" },
{ 0xd8e484f0, "register_chrdev_region" },
{ 0xc8b57c27, "autoremove_wake_function" },
{ 0x9441b5fc, "no_llseek" },
{ 0xb7e4fb5c, "remove_proc_entry" },
{ 0x7485e15e, "unregister_chrdev_region" },
{ 0xcb32da10, "param_set_int" },
{ 0x1d26aa98, "sprintf" },
{ 0xf22b9ca8, "nonseekable_open" },
{ 0xda4008e6, "cond_resched" },
{ 0x1b7d4074, "printk" },
{ 0x2f287f0d, "copy_to_user" },
{ 0xc1e5d347, "fasync_helper" },
{ 0x625acc81, "__down_failed_interruptible" },
{ 0x9cf3938c, "cdev_add" },
{ 0xfb306753, "kmem_cache_alloc" },
{ 0x4292364c, "schedule" },
{ 0x8680f95d, "create_proc_entry" },
{ 0xffd3c7, "init_waitqueue_head" },
{ 0xbaadbd11, "__wake_up" },
{ 0x37a0cba, "kfree" },
{ 0x7c9049bf, "prepare_to_wait" },
{ 0xd0a1441f, "kill_fasync" },
{ 0x5e1389a, "finish_wait" },
{ 0x60a4461c, "__up_wakeup" },
{ 0x96b27088, "__down_failed" },
{ 0xd6c963c, "copy_from_user" },
{ 0x29537c9e, "alloc_chrdev_region" },
};
static const char __module_depends[]
__attribute_used__
__attribute__((section(".modinfo"))) =
"depends=";
MODULE_INFO(srcversion, "F606ED8D6693959BD9FCD2E");