Whamcloud - gitweb
LU-6245 libcfs: remove last of types abstractions
[fs/lustre-release.git] / libcfs / include / libcfs / libcfs.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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
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
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2015, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef __LIBCFS_LIBCFS_H__
38 #define __LIBCFS_LIBCFS_H__
39
40 #ifdef __KERNEL__
41 # include <libcfs/linux/libcfs.h>
42 # include "curproc.h"
43
44 #define LIBCFS_VERSION  "0.5.0"
45
46 static inline int __is_po2(unsigned long long val)
47 {
48         return !(val & (val - 1));
49 }
50
51 #define IS_PO2(val)       __is_po2((unsigned long long)(val))
52 #define PO2_ROUNDUP_TYPED(x, po2, type) (-(-(type)(x) & -(type)(po2)))
53 #define LOWEST_BIT_SET(x) ((x) & ~((x) - 1))
54
55 /* Sparse annotations */
56 #if !defined(__must_hold)
57 # ifdef __CHECKER__
58 #  define __must_hold(x) __attribute__((context(x, 1, 1)))
59 # else  /* __CHECKER__ */
60 #  define __must_hold(x)
61 # endif /* !__CHECKER__ */
62 #endif /* !__must_hold */
63
64 /* libcfs watchdogs */
65 struct lc_watchdog;
66
67 /* Add a watchdog which fires after "time" milliseconds of delay.  You have to
68  * touch it once to enable it. */
69 struct lc_watchdog *lc_watchdog_add(int time,
70                                     void (*cb)(pid_t pid, void *),
71                                     void *data);
72
73 /* Enables a watchdog and resets its timer. */
74 void lc_watchdog_touch(struct lc_watchdog *lcw, int timeout);
75 #define CFS_GET_TIMEOUT(svc) (max_t(int, obd_timeout,                   \
76                           AT_OFF ? 0 : at_get(&svc->srv_at_estimate)) * \
77                           svc->srv_watchdog_factor)
78
79 /* Disable a watchdog; touch it to restart it. */
80 void lc_watchdog_disable(struct lc_watchdog *lcw);
81
82 /* Clean up the watchdog */
83 void lc_watchdog_delete(struct lc_watchdog *lcw);
84
85 /* need both kernel and user-land acceptor */
86 #define LNET_ACCEPTOR_MIN_RESERVED_PORT    512
87 #define LNET_ACCEPTOR_MAX_RESERVED_PORT    1023
88
89 /*
90  * Drop into debugger, if possible. Implementation is provided by platform.
91  */
92
93 void cfs_enter_debugger(void);
94
95 /*
96  * Defined by platform
97  */
98 int unshare_fs_struct(void);
99 sigset_t cfs_block_allsigs(void);
100 sigset_t cfs_block_sigs(unsigned long sigs);
101 sigset_t cfs_block_sigsinv(unsigned long sigs);
102 void cfs_restore_sigs(sigset_t);
103 void cfs_clear_sigpending(void);
104
105 /*
106  * Random number handling
107  */
108
109 /* returns a random 32-bit integer */
110 unsigned int cfs_rand(void);
111 /* seed the generator */
112 void cfs_srand(unsigned int, unsigned int);
113 void cfs_get_random_bytes(void *buf, int size);
114 #endif /* __KERNEL__ */
115
116 #include <libcfs/libcfs_debug.h>
117 #include <libcfs/libcfs_private.h>
118 #ifdef __KERNEL__
119 # include <libcfs/bitmap.h>
120 # include <libcfs/libcfs_cpu.h>
121 # include <libcfs/libcfs_ioctl.h>
122 # include <libcfs/libcfs_prim.h>
123 # include <libcfs/libcfs_time.h>
124 # include <libcfs/libcfs_string.h>
125 # include <libcfs/libcfs_workitem.h>
126 # include <libcfs/libcfs_hash.h>
127 # include <libcfs/libcfs_heap.h>
128 # include <libcfs/libcfs_fail.h>
129
130 int libcfs_ioctl_data_adjust(struct libcfs_ioctl_data *data);
131 int libcfs_ioctl(unsigned long cmd, void __user *uparam);
132
133 /* container_of depends on "likely" which is defined in libcfs_private.h */
134 static inline void *__container_of(const void *ptr, unsigned long shift)
135 {
136         if (unlikely(IS_ERR(ptr) || ptr == NULL))
137                 return ERR_CAST(ptr);
138         else
139                 return (char *)ptr - shift;
140 }
141
142 #define container_of0(ptr, type, member)                                \
143         ((type *)__container_of((ptr), offsetof(type, member)))
144
145 #endif /* __KERNEL__ */
146
147 #endif /* _LIBCFS_LIBCFS_H_ */