]> git.proxmox.com Git - mirror_zfs-debian.git/blame - module/nvpair/znvpair.mod.c
Imported Upstream version 0.6.5.7
[mirror_zfs-debian.git] / module / nvpair / znvpair.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 { 0x349cba85, "strchr" },
22 { 0x25ec1b28, "strlen" },
23 { 0xab140103, "spl_kmem_alloc" },
24 { 0xbc32eee7, "spl_panic" },
25 { 0xe2d5255a, "strcmp" },
26 { 0xde0bdcff, "memset" },
27 { 0xb4390f9a, "mcount" },
28 { 0x85abc85f, "strncmp" },
29 { 0xdae80439, "spl_vmem_alloc" },
30 { 0x82fe53e1, "ddi_strtol" },
31 { 0xddd4a3d3, "xdrmem_create" },
32 { 0xa3a5be95, "memmove" },
33 { 0x80c3f220, "spl_kmem_free" },
34};
35
36static const char __module_depends[]
37__used
38__attribute__((section(".modinfo"))) =
39"depends=spl";
40
41
42MODULE_INFO(srcversion, "3BD67F56FE7BC46673DD6A6");