Whamcloud - gitweb
39cb8bfef18980d4a881a143d35ef9f535087ed8
[fs/lustre-release.git] / libcfs / include / libcfs / user-prim.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 (c) 2008, 2010, Oracle and/or its affiliates. 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  * libcfs/include/libcfs/user-prim.h
37  *
38  * Author: Nikita Danilov <nikita@clusterfs.com>
39  */
40
41 #ifndef __LIBCFS_USER_PRIM_H__
42 #define __LIBCFS_USER_PRIM_H__
43
44 #ifndef __LIBCFS_LIBCFS_H__
45 #error Do not #include this file directly. #include <libcfs/libcfs.h> instead
46 #endif
47
48 /* Implementations of portable APIs for liblustre */
49
50 /*
51  * liblustre is single-threaded, so most "synchronization" APIs are trivial.
52  */
53
54 #ifndef __KERNEL__
55
56 typedef struct proc_dir_entry           cfs_proc_dir_entry_t;
57
58 /*
59  * Just present a single processor until will add thread support.
60  */
61 #ifndef smp_processor_id
62 #define cfs_smp_processor_id() 0
63 #else
64 #define cfs_smp_processor_id() smp_processor_id()
65 #endif
66 #ifndef num_online_cpus
67 #define cfs_num_online_cpus() 1
68 #else
69 #define cfs_num_online_cpus() num_online_cpus()
70 #endif
71 #ifndef num_possible_cpus
72 #define cfs_num_possible_cpus() 1
73 #else
74 #define cfs_num_possible_cpus() num_possible_cpus()
75 #endif
76
77 /*
78  * Wait Queue.
79  */
80
81 typedef struct cfs_waitlink {
82         cfs_list_t sleeping;
83         void *process;
84 } cfs_waitlink_t;
85
86 typedef struct cfs_waitq {
87         cfs_list_t sleepers;
88 } cfs_waitq_t;
89
90 /*
91  * Task states
92  */
93 typedef long cfs_task_state_t;
94
95 #define CFS_TASK_INTERRUPTIBLE  (0)
96 #define CFS_TASK_UNINT          (1)
97 #define CFS_TASK_RUNNING        (2)
98
99
100 /* 
101  * Lproc
102  */
103 typedef int (cfs_read_proc_t)(char *page, char **start, off_t off,
104                           int count, int *eof, void *data);
105
106 struct file; /* forward ref */
107 typedef int (cfs_write_proc_t)(struct file *file, const char *buffer,
108                                unsigned long count, void *data);
109
110 /*
111  * Signal
112  */
113 typedef sigset_t                        cfs_sigset_t;
114
115 /*
116  * Timer
117  */
118
119 typedef struct {
120         cfs_list_t tl_list;
121         void (*function)(ulong_ptr_t unused);
122         ulong_ptr_t data;
123         long expires;
124 } cfs_timer_t;
125
126
127 #define cfs_in_interrupt()    (0)
128
129 typedef void cfs_psdev_t;
130
131 static inline int cfs_psdev_register(cfs_psdev_t *foo)
132 {
133         return 0;
134 }
135
136 static inline int cfs_psdev_deregister(cfs_psdev_t *foo)
137 {
138         return 0;
139 }
140
141 #define cfs_lock_kernel()               do {} while (0)
142 #define cfs_sigfillset(l)               do {} while (0)
143 #define cfs_recalc_sigpending(l)        do {} while (0)
144 /* Fine, crash, but stop giving me compile warnings */
145 #define cfs_kthread_run(fn,d,fmt,...)   LBUG()
146
147 #define CFS_DAEMON_FLAGS                0
148
149 #ifdef HAVE_LIBPTHREAD
150 typedef int (*cfs_thread_t)(void *);
151 int cfs_create_thread(cfs_thread_t func, void *arg, unsigned long flags);
152 #else
153 #define cfs_create_thread(l,m) LBUG()
154 #endif
155
156 uid_t cfs_curproc_uid(void);
157 gid_t cfs_curproc_gid(void);
158 uid_t cfs_curproc_fsuid(void);
159 gid_t cfs_curproc_fsgid(void);
160
161 #define LIBCFS_REALLOC(ptr, size) realloc(ptr, size)
162
163 #define cfs_online_cpus() sysconf(_SC_NPROCESSORS_ONLN)
164
165 // static inline void local_irq_save(unsigned long flag) {return;}
166 // static inline void local_irq_restore(unsigned long flag) {return;}
167
168 enum {
169         CFS_STACK_TRACE_DEPTH = 16
170 };
171
172 struct cfs_stack_trace {
173         void *frame[CFS_STACK_TRACE_DEPTH];
174 };
175
176 /*
177  * arithmetic
178  */
179 #ifndef do_div /* gcc only, platform-specific will override */
180 #define do_div(a,b)                     \
181         ({                              \
182                 unsigned long remainder;\
183                 remainder = (a) % (b);  \
184                 (a) = (a) / (b);        \
185                 (remainder);            \
186         })
187 #endif
188
189 /*
190  * Groups
191  */
192 typedef struct cfs_group_info {
193
194 } cfs_group_info_t;
195
196 #ifndef min
197 # define min(x,y) ((x)<(y) ? (x) : (y))
198 #endif
199
200 #ifndef max
201 # define max(x,y) ((x)>(y) ? (x) : (y))
202 #endif
203
204 #define cfs_get_random_bytes_prim(val, size)     (*val) = 0
205
206 /* utility libcfs init/fini entries */
207 #ifdef __WINNT__
208 extern int libcfs_arch_init(void);
209 extern void libcfs_arch_cleanup(void);
210 #else /* !__WINNT__ */
211 static inline int libcfs_arch_init(void) {
212         return 0;
213 }
214 static inline void libcfs_arch_cleanup(void) {
215 }
216 /* __WINNT__ */
217 #endif
218
219 /* proc interface wrappers for non-win OS */
220 #ifndef __WINNT__
221 #define cfs_proc_open   open
222 #define cfs_proc_mknod  mknod
223 #define cfs_proc_ioctl  ioctl
224 #define cfs_proc_close  close
225 #define cfs_proc_read   read
226 #define cfs_proc_write  write
227 #define cfs_proc_fopen  fopen
228 #define cfs_proc_fclose fclose
229 #define cfs_proc_fgets  fgets
230 /* !__WINNT__ */
231 #endif
232
233 /* !__KERNEL__ */
234 #endif
235
236 /* __LIBCFS_USER_PRIM_H__ */
237 #endif
238 /*
239  * Local variables:
240  * c-indentation-style: "K&R"
241  * c-basic-offset: 8
242  * tab-width: 8
243  * fill-column: 80
244  * scroll-step: 1
245  * End:
246  */