Whamcloud - gitweb
57f47acaca467407c20c8d5b690a925d0f29561d
[fs/lustre-release.git] / libcfs / include / libcfs / libcfs_private.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2014, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * libcfs/include/libcfs/libcfs_private.h
33  *
34  * Various defines for libcfs.
35  *
36  */
37
38 #ifndef __LIBCFS_PRIVATE_H__
39 #define __LIBCFS_PRIVATE_H__
40
41 #ifndef DEBUG_SUBSYSTEM
42 # define DEBUG_SUBSYSTEM S_UNDEFINED
43 #endif
44
45 #include <linux/slab.h>
46 #include <linux/vmalloc.h>
47
48 #ifdef LIBCFS_DEBUG
49
50 /*
51  * When this is on, LASSERT macro includes check for assignment used instead
52  * of equality check, but doesn't have unlikely(). Turn this on from time to
53  * time to make test-builds. This shouldn't be on for production release.
54  */
55 #define LASSERT_CHECKED (0)
56
57 #if LASSERT_CHECKED
58 /*
59  * Assertion.
60  *
61  * Strange construction with empty "then" clause is used to trigger compiler
62  * warnings on the assertions of the form LASSERT(a = b);
63  *
64  * "warning: suggest parentheses around assignment used as truth value"
65  *
66  * requires -Wall. Unfortunately this rules out use of likely/unlikely.
67  */
68 #define LASSERTF(cond, fmt, ...)                                        \
69 do {                                                                    \
70         if (cond)                                                       \
71                 ;                                                       \
72         else {                                                          \
73                 LIBCFS_DEBUG_MSG_DATA_DECL(__msg_data, D_EMERG, NULL);  \
74                 libcfs_debug_msg(&__msg_data,                           \
75                                  "ASSERTION( %s ) failed: " fmt, #cond, \
76                                  ## __VA_ARGS__);                       \
77                 lbug_with_loc(&__msg_data);                             \
78         }                                                               \
79 } while (0)
80
81 #define LASSERT(cond) LASSERTF(cond, "\n")
82
83 #else /* !LASSERT_CHECKED */
84
85 #define LASSERTF(cond, fmt, ...)                                        \
86 do {                                                                    \
87         if (unlikely(!(cond))) {                                        \
88                 LIBCFS_DEBUG_MSG_DATA_DECL(__msg_data, D_EMERG, NULL);  \
89                 libcfs_debug_msg(&__msg_data,                           \
90                                  "ASSERTION( %s ) failed: " fmt, #cond, \
91                                  ## __VA_ARGS__);                       \
92                 lbug_with_loc(&__msg_data);                             \
93         }                                                               \
94 } while (0)
95
96 #define LASSERT(cond) LASSERTF(cond, "\n")
97 #endif /* !LASSERT_CHECKED */
98 #else /* !LIBCFS_DEBUG */
99 /* sizeof is to use expression without evaluating it. */
100 # define LASSERT(e) ((void)sizeof!!(e))
101 # define LASSERTF(cond, ...) ((void)sizeof!!(cond))
102 #endif /* !LIBCFS_DEBUG */
103
104 #ifdef CONFIG_LUSTRE_DEBUG_EXPENSIVE_CHECK
105 /**
106  * This is for more expensive checks that one doesn't want to be enabled all
107  * the time. LINVRNT() has to be explicitly enabled by --enable-invariants
108  * configure option.
109  */
110 # define LINVRNT(exp) LASSERT(exp)
111 #else
112 # define LINVRNT(exp) ((void)sizeof!!(exp))
113 #endif
114
115 void __noreturn lbug_with_loc(struct libcfs_debug_msg_data *msg);
116
117 #define LBUG()                                                          \
118 do {                                                                    \
119         LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_EMERG, NULL);             \
120         lbug_with_loc(&msgdata);                                        \
121 } while(0)
122
123 /*
124  * Memory
125  */
126 #ifdef LIBCFS_DEBUG
127
128 extern atomic64_t libcfs_kmem;
129
130 # define libcfs_kmem_inc(ptr, size)             \
131 do {                                            \
132         atomic64_add(size, &libcfs_kmem);       \
133 } while (0)
134
135 # define libcfs_kmem_dec(ptr, size)             \
136 do {                                            \
137         atomic64_sub(size, &libcfs_kmem);       \
138 } while (0)
139
140 # define libcfs_kmem_read()                     \
141         (long long)atomic64_read(&libcfs_kmem)
142
143 #else
144 # define libcfs_kmem_inc(ptr, size) do {} while (0)
145 # define libcfs_kmem_dec(ptr, size) do {} while (0)
146 # define libcfs_kmem_read()     (0)
147 #endif /* LIBCFS_DEBUG */
148
149 #ifndef LIBCFS_VMALLOC_SIZE
150 #define LIBCFS_VMALLOC_SIZE        (2 << PAGE_SHIFT) /* 2 pages */
151 #endif
152
153 #define LIBCFS_ALLOC_PRE(size, mask)                                        \
154 do {                                                                        \
155         LASSERT(!in_interrupt() ||                                          \
156                 ((size) <= LIBCFS_VMALLOC_SIZE &&                           \
157                  ((mask) & GFP_ATOMIC)) != 0);                              \
158 } while (0)
159
160 #define LIBCFS_ALLOC_POST(ptr, size)                                          \
161 do {                                                                          \
162         if (unlikely((ptr) == NULL)) {                                        \
163                 CERROR("LNET: out of memory at %s:%d (tried to alloc '"       \
164                        #ptr "' = %d)\n", __FILE__, __LINE__, (int)(size));    \
165                 CERROR("LNET: %lld total bytes allocated by lnet\n",          \
166                        libcfs_kmem_read());                           \
167         } else {                                                              \
168                 libcfs_kmem_inc((ptr), (size));                               \
169                 CDEBUG(D_MALLOC, "alloc '" #ptr "': %d at %p (tot %lld).\n",  \
170                        (int)(size), (ptr), libcfs_kmem_read());               \
171         }                                                                     \
172 } while (0)
173
174 /**
175  * allocate memory with GFP flags @mask
176  * The allocated memory is zeroed-out.
177  */
178 #define LIBCFS_ALLOC_GFP(ptr, size, mask)                                   \
179 do {                                                                        \
180         LIBCFS_ALLOC_PRE((size), (mask));                                   \
181         (ptr) = (size) <= LIBCFS_VMALLOC_SIZE ?                             \
182                 kzalloc((size), (mask)) : vzalloc(size);                    \
183         LIBCFS_ALLOC_POST((ptr), (size));                                   \
184 } while (0)
185
186 /**
187  * default allocator
188  */
189 #define LIBCFS_ALLOC(ptr, size) \
190         LIBCFS_ALLOC_GFP(ptr, size, GFP_NOFS)
191
192 /**
193  * non-sleeping allocator
194  */
195 #define LIBCFS_ALLOC_ATOMIC(ptr, size) \
196         LIBCFS_ALLOC_GFP(ptr, size, GFP_ATOMIC)
197
198 /**
199  * allocate memory for specified CPU partition
200  *   \a cptab != NULL, \a cpt is CPU partition id of \a cptab
201  *   \a cptab == NULL, \a cpt is HW NUMA node id
202  * The allocated memory is zeroed-out.
203  */
204 #define LIBCFS_CPT_ALLOC_GFP(ptr, cptab, cpt, size, mask)                   \
205 do {                                                                        \
206         LIBCFS_ALLOC_PRE((size), (mask));                                   \
207         (ptr) = (size) <= LIBCFS_VMALLOC_SIZE ?                             \
208                 cfs_cpt_malloc((cptab), (cpt), (size), (mask) | __GFP_ZERO) : \
209                 cfs_cpt_vzalloc((cptab), (cpt), (size));                    \
210         LIBCFS_ALLOC_POST((ptr), (size));                                   \
211 } while (0)
212
213 /** default numa allocator */
214 #define LIBCFS_CPT_ALLOC(ptr, cptab, cpt, size)                             \
215         LIBCFS_CPT_ALLOC_GFP(ptr, cptab, cpt, size, GFP_NOFS)
216
217 void init_libcfs_vfree_atomic(void);
218 void exit_libcfs_vfree_atomic(void);
219
220 #define LIBCFS_FREE(ptr, size)                                          \
221 do {                                                                    \
222         int s = (size);                                                 \
223         if (unlikely((ptr) == NULL)) {                                  \
224                 CERROR("LIBCFS: free NULL '" #ptr "' (%d bytes) at "    \
225                        "%s:%d\n", s, __FILE__, __LINE__);               \
226                 break;                                                  \
227         }                                                               \
228         libcfs_kmem_dec((ptr), s);                                      \
229         CDEBUG(D_MALLOC, "kfreed '" #ptr "': %d at %p (tot %lld).\n",   \
230                s, (ptr), libcfs_kmem_read());                           \
231         if (unlikely(s > LIBCFS_VMALLOC_SIZE))                          \
232                 libcfs_vfree_atomic(ptr);                               \
233         else                                                            \
234                 kfree(ptr);                                             \
235 } while (0)
236
237 /******************************************************************************/
238
239 void libcfs_debug_dumplog(void);
240 int libcfs_debug_init(unsigned long bufsize);
241 int libcfs_debug_cleanup(void);
242 int libcfs_debug_clear_buffer(void);
243 int libcfs_debug_mark_buffer(const char *text);
244
245 #define LASSERT_ATOMIC_ENABLED          (1)
246
247 #if LASSERT_ATOMIC_ENABLED
248
249 /** assert value of @a is equal to @v */
250 #define LASSERT_ATOMIC_EQ(a, v)                         \
251         LASSERTF(atomic_read(a) == v, "value: %d\n", atomic_read((a)));
252
253 /** assert value of @a is unequal to @v */
254 #define LASSERT_ATOMIC_NE(a, v)                         \
255         LASSERTF(atomic_read(a) != v, "value: %d\n", atomic_read((a)));
256
257 /** assert value of @a is little than @v */
258 #define LASSERT_ATOMIC_LT(a, v)                         \
259         LASSERTF(atomic_read(a) < v, "value: %d\n", atomic_read((a)));
260
261 /** assert value of @a is little/equal to @v */
262 #define LASSERT_ATOMIC_LE(a, v)                         \
263         LASSERTF(atomic_read(a) <= v, "value: %d\n", atomic_read((a)));
264
265 /** assert value of @a is great than @v */
266 #define LASSERT_ATOMIC_GT(a, v)                         \
267         LASSERTF(atomic_read(a) > v, "value: %d\n", atomic_read((a)));
268
269 /** assert value of @a is great/equal to @v */
270 #define LASSERT_ATOMIC_GE(a, v)                         \
271         LASSERTF(atomic_read(a) >= v, "value: %d\n", atomic_read((a)));
272
273 /** assert value of @a is great than @v1 and little than @v2 */
274 #define LASSERT_ATOMIC_GT_LT(a, v1, v2)                 \
275 do {                                                    \
276         int __v = atomic_read(a);                       \
277         LASSERTF(__v > v1 && __v < v2, "value: %d\n", __v);\
278 } while (0)
279
280 /** assert value of @a is great than @v1 and little/equal to @v2 */
281 #define LASSERT_ATOMIC_GT_LE(a, v1, v2)                 \
282 do {                                                    \
283         int __v = atomic_read(a);                       \
284         LASSERTF(__v > v1 && __v <= v2, "value: %d\n", __v);\
285 } while (0)
286
287 /** assert value of @a is great/equal to @v1 and little than @v2 */
288 #define LASSERT_ATOMIC_GE_LT(a, v1, v2)                 \
289 do {                                                    \
290         int __v = atomic_read(a);                       \
291         LASSERTF(__v >= v1 && __v < v2, "value: %d\n", __v);\
292 } while (0)
293
294 /** assert value of @a is great/equal to @v1 and little/equal to @v2 */
295 #define LASSERT_ATOMIC_GE_LE(a, v1, v2)                         \
296 do {                                                            \
297         int __v = atomic_read(a);                               \
298         LASSERTF(__v >= v1 && __v <= v2, "value: %d\n", __v);   \
299 } while (0)
300
301 #else /* !LASSERT_ATOMIC_ENABLED */
302
303 #define LASSERT_ATOMIC_EQ(a, v)                 do {} while (0)
304 #define LASSERT_ATOMIC_NE(a, v)                 do {} while (0)
305 #define LASSERT_ATOMIC_LT(a, v)                 do {} while (0)
306 #define LASSERT_ATOMIC_LE(a, v)                 do {} while (0)
307 #define LASSERT_ATOMIC_GT(a, v)                 do {} while (0)
308 #define LASSERT_ATOMIC_GE(a, v)                 do {} while (0)
309 #define LASSERT_ATOMIC_GT_LT(a, v1, v2)         do {} while (0)
310 #define LASSERT_ATOMIC_GT_LE(a, v1, v2)         do {} while (0)
311 #define LASSERT_ATOMIC_GE_LT(a, v1, v2)         do {} while (0)
312 #define LASSERT_ATOMIC_GE_LE(a, v1, v2)         do {} while (0)
313
314 #endif /* LASSERT_ATOMIC_ENABLED */
315
316 #define LASSERT_ATOMIC_ZERO(a)                  LASSERT_ATOMIC_EQ(a, 0)
317 #define LASSERT_ATOMIC_POS(a)                   LASSERT_ATOMIC_GT(a, 0)
318
319 #define CFS_ALLOC_PTR(ptr)      LIBCFS_ALLOC(ptr, sizeof(*(ptr)));
320 #define CFS_ALLOC_PTR_ARRAY(ptr, count)                 \
321         LIBCFS_ALLOC(ptr, (count) * sizeof(*(ptr)))
322
323 #define CFS_FREE_PTR(ptr)       LIBCFS_FREE(ptr, sizeof(*(ptr)));
324 #define CFS_FREE_PTR_ARRAY(ptr, count)                  \
325         LIBCFS_FREE(ptr, (count) * sizeof(*(ptr)))
326
327 /* implication */
328 #define ergo(a, b) (!(a) || (b))
329 /* logical equivalence */
330 #define equi(a, b) (!!(a) == !!(b))
331
332 #define MKSTR(ptr) ((ptr))? (ptr) : ""
333
334 static inline size_t cfs_size_round4(size_t val)
335 {
336         return (val + 3) & (~0x3);
337 }
338
339 #ifndef HAVE_CFS_SIZE_ROUND
340 static inline size_t cfs_size_round(size_t val)
341 {
342         return (val + 7) & (~0x7);
343 }
344 #define HAVE_CFS_SIZE_ROUND
345 #endif
346
347 static inline size_t cfs_size_round16(size_t val)
348 {
349         return (val + 0xf) & (~0xf);
350 }
351
352 static inline size_t cfs_size_round32(size_t val)
353 {
354         return (val + 0x1f) & (~0x1f);
355 }
356
357 static inline size_t cfs_size_round0(size_t val)
358 {
359         if (!val)
360                 return 0;
361         return (val + 1 + 7) & (~0x7);
362 }
363
364 static inline size_t cfs_round_strlen(char *fset)
365 {
366         return cfs_size_round(strlen(fset) + 1);
367 }
368
369 #endif