]> git.proxmox.com Git - mirror_zfs-debian.git/blame - module/zcommon/zcommon.mod.c
Imported Upstream version 0.6.5.7
[mirror_zfs-debian.git] / module / zcommon / zcommon.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 { 0x4c4fef19, "kernel_stack" },
22 { 0x25ec1b28, "strlen" },
23 { 0xab140103, "spl_kmem_alloc" },
24 { 0x167e7f9d, "__get_user_1" },
25 { 0xbc32eee7, "spl_panic" },
26 { 0xe2d5255a, "strcmp" },
27 { 0x4f8b5ddb, "_copy_to_user" },
28 { 0xee8843fa, "nvpair_value_uint64" },
29 { 0x11089ac7, "_ctype" },
30 { 0xa1c76e0a, "_cond_resched" },
31 { 0xb4390f9a, "mcount" },
32 { 0x85abc85f, "strncmp" },
33 { 0x9ca95a0e, "sort" },
34 { 0xd42a96fa, "nvpair_name" },
35 { 0x1bfac311, "nvlist_lookup_nvlist" },
36 { 0x5d6e0bba, "nvlist_lookup_uint64" },
37 { 0xd0920999, "nvpair_value_uint32" },
38 { 0x29c88b11, "nvlist_next_nvpair" },
39 { 0x82027a4c, "cmn_err" },
40 { 0x50720c5f, "snprintf" },
41 { 0xec1cce40, "nvlist_lookup_nvlist_array" },
42 { 0xa3a5be95, "memmove" },
43 { 0x80c3f220, "spl_kmem_free" },
44 { 0x4f6b400b, "_copy_from_user" },
45 { 0xa66a6969, "nvpair_value_nvlist" },
46};
47
48static const char __module_depends[]
49__used
50__attribute__((section(".modinfo"))) =
51"depends=spl,znvpair";
52
53
54MODULE_INFO(srcversion, "D94B05FC2B3769899B59647");