]> git.proxmox.com Git - mirror_zfs.git/blob - include/sys/sysmacros.h
Linux VM integration / device special files
[mirror_zfs.git] / include / sys / sysmacros.h
1 /*
2 * This file is part of the SPL: Solaris Porting Layer.
3 *
4 * Copyright (c) 2008 Lawrence Livermore National Security, LLC.
5 * Produced at Lawrence Livermore National Laboratory
6 * Written by:
7 * Brian Behlendorf <behlendorf1@llnl.gov>,
8 * Herb Wartens <wartens2@llnl.gov>,
9 * Jim Garlick <garlick@llnl.gov>
10 * UCRL-CODE-235197
11 *
12 * This is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This is distributed in the hope that it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * for more details.
21 *
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 */
26
27 #ifndef _SPL_SYSMACROS_H
28 #define _SPL_SYSMACROS_H
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33
34 #include <linux/module.h>
35 #include <sys/debug.h>
36 #include <sys/varargs.h>
37 #include <sys/zone.h>
38 #include <sys/signal.h>
39
40 #ifndef _KERNEL
41 #define _KERNEL __KERNEL__
42 #endif
43
44 /* Missing defines.
45 */
46 #define FALSE 0
47 #define TRUE 1
48
49 #define INT32_MAX INT_MAX
50 #define INT32_MIN INT_MIN
51 #define UINT32_MAX UINT_MAX
52 #define UINT32_MIN UINT_MIN
53 #define INT64_MAX LLONG_MAX
54 #define INT64_MIN LLONG_MIN
55 #define UINT64_MAX ULLONG_MAX
56 #define UINT64_MIN ULLONG_MIN
57
58 #define NBBY 8
59 #define ENOTSUP ENOTSUPP
60
61 #define MAXMSGLEN 256
62 #define MAXNAMELEN 256
63 #define MAXPATHLEN PATH_MAX
64 #define MAXOFFSET_T 0x7fffffffffffffffl
65
66 #define MAXBSIZE 8192
67 #define DEV_BSIZE 512
68 #define DEV_BSHIFT 9 /* log2(DEV_BSIZE) */
69
70 #define curproc current
71 #define proc_pageout NULL
72 #define max_ncpus 64
73 #define CPU_SEQID smp_processor_id() /* I think... */
74 #define _NOTE(x)
75
76
77 #define RLIM64_INFINITY RLIM_INFINITY
78
79 /* 0..MAX_PRIO-1: Process priority
80 * 0..MAX_RT_PRIO-1: RT priority tasks
81 * MAX_RT_PRIO..MAX_PRIO-1: SCHED_NORMAL tasks
82 *
83 * Treat shim tasks as SCHED_NORMAL tasks
84 */
85 #define minclsyspri (MAX_RT_PRIO)
86 #define maxclsyspri (MAX_PRIO-1)
87
88 #define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
89 #define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
90
91 /* Missing macros
92 */
93 #define PAGESIZE PAGE_SIZE
94
95 /* from Solaris sys/byteorder.h */
96 #define BSWAP_8(x) ((x) & 0xff)
97 #define BSWAP_16(x) ((BSWAP_8(x) << 8) | BSWAP_8((x) >> 8))
98 #define BSWAP_32(x) ((BSWAP_16(x) << 16) | BSWAP_16((x) >> 16))
99 #define BSWAP_64(x) ((BSWAP_32(x) << 32) | BSWAP_32((x) >> 32))
100
101 /* Map some simple functions.
102 */
103 #define bzero(ptr,size) memset(ptr,0,size)
104 #define bcopy(src,dest,size) memcpy(dest,src,size)
105 #define bcmp(src,dest,size) memcmp((src), (dest), (size_t)(size))
106
107 /* Dtrace probes do not exist in the linux kernel */
108 #ifdef DTRACE_PROBE
109 #undef DTRACE_PROBE
110 #endif /* DTRACE_PROBE */
111 #define DTRACE_PROBE(a) ((void)0)
112
113 #ifdef DTRACE_PROBE1
114 #undef DTRACE_PROBE1
115 #endif /* DTRACE_PROBE1 */
116 #define DTRACE_PROBE1(a, b, c) ((void)0)
117
118 #ifdef DTRACE_PROBE2
119 #undef DTRACE_PROBE2
120 #endif /* DTRACE_PROBE2 */
121 #define DTRACE_PROBE2(a, b, c, d, e) ((void)0)
122
123 #ifdef DTRACE_PROBE3
124 #undef DTRACE_PROBE3
125 #endif /* DTRACE_PROBE3 */
126 #define DTRACE_PROBE3(a, b, c, d, e, f, g) ((void)0)
127
128 #ifdef DTRACE_PROBE4
129 #undef DTRACE_PROBE4
130 #endif /* DTRACE_PROBE4 */
131 #define DTRACE_PROBE4(a, b, c, d, e, f, g, h, i) ((void)0)
132
133 /* Missing globals */
134 extern char spl_version[16];
135 extern long spl_hostid;
136 extern char hw_serial[11];
137 extern int p0;
138
139 /* Missing misc functions */
140 extern int highbit(unsigned long i);
141
142 #define makedevice(maj,min) makedev(maj,min)
143
144 /* common macros */
145 #ifndef MIN
146 #define MIN(a, b) ((a) < (b) ? (a) : (b))
147 #endif
148 #ifndef MAX
149 #define MAX(a, b) ((a) < (b) ? (b) : (a))
150 #endif
151 #ifndef ABS
152 #define ABS(a) ((a) < 0 ? -(a) : (a))
153 #endif
154
155 /*
156 * Compatibility macros/typedefs needed for Solaris -> Linux port
157 */
158 #define P2ALIGN(x, align) ((x) & -(align))
159 #define P2CROSS(x, y, align) (((x) ^ (y)) > (align) - 1)
160 #define P2ROUNDUP(x, align) (-(-(x) & -(align)))
161 #define P2ROUNDUP_TYPED(x, align, type) \
162 (-(-(type)(x) & -(type)(align)))
163 #define P2PHASE(x, align) ((x) & ((align) - 1))
164 #define P2NPHASE(x, align) (-(x) & ((align) - 1))
165 #define P2NPHASE_TYPED(x, align, type) \
166 (-(type)(x) & ((type)(align) - 1))
167 #define ISP2(x) (((x) & ((x) - 1)) == 0)
168 #define IS_P2ALIGNED(v, a) ((((uintptr_t)(v)) & ((uintptr_t)(a) - 1)) == 0)
169 #define P2BOUNDARY(off, len, align) \
170 (((off) ^ ((off) + (len) - 1)) > (align) - 1)
171
172 /*
173 * Typed version of the P2* macros. These macros should be used to ensure
174 * that the result is correctly calculated based on the data type of (x),
175 * which is passed in as the last argument, regardless of the data
176 * type of the alignment. For example, if (x) is of type uint64_t,
177 * and we want to round it up to a page boundary using "PAGESIZE" as
178 * the alignment, we can do either
179 * P2ROUNDUP(x, (uint64_t)PAGESIZE)
180 * or
181 * P2ROUNDUP_TYPED(x, PAGESIZE, uint64_t)
182 */
183 #define P2ALIGN_TYPED(x, align, type) \
184 ((type)(x) & -(type)(align))
185 #define P2PHASE_TYPED(x, align, type) \
186 ((type)(x) & ((type)(align) - 1))
187 #define P2NPHASE_TYPED(x, align, type) \
188 (-(type)(x) & ((type)(align) - 1))
189 #define P2ROUNDUP_TYPED(x, align, type) \
190 (-(-(type)(x) & -(type)(align)))
191 #define P2END_TYPED(x, align, type) \
192 (-(~(type)(x) & -(type)(align)))
193 #define P2PHASEUP_TYPED(x, align, phase, type) \
194 ((type)(phase) - (((type)(phase) - (type)(x)) & -(type)(align)))
195 #define P2CROSS_TYPED(x, y, align, type) \
196 (((type)(x) ^ (type)(y)) > (type)(align) - 1)
197 #define P2SAMEHIGHBIT_TYPED(x, y, type) \
198 (((type)(x) ^ (type)(y)) < ((type)(x) & (type)(y)))
199
200 #if defined(_KERNEL) && !defined(_KMEMUSER) && !defined(offsetof)
201
202 /* avoid any possibility of clashing with <stddef.h> version */
203
204 #define offsetof(s, m) ((size_t)(&(((s *)0)->m)))
205 #endif
206
207 #ifdef __cplusplus
208 }
209 #endif
210
211 #endif /* _SPL_SYSMACROS_H */