4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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.sun.com/software/products/lustre/docs/GPLv2.pdf
20 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21 * CA 95054 USA or visit www.sun.com if you need additional information or
27 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
30 * Copyright (c) 2011, 2015, Intel Corporation.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
37 #ifndef __LIBCFS_LIBCFS_H__
38 #define __LIBCFS_LIBCFS_H__
40 #include <libcfs/types.h>
41 #include <libcfs/list.h>
44 # include <libcfs/linux/libcfs.h>
45 #else /* !__KERNEL__ */
60 # include <sys/ioctl.h>
61 # include <sys/socket.h>
62 # include <sys/stat.h>
63 # include <sys/time.h>
64 # include <sys/types.h>
65 # include <libcfs/user-time.h>
66 #endif /* __KERNEL__ */
70 #define LIBCFS_VERSION "0.5.0"
73 #define ARRAY_SIZE(a) ((sizeof (a)) / (sizeof ((a)[0])))
77 #define swap(x,y) do { typeof(x) z = x; x = y; y = z; } while (0)
80 #if !defined(container_of)
81 /* given a pointer @ptr to the field @member embedded into type (usually
82 * struct) @type, return pointer to the embedding instance of @type. */
83 #define container_of(ptr, type, member) \
84 ((type *)((char *)(ptr)-(char *)(&((type *)0)->member)))
87 static inline int __is_po2(unsigned long long val)
89 return !(val & (val - 1));
92 #define IS_PO2(val) __is_po2((unsigned long long)(val))
93 #define PO2_ROUNDUP_TYPED(x, po2, type) (-(-(type)(x) & -(type)(po2)))
94 #define LOWEST_BIT_SET(x) ((x) & ~((x) - 1))
96 /* Sparse annotations */
98 # if !defined(__must_hold)
100 # define __must_hold(x) __attribute__((context(x, 1, 1)))
101 # else /* __CHECKER__ */
102 # define __must_hold(x)
103 # endif /* !__CHECKER__ */
104 # endif /* !__must_hold */
105 #else /* __KERNEL__ */
106 # define __acquires(x)
107 # define __releases(x)
108 # define __must_hold(x)
109 #endif /* !__KERNEL__ */
112 * Lustre Error Checksum: calculates checksum
113 * of Hex number by XORing each bit.
115 #define LERRCHKSUM(hexnum) (((hexnum) & 0xf) ^ ((hexnum) >> 4 & 0xf) ^ \
116 ((hexnum) >> 8 & 0xf))
119 * Some (nomina odiosa sunt) platforms define NULL as naked 0. This confuses
120 * Lustre RETURN(NULL) macro.
126 #define NULL ((void *)0)
130 /* libcfs watchdogs */
133 /* Add a watchdog which fires after "time" milliseconds of delay. You have to
134 * touch it once to enable it. */
135 struct lc_watchdog *lc_watchdog_add(int time,
136 void (*cb)(pid_t pid, void *),
139 /* Enables a watchdog and resets its timer. */
140 void lc_watchdog_touch(struct lc_watchdog *lcw, int timeout);
141 #define CFS_GET_TIMEOUT(svc) (max_t(int, obd_timeout, \
142 AT_OFF ? 0 : at_get(&svc->srv_at_estimate)) * \
143 svc->srv_watchdog_factor)
145 /* Disable a watchdog; touch it to restart it. */
146 void lc_watchdog_disable(struct lc_watchdog *lcw);
148 /* Clean up the watchdog */
149 void lc_watchdog_delete(struct lc_watchdog *lcw);
151 #endif /* __KERNEL__ */
153 /* need both kernel and user-land acceptor */
154 #define LNET_ACCEPTOR_MIN_RESERVED_PORT 512
155 #define LNET_ACCEPTOR_MAX_RESERVED_PORT 1023
158 * libcfs pseudo device operations
160 * struct struct miscdevice and
161 * misc_register() and
162 * misc_deregister() are declared in
163 * libcfs/<os>/<os>-prim.h
165 * It's just draft now.
168 struct cfs_psdev_file {
171 unsigned long reserved1;
172 unsigned long reserved2;
175 struct cfs_psdev_ops {
176 int (*p_open)(unsigned long, void *);
177 int (*p_close)(unsigned long, void *);
178 int (*p_read)(struct cfs_psdev_file *, char *, unsigned long);
179 int (*p_write)(struct cfs_psdev_file *, char *, unsigned long);
180 int (*p_ioctl)(struct cfs_psdev_file *, unsigned long, void __user *);
184 * Drop into debugger, if possible. Implementation is provided by platform.
187 void cfs_enter_debugger(void);
190 * Defined by platform
192 int unshare_fs_struct(void);
193 sigset_t cfs_block_allsigs(void);
194 sigset_t cfs_block_sigs(unsigned long sigs);
195 sigset_t cfs_block_sigsinv(unsigned long sigs);
196 void cfs_restore_sigs(sigset_t);
197 void cfs_clear_sigpending(void);
200 * Random number handling
203 /* returns a random 32-bit integer */
204 unsigned int cfs_rand(void);
205 /* seed the generator */
206 void cfs_srand(unsigned int, unsigned int);
207 void cfs_get_random_bytes(void *buf, int size);
209 #include <libcfs/byteorder.h>
210 #include <libcfs/libcfs_debug.h>
211 #include <libcfs/libcfs_private.h>
213 # include <libcfs/bitmap.h>
214 # include <libcfs/libcfs_cpu.h>
215 # include <libcfs/libcfs_ioctl.h>
216 # include <libcfs/libcfs_prim.h>
217 #endif /* __KERNEL__ */
218 #include <libcfs/libcfs_time.h>
220 # include <libcfs/libcfs_string.h>
221 # include <libcfs/libcfs_workitem.h>
222 # include <libcfs/libcfs_hash.h>
223 # include <libcfs/libcfs_heap.h>
224 # include <libcfs/libcfs_fail.h>
226 /* container_of depends on "likely" which is defined in libcfs_private.h */
227 static inline void *__container_of(const void *ptr, unsigned long shift)
229 if (unlikely(IS_ERR(ptr) || ptr == NULL))
230 return ERR_CAST(ptr);
232 return (char *)ptr - shift;
235 #define container_of0(ptr, type, member) \
236 ((type *)__container_of((ptr), offsetof(type, member)))
238 #endif /* __KERNEL__ */
240 #endif /* _LIBCFS_LIBCFS_H_ */