]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/contrib/openzfs/include/os/linux/kernel/linux/mod_compat.h
MFV 2.0-rc2
[FreeBSD/FreeBSD.git] / sys / contrib / openzfs / include / os / linux / kernel / linux / mod_compat.h
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21
22 /*
23  * Copyright (C) 2016 Gvozden Neskovic <neskovic@gmail.com>.
24  * Copyright (c) 2020 by Delphix. All rights reserved.
25  */
26
27 #ifndef _MOD_COMPAT_H
28 #define _MOD_COMPAT_H
29
30 #include <linux/module.h>
31 #include <linux/moduleparam.h>
32
33 /* Grsecurity kernel API change */
34 #ifdef MODULE_PARAM_CALL_CONST
35 typedef const struct kernel_param zfs_kernel_param_t;
36 #else
37 typedef struct kernel_param zfs_kernel_param_t;
38 #endif
39
40 #define ZMOD_RW 0644
41 #define ZMOD_RD 0444
42
43 /* BEGIN CSTYLED */
44 #define INT int
45 #define UINT uint
46 #define ULONG ulong
47 #define LONG long
48 #define STRING charp
49 /* END CSTYLED */
50
51 enum scope_prefix_types {
52         zfs,
53         zfs_arc,
54         zfs_condense,
55         zfs_dbuf,
56         zfs_dbuf_cache,
57         zfs_deadman,
58         zfs_dedup,
59         zfs_l2arc,
60         zfs_livelist,
61         zfs_livelist_condense,
62         zfs_lua,
63         zfs_metaslab,
64         zfs_mg,
65         zfs_multihost,
66         zfs_prefetch,
67         zfs_reconstruct,
68         zfs_recv,
69         zfs_send,
70         zfs_spa,
71         zfs_trim,
72         zfs_txg,
73         zfs_vdev,
74         zfs_vdev_cache,
75         zfs_vdev_file,
76         zfs_vdev_mirror,
77         zfs_zevent,
78         zfs_zio,
79         zfs_zil
80 };
81
82 /*
83  * Declare a module parameter / sysctl node
84  *
85  * "scope_prefix" the part of the the sysctl / sysfs tree the node resides under
86  *   (currently a no-op on Linux)
87  * "name_prefix" the part of the variable name that will be excluded from the
88  *   exported names on platforms with a hierarchical namespace
89  * "name" the part of the variable that will be exposed on platforms with a
90  *    hierarchical namespace, or as name_prefix ## name on Linux
91  * "type" the variable type
92  * "perm" the permissions (read/write or read only)
93  * "desc" a brief description of the option
94  *
95  * Examples:
96  * ZFS_MODULE_PARAM(zfs_vdev_mirror, zfs_vdev_mirror_, rotating_inc, UINT,
97  *      ZMOD_RW, "Rotating media load increment for non-seeking I/O's");
98  * on FreeBSD:
99  *   vfs.zfs.vdev.mirror.rotating_inc
100  * on Linux:
101  *   zfs_vdev_mirror_rotating_inc
102  *
103  * ZFS_MODULE_PARAM(zfs, , dmu_prefetch_max, UINT, ZMOD_RW,
104  *      "Limit one prefetch call to this size");
105  * on FreeBSD:
106  *   vfs.zfs.dmu_prefetch_max
107  * on Linux:
108  *   dmu_prefetch_max
109  */
110 /* BEGIN CSTYLED */
111 #define ZFS_MODULE_PARAM(scope_prefix, name_prefix, name, type, perm, desc) \
112         CTASSERT_GLOBAL((sizeof (scope_prefix) == sizeof (enum scope_prefix_types))); \
113         module_param(name_prefix ## name, type, perm); \
114         MODULE_PARM_DESC(name_prefix ## name, desc)
115 /* END CSTYLED */
116
117 /*
118  * Declare a module parameter / sysctl node
119  *
120  * "scope_prefix" the part of the the sysctl / sysfs tree the node resides under
121  *   (currently a no-op on Linux)
122  * "name_prefix" the part of the variable name that will be excluded from the
123  *   exported names on platforms with a hierarchical namespace
124  * "name" the part of the variable that will be exposed on platforms with a
125  *    hierarchical namespace, or as name_prefix ## name on Linux
126  * "setfunc" setter function
127  * "getfunc" getter function
128  * "perm" the permissions (read/write or read only)
129  * "desc" a brief description of the option
130  *
131  * Examples:
132  * ZFS_MODULE_PARAM_CALL(zfs_spa, spa_, slop_shift, param_set_slop_shift,
133  *      param_get_int, ZMOD_RW, "Reserved free space in pool");
134  * on FreeBSD:
135  *   vfs.zfs.spa_slop_shift
136  * on Linux:
137  *   spa_slop_shift
138  */
139 /* BEGIN CSTYLED */
140 #define ZFS_MODULE_PARAM_CALL(scope_prefix, name_prefix, name, setfunc, getfunc, perm, desc) \
141         CTASSERT_GLOBAL((sizeof (scope_prefix) == sizeof (enum scope_prefix_types))); \
142         module_param_call(name_prefix ## name, setfunc, getfunc, &name_prefix ## name, perm); \
143         MODULE_PARM_DESC(name_prefix ## name, desc)
144 /* END CSTYLED */
145
146 #define ZFS_MODULE_PARAM_ARGS   const char *buf, zfs_kernel_param_t *kp
147
148 #define ZFS_MODULE_DESCRIPTION(s) MODULE_DESCRIPTION(s)
149 #define ZFS_MODULE_AUTHOR(s) MODULE_AUTHOR(s)
150 #define ZFS_MODULE_LICENSE(s) MODULE_LICENSE(s)
151 #define ZFS_MODULE_VERSION(s) MODULE_VERSION(s)
152
153 #endif  /* _MOD_COMPAT_H */