Whamcloud - gitweb
LU-812 kernel: AUTOCONF_INCLUDED removed
[fs/lustre-release.git] / libcfs / include / libcfs / linux / kp30.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, Whamcloud, Inc.
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_LINUX_KP30_H__
38 #define __LIBCFS_LINUX_KP30_H__
39
40
41 #include <linux/kernel.h>
42 #include <linux/mm.h>
43 #include <linux/string.h>
44 #include <linux/stat.h>
45 #include <linux/init.h>
46 #include <linux/errno.h>
47 #include <linux/unistd.h>
48 #include <asm/system.h>
49 #include <linux/kmod.h>
50 #include <linux/notifier.h>
51 #include <linux/fs.h>
52 #include <linux/miscdevice.h>
53 #include <linux/vmalloc.h>
54 #include <linux/time.h>
55 #include <linux/slab.h>
56 #include <linux/interrupt.h>
57 #include <linux/highmem.h>
58 #include <linux/module.h>
59 #include <linux/version.h>
60 #include <asm/atomic.h>
61 #include <asm/uaccess.h>
62 #include <linux/rwsem.h>
63 #include <linux/proc_fs.h>
64 #include <linux/file.h>
65 #include <linux/smp.h>
66 #include <linux/ctype.h>
67 #include <linux/compiler.h>
68 #ifdef HAVE_MM_INLINE
69 # include <linux/mm_inline.h>
70 #endif
71 #include <linux/kallsyms.h>
72 #include <linux/moduleparam.h>
73 #include <linux/scatterlist.h>
74
75 #include <libcfs/linux/portals_compat25.h>
76
77 #ifdef HAVE_3ARGS_INIT_WORK
78
79 #define prepare_work(wq,cb,cbdata)                                            \
80 do {                                                                          \
81         INIT_WORK((wq), (void *)(cb), (void *)(cbdata));                      \
82 } while (0)
83
84 #define cfs_get_work_data(type,field,data)   (data)
85
86 #else
87
88 #define prepare_work(wq,cb,cbdata)                                            \
89 do {                                                                          \
90         INIT_WORK((wq), (void *)(cb));                                        \
91 } while (0)
92
93 #define cfs_get_work_data(type,field,data) container_of(data,type,field)
94
95 #endif
96
97 #define cfs_num_online_cpus() num_online_cpus()
98 #define wait_on_page wait_on_page_locked
99 #define our_recalc_sigpending(current) recalc_sigpending()
100 #define strtok(a,b) strpbrk(a, b)
101 #define work_struct_t      struct work_struct
102
103 #ifdef CONFIG_SMP
104 #define LASSERT_SPIN_LOCKED(lock) LASSERT(spin_is_locked(lock))
105 #define LINVRNT_SPIN_LOCKED(lock) LINVRNT(spin_is_locked(lock))
106 #else
107 #define LASSERT_SPIN_LOCKED(lock) do {(void)sizeof(lock);} while(0)
108 #define LINVRNT_SPIN_LOCKED(lock) do {(void)sizeof(lock);} while(0)
109 #endif
110
111 #define LASSERT_SEM_LOCKED(sem) LASSERT(down_trylock(sem) != 0)
112 #define LASSERT_MUTEX_LOCKED(x) LASSERT(mutex_is_locked(x))
113
114 #ifdef HAVE_SEM_COUNT_ATOMIC
115 #define SEM_COUNT(sem)          (atomic_read(&(sem)->count))
116 #else
117 #define SEM_COUNT(sem)          ((sem)->count)
118 #endif
119
120 #define LIBCFS_PANIC(msg)            panic(msg)
121
122 /* ------------------------------------------------------------------- */
123
124 #define PORTAL_SYMBOL_REGISTER(x)
125 #define PORTAL_SYMBOL_UNREGISTER(x)
126
127 #define PORTAL_SYMBOL_GET(x) symbol_get(x)
128 #define PORTAL_SYMBOL_PUT(x) symbol_put(x)
129
130 #define PORTAL_MODULE_USE       try_module_get(THIS_MODULE)
131 #define PORTAL_MODULE_UNUSE     module_put(THIS_MODULE)
132
133
134 /******************************************************************************/
135 /* Module parameter support */
136 #define CFS_MODULE_PARM(name, t, type, perm, desc) \
137         module_param(name, type, perm);\
138         MODULE_PARM_DESC(name, desc)
139
140 #define CFS_SYSFS_MODULE_PARM  1 /* module parameters accessible via sysfs */
141
142 /******************************************************************************/
143
144 #if (__GNUC__)
145 /* Use the special GNU C __attribute__ hack to have the compiler check the
146  * printf style argument string against the actual argument count and
147  * types.
148  */
149 #ifdef printf
150 # warning printf has been defined as a macro...
151 # undef printf
152 #endif
153
154 #endif /* __GNUC__ */
155
156 # define fprintf(a, format, b...) CDEBUG(D_OTHER, format , ## b)
157 # define printf(format, b...) CDEBUG(D_OTHER, format , ## b)
158 # define time(a) CURRENT_TIME
159
160 # define cfs_num_possible_cpus() num_possible_cpus()
161 # define cfs_num_present_cpus()  num_present_cpus()
162
163 /******************************************************************************/
164 /* Light-weight trace
165  * Support for temporary event tracing with minimal Heisenberg effect. */
166 #define LWT_SUPPORT  0
167
168 #define LWT_MEMORY   (16<<20)
169
170 #ifndef KLWT_SUPPORT
171 # if defined(__KERNEL__)
172 #  if !defined(BITS_PER_LONG)
173 #   error "BITS_PER_LONG not defined"
174 #  endif
175 # elif !defined(__WORDSIZE)
176 #  error "__WORDSIZE not defined"
177 # else
178 #  define BITS_PER_LONG __WORDSIZE
179 # endif
180
181 /* kernel hasn't defined this? */
182 typedef struct {
183         long long   lwte_when;
184         char       *lwte_where;
185         void       *lwte_task;
186         long        lwte_p1;
187         long        lwte_p2;
188         long        lwte_p3;
189         long        lwte_p4;
190 # if BITS_PER_LONG > 32
191         long        lwte_pad;
192 # endif
193 } lwt_event_t;
194 #endif /* !KLWT_SUPPORT */
195
196 #if LWT_SUPPORT
197 # ifdef __KERNEL__
198 #  if !KLWT_SUPPORT
199
200 typedef struct _lwt_page {
201         cfs_list_t               lwtp_list;
202         struct page             *lwtp_page;
203         lwt_event_t             *lwtp_events;
204 } lwt_page_t;
205
206 typedef struct {
207         int                lwtc_current_index;
208         lwt_page_t        *lwtc_current_page;
209 } lwt_cpu_t;
210
211 extern int       lwt_enabled;
212 extern lwt_cpu_t lwt_cpus[];
213
214 /* Note that we _don't_ define LWT_EVENT at all if LWT_SUPPORT isn't set.
215  * This stuff is meant for finding specific problems; it never stays in
216  * production code... */
217
218 #define LWTSTR(n)       #n
219 #define LWTWHERE(f,l)   f ":" LWTSTR(l)
220 #define LWT_EVENTS_PER_PAGE (CFS_PAGE_SIZE / sizeof (lwt_event_t))
221
222 #define LWT_EVENT(p1, p2, p3, p4)                                       \
223 do {                                                                    \
224         unsigned long    flags;                                         \
225         lwt_cpu_t       *cpu;                                           \
226         lwt_page_t      *p;                                             \
227         lwt_event_t     *e;                                             \
228                                                                         \
229         if (lwt_enabled) {                                              \
230                 local_irq_save (flags);                                 \
231                                                                         \
232                 cpu = &lwt_cpus[smp_processor_id()];                    \
233                 p = cpu->lwtc_current_page;                             \
234                 e = &p->lwtp_events[cpu->lwtc_current_index++];         \
235                                                                         \
236                 if (cpu->lwtc_current_index >= LWT_EVENTS_PER_PAGE) {   \
237                         cpu->lwtc_current_page =                        \
238                                 cfs_list_entry (p->lwtp_list.next,      \
239                                                 lwt_page_t, lwtp_list); \
240                         cpu->lwtc_current_index = 0;                    \
241                 }                                                       \
242                                                                         \
243                 e->lwte_when  = get_cycles();                           \
244                 e->lwte_where = LWTWHERE(__FILE__,__LINE__);            \
245                 e->lwte_task  = current;                                \
246                 e->lwte_p1    = (long)(p1);                             \
247                 e->lwte_p2    = (long)(p2);                             \
248                 e->lwte_p3    = (long)(p3);                             \
249                 e->lwte_p4    = (long)(p4);                             \
250                                                                         \
251                 local_irq_restore (flags);                              \
252         }                                                               \
253 } while (0)
254
255 #endif /* !KLWT_SUPPORT */
256
257 extern int  lwt_init (void);
258 extern void lwt_fini (void);
259 extern int  lwt_lookup_string (int *size, char *knlptr,
260                                char *usrptr, int usrsize);
261 extern int  lwt_control (int enable, int clear);
262 extern int  lwt_snapshot (cfs_cycles_t *now, int *ncpu, int *total_size,
263                           void *user_ptr, int user_size);
264 # else  /* __KERNEL__ */
265 #  define LWT_EVENT(p1,p2,p3,p4)     /* no userland implementation yet */
266 # endif /* __KERNEL__ */
267 #endif /* LWT_SUPPORT */
268
269 /* ------------------------------------------------------------------ */
270
271 #define IOCTL_LIBCFS_TYPE long
272
273 #ifdef __CYGWIN__
274 # ifndef BITS_PER_LONG
275 #  if (~0UL) == 0xffffffffUL
276 #   define BITS_PER_LONG 32
277 #  else
278 #   define BITS_PER_LONG 64
279 #  endif
280 # endif
281 #endif
282
283 #if BITS_PER_LONG > 32
284 # define LI_POISON ((int)0x5a5a5a5a5a5a5a5a)
285 # define LL_POISON ((long)0x5a5a5a5a5a5a5a5a)
286 # define LP_POISON ((void *)(long)0x5a5a5a5a5a5a5a5a)
287 #else
288 # define LI_POISON ((int)0x5a5a5a5a)
289 # define LL_POISON ((long)0x5a5a5a5a)
290 # define LP_POISON ((void *)(long)0x5a5a5a5a)
291 #endif
292
293 /* this is a bit chunky */
294
295 #define _LWORDSIZE BITS_PER_LONG
296
297 #if (defined(__KERNEL__) && defined(HAVE_KERN__U64_LONG_LONG)) || \
298     (!defined(__KERNEL__) && defined(HAVE_USER__U64_LONG_LONG))
299 # define LPU64 "%llu"
300 # define LPD64 "%lld"
301 # define LPX64 "%#llx"
302 # define LPX64i "%llx"
303 # define LPO64 "%#llo"
304 # define LPF64 "L"
305 #else
306 # define LPU64 "%lu"
307 # define LPD64 "%ld"
308 # define LPX64 "%#lx"
309 # define LPX64i "%lx"
310 # define LPO64 "%#lo"
311 # define LPF64 "l"
312 #endif
313
314 /*
315  * long_ptr_t & ulong_ptr_t, same to "long" for gcc
316  */
317 # define LPLU "%lu"
318 # define LPLD "%ld"
319 # define LPLX "%#lx"
320
321 /*
322  * pid_t
323  */
324 # define LPPID "%d"
325
326 #ifndef LPU64
327 # error "No word size defined"
328 #endif
329
330 #undef _LWORDSIZE
331
332 /* compat macroses */
333 #ifndef HAVE_SCATTERLIST_SETPAGE
334 static inline void sg_set_page(struct scatterlist *sg, struct page *page,
335                                unsigned int len, unsigned int offset)
336 {
337         sg->page = page;
338         sg->offset = offset;
339         sg->length = len;
340 }
341 #endif
342
343 #define cfs_smp_processor_id()  smp_processor_id()
344
345 #ifndef get_cpu
346 # ifdef CONFIG_PREEMPT
347 #  define cfs_get_cpu()  ({ preempt_disable(); smp_processor_id(); })
348 #  define cfs_put_cpu()  preempt_enable()
349 # else
350 #  define cfs_get_cpu()  smp_processor_id()
351 #  define cfs_put_cpu()
352 # endif
353 #else
354 # define cfs_get_cpu()   get_cpu()
355 # define cfs_put_cpu()   put_cpu()
356 #endif /* get_cpu & put_cpu */
357
358 #ifdef HAVE_SYSCTL_CTLNAME
359 #define INIT_CTL_NAME(a) .ctl_name = a,
360 #define INIT_STRATEGY(a) .strategy = a,
361 #else
362 #define INIT_CTL_NAME(a)
363 #define INIT_STRATEGY(a)
364 #endif
365
366 #endif