GNU Linux-libre 4.9.332-gnu1
[releases.git] / drivers / staging / lustre / include / linux / libcfs / linux / 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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #ifndef __LIBCFS_LINUX_LIBCFS_H__
34 #define __LIBCFS_LINUX_LIBCFS_H__
35
36 #ifndef __LIBCFS_LIBCFS_H__
37 #error Do not #include this file directly. #include <linux/libcfs/libcfs.h> instead
38 #endif
39
40 #include <linux/bitops.h>
41 #include <linux/compiler.h>
42 #include <linux/ctype.h>
43 #include <linux/errno.h>
44 #include <linux/file.h>
45 #include <linux/fs.h>
46 #include <linux/highmem.h>
47 #include <linux/interrupt.h>
48 #include <linux/kallsyms.h>
49 #include <linux/kernel.h>
50 #include <linux/kmod.h>
51 #include <linux/kthread.h>
52 #include <linux/miscdevice.h>
53 #include <linux/mm.h>
54 #include <linux/mm_inline.h>
55 #include <linux/module.h>
56 #include <linux/moduleparam.h>
57 #include <linux/mutex.h>
58 #include <linux/notifier.h>
59 #include <linux/pagemap.h>
60 #include <linux/random.h>
61 #include <linux/rbtree.h>
62 #include <linux/rwsem.h>
63 #include <linux/scatterlist.h>
64 #include <linux/sched.h>
65 #include <linux/signal.h>
66 #include <linux/slab.h>
67 #include <linux/smp.h>
68 #include <linux/stat.h>
69 #include <linux/string.h>
70 #include <linux/time.h>
71 #include <linux/timer.h>
72 #include <linux/types.h>
73 #include <linux/unistd.h>
74 #include <linux/vmalloc.h>
75 #include <net/sock.h>
76 #include <linux/atomic.h>
77 #include <asm/div64.h>
78 #include <linux/timex.h>
79 #include <linux/uaccess.h>
80 #include <stdarg.h>
81 #include "linux-cpu.h"
82 #include "linux-time.h"
83
84 #define LUSTRE_TRACE_SIZE (THREAD_SIZE >> 5)
85
86 #if !defined(__x86_64__)
87 # ifdef __ia64__
88 #  define CDEBUG_STACK() (THREAD_SIZE -                          \
89                           ((unsigned long)__builtin_dwarf_cfa() &       \
90                            (THREAD_SIZE - 1)))
91 # else
92 #  define CDEBUG_STACK() (THREAD_SIZE -                          \
93                           ((unsigned long)__builtin_frame_address(0) &  \
94                            (THREAD_SIZE - 1)))
95 # endif /* __ia64__ */
96
97 #define __CHECK_STACK(msgdata, mask, cdls)                            \
98 do {                                                                \
99         if (unlikely(CDEBUG_STACK() > libcfs_stack)) {            \
100                 LIBCFS_DEBUG_MSG_DATA_INIT(msgdata, D_WARNING, NULL);   \
101                 libcfs_stack = CDEBUG_STACK();                    \
102                 libcfs_debug_msg(msgdata,                              \
103                                  "maximum lustre stack %lu\n",    \
104                                  CDEBUG_STACK());                      \
105                 (msgdata)->msg_mask = mask;                          \
106                 (msgdata)->msg_cdls = cdls;                          \
107                 dump_stack();                                      \
108               /*panic("LBUG");*/                                        \
109         }                                                              \
110 } while (0)
111 #define CFS_CHECK_STACK(msgdata, mask, cdls)  __CHECK_STACK(msgdata, mask, cdls)
112 #else /* __x86_64__ */
113 #define CFS_CHECK_STACK(msgdata, mask, cdls) do {} while (0)
114 #define CDEBUG_STACK() (0L)
115 #endif /* __x86_64__ */
116
117 #define __current_nesting_level() (0)
118
119 /**
120  * Platform specific declarations for cfs_curproc API (libcfs/curproc.h)
121  *
122  * Implementation is in linux-curproc.c
123  */
124 #define CFS_CURPROC_COMM_MAX (sizeof((struct task_struct *)0)->comm)
125
126 #include <linux/capability.h>
127
128 /* long integer with size equal to pointer */
129 typedef unsigned long ulong_ptr_t;
130 typedef long long_ptr_t;
131
132 #ifndef WITH_WATCHDOG
133 #define WITH_WATCHDOG
134 #endif
135
136 #endif /* _LINUX_LIBCFS_H */