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