]> git.proxmox.com Git - mirror_zfs-debian.git/blame - module/zpios/zpios.mod.c
Imported Upstream version 0.6.5.7
[mirror_zfs-debian.git] / module / zpios / zpios.mod.c
CommitLineData
4e820b5a
AX
1#include <linux/module.h>
2#include <linux/vermagic.h>
3#include <linux/compiler.h>
4
5MODULE_INFO(vermagic, VERMAGIC_STRING);
6
7struct module __this_module
8__attribute__((section(".gnu.linkonce.this_module"))) = {
9 .name = KBUILD_MODNAME,
10 .init = init_module,
11#ifdef CONFIG_MODULE_UNLOAD
12 .exit = cleanup_module,
13#endif
14 .arch = MODULE_ARCH_INIT,
15};
16
17static const struct modversion_info ____versions[]
18__used
19__attribute__((section("__versions"))) = {
20 { 0x51198477, "module_layout" },
21 { 0x3a8fb147, "dmu_tx_hold_free" },
22 { 0x6b85513b, "dmu_objset_create" },
23 { 0x4d73bbca, "dmu_object_set_blocksize" },
24 { 0x26b64321, "call_usermodehelper_setfns" },
25 { 0xdb347c7a, "call_usermodehelper_exec" },
26 { 0xadaabe1b, "pv_lock_ops" },
27 { 0xbf479b07, "dmu_tx_abort" },
28 { 0x4ff1c9bc, "populate_rootfs_wait" },
29 { 0xc8b57c27, "autoremove_wake_function" },
30 { 0x79aa04a2, "get_random_bytes" },
31 { 0x67053080, "current_kernel_time" },
32 { 0x71642c98, "dmu_tx_wait" },
33 { 0xab140103, "spl_kmem_alloc" },
34 { 0xba2adaf, "mutex_unlock" },
35 { 0xd3b65d9d, "kthread_create_on_node" },
36 { 0xbc32eee7, "spl_panic" },
37 { 0x4040455, "dmu_tx_commit" },
38 { 0x6395be94, "__init_waitqueue_head" },
39 { 0x4f8b5ddb, "_copy_to_user" },
40 { 0x114258fb, "misc_register" },
41 { 0xde0bdcff, "memset" },
42 { 0x69371301, "current_task" },
43 { 0x87ebeb76, "__mutex_init" },
44 { 0x27e1a049, "printk" },
45 { 0x4ebec927, "kthread_stop" },
46 { 0x81034537, "dmu_objset_disown" },
47 { 0xa1c76e0a, "_cond_resched" },
48 { 0x7ec9bfbc, "strncpy" },
49 { 0xb4390f9a, "mcount" },
50 { 0xafe1db9d, "mutex_lock" },
51 { 0x5bb6ad4b, "spl_vmem_zalloc" },
52 { 0x6357a5a8, "dmu_write" },
53 { 0x952664c5, "do_exit" },
54 { 0x7da403ec, "dsl_destroy_head" },
55 { 0x699a8466, "dmu_objset_own" },
56 { 0x8c51c50b, "dmu_object_free" },
57 { 0xf0fdf6cb, "__stack_chk_fail" },
58 { 0xd62c833f, "schedule_timeout" },
59 { 0x1000e51, "schedule" },
60 { 0x252f790a, "dmu_object_alloc" },
61 { 0xdae80439, "spl_vmem_alloc" },
62 { 0xcfa37f55, "wake_up_process" },
63 { 0xcd992a36, "dmu_tx_create" },
64 { 0xd52bf1ce, "_raw_spin_lock" },
65 { 0xcf21d241, "__wake_up" },
66 { 0x659a64d0, "call_usermodehelper_setup" },
67 { 0x236c8c64, "memcpy" },
68 { 0x5c8b5ce8, "prepare_to_wait" },
69 { 0xfa66f77c, "finish_wait" },
70 { 0xf005a1c7, "dmu_tx_assign" },
71 { 0x50720c5f, "snprintf" },
72 { 0x80c3f220, "spl_kmem_free" },
73 { 0xe55595ee, "dmu_read" },
74 { 0x778a305, "spl_vmem_free" },
75 { 0x4f6b400b, "_copy_from_user" },
76 { 0x2482e688, "vsprintf" },
77 { 0xdfb0b5e5, "misc_deregister" },
78 { 0xa296a969, "dmu_tx_hold_write" },
79 { 0x9dcb88fc, "spl_kmem_zalloc" },
80};
81
82static const char __module_depends[]
83__used
84__attribute__((section(".modinfo"))) =
85"depends=zfs,spl";
86
87
88MODULE_INFO(srcversion, "6224A8554C1154556C8A26B");