Whamcloud - gitweb
eb0adcfd44bcc723629eb6546a45d661abb10444
[fs/lustre-release.git] / libcfs / include / libcfs / linux / libcfs.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
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_LIBCFS_H__
38 #define __LIBCFS_LINUX_LIBCFS_H__
39
40 #ifndef __LIBCFS_LIBCFS_H__
41 #error Do not #include this file directly. #include <libcfs/libcfs.h> instead
42 #endif
43
44 #ifndef __KERNEL__
45 #error This include is only for kernel use.
46 #endif
47
48
49 #include <stdarg.h>
50 #include <libcfs/linux/linux-time.h>
51 #include <libcfs/linux/linux-mem.h>
52 #include <libcfs/linux/linux-prim.h>
53 #include <libcfs/linux/linux-lock.h>
54 #include <libcfs/linux/linux-fs.h>
55 #include <libcfs/linux/linux-tcpip.h>
56 #include <libcfs/linux/kp30.h>
57
58 #include <asm/types.h>
59 #include <linux/types.h>
60 #include <asm/timex.h>
61 #include <linux/sched.h> /* THREAD_SIZE */
62
63 #define LUSTRE_TRACE_SIZE (THREAD_SIZE >> 5)
64
65 #if !defined(__x86_64__)
66 # ifdef  __ia64__
67 #  define CDEBUG_STACK() (THREAD_SIZE -                                 \
68                           ((unsigned long)__builtin_dwarf_cfa() &       \
69                            (THREAD_SIZE - 1)))
70 # else
71 #  define CDEBUG_STACK() (THREAD_SIZE -                                 \
72                           ((unsigned long)__builtin_frame_address(0) &  \
73                            (THREAD_SIZE - 1)))
74 # endif /* __ia64__ */
75
76 #define __CHECK_STACK(file, func, line)                                 \
77 do {                                                                    \
78         unsigned long _stack = CDEBUG_STACK();                           \
79                                                                         \
80         if (_stack > 3*THREAD_SIZE/4 && _stack > libcfs_stack) {        \
81                 libcfs_stack = _stack;                                  \
82                 libcfs_debug_msg(NULL, DEBUG_SUBSYSTEM, D_WARNING,      \
83                                  file, func, line,                      \
84                                  "maximum lustre stack %lu\n", _stack); \
85               /*panic("LBUG");*/                                        \
86         }                                                               \
87 } while (0)
88 #define CHECK_STACK()     __CHECK_STACK(__FILE__, __func__, __LINE__)
89 #else /* __x86_64__ */
90 #define CHECK_STACK() do { } while(0)
91 #define CDEBUG_STACK() (0L)
92 #endif /* __x86_64__ */
93
94 /* initial pid  */
95 #define LUSTRE_LNET_PID          12345
96
97 #define ENTRY_NESTING_SUPPORT (1)
98 #define ENTRY_NESTING   do {;} while (0)
99 #define EXIT_NESTING   do {;} while (0)
100 #define __current_nesting_level() (0)
101
102 /**
103  * Platform specific declarations for cfs_curproc API (libcfs/curproc.h)
104  *
105  * Implementation is in linux-curproc.c
106  */
107 #define CFS_CURPROC_COMM_MAX (sizeof ((struct task_struct *)0)->comm)
108
109 #include <linux/capability.h>
110 typedef kernel_cap_t cfs_kernel_cap_t;
111
112 /*
113  * No stack-back-tracing in Linux for now.
114  */
115 struct cfs_stack_trace {
116 };
117
118 /* long integer with size equal to pointer */
119 typedef unsigned long ulong_ptr_t;
120 typedef long long_ptr_t;
121
122 #ifndef WITH_WATCHDOG
123 #define WITH_WATCHDOG
124 #endif
125
126 #endif /* _LINUX_LIBCFS_H */