Whamcloud - gitweb
b=16098
[fs/lustre-release.git] / libcfs / include / libcfs / user-lock.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  * libcfs/include/libcfs/user-lock.h
37  *
38  * Author: Nikita Danilov <nikita@clusterfs.com>
39  */
40
41 #ifndef __LIBCFS_USER_LOCK_H__
42 #define __LIBCFS_USER_LOCK_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 synchronization APIs for liblustre */
49
50 /*
51  * liblustre is single-threaded, so most "synchronization" APIs are trivial.
52  *
53  * XXX Liang: There are several branches share lnet with b_hd_newconfig,
54  * if we define lock APIs at here, there will be conflict with liblustre
55  * in other branches.
56  */
57
58 #ifndef __KERNEL__
59
60 /*
61  * The userspace implementations of linux/spinlock.h vary; we just
62  * include our own for all of them
63  */
64 #define __LINUX_SPINLOCK_H
65
66 /*
67  * Optional debugging (magic stamping and checking ownership) can be added.
68  */
69
70 /*
71  * spin_lock
72  *
73  * - spin_lock_init(x)
74  * - spin_lock(x)
75  * - spin_unlock(x)
76  * - spin_trylock(x)
77  *
78  * - spin_lock_irqsave(x, f)
79  * - spin_unlock_irqrestore(x, f)
80  *
81  * No-op implementation.
82  */
83 struct spin_lock {int foo;};
84
85 typedef struct spin_lock spinlock_t;
86
87 #define SPIN_LOCK_UNLOCKED (spinlock_t) { }
88 #define LASSERT_SPIN_LOCKED(lock) do {} while(0)
89 #define LASSERT_SEM_LOCKED(sem) do {} while(0)
90
91 void spin_lock_init(spinlock_t *lock);
92 void spin_lock(spinlock_t *lock);
93 void spin_unlock(spinlock_t *lock);
94 int spin_trylock(spinlock_t *lock);
95 void spin_lock_bh_init(spinlock_t *lock);
96 void spin_lock_bh(spinlock_t *lock);
97 void spin_unlock_bh(spinlock_t *lock);
98
99 static inline int spin_is_locked(spinlock_t *l) {return 1;}
100 static inline void spin_lock_irqsave(spinlock_t *l, unsigned long f){}
101 static inline void spin_unlock_irqrestore(spinlock_t *l, unsigned long f){}
102
103 /*
104  * Semaphore
105  *
106  * - sema_init(x, v)
107  * - __down(x)
108  * - __up(x)
109  */
110 typedef struct semaphore {
111     int foo;
112 } mutex_t;
113
114 void sema_init(struct semaphore *s, int val);
115 void __down(struct semaphore *s);
116 void __up(struct semaphore *s);
117
118 /*
119  * Mutex:
120  *
121  * - init_mutex(x)
122  * - init_mutex_locked(x)
123  * - mutex_up(x)
124  * - mutex_down(x)
125  */
126 #define DECLARE_MUTEX(name)     \
127         struct semaphore name = { 1 }
128
129 #define mutex_up(s)                     __up(s)
130 #define up(s)                           mutex_up(s)
131 #define mutex_down(s)                   __down(s)
132 #define down(s)                         mutex_down(s)
133
134 #define init_MUTEX(x)                   sema_init(x, 1)
135 #define init_MUTEX_LOCKED(x)            sema_init(x, 0)
136 #define init_mutex(s)                   init_MUTEX(s)
137
138 /*
139  * Completion:
140  *
141  * - init_completion(c)
142  * - complete(c)
143  * - wait_for_completion(c)
144  */
145 struct completion {
146         unsigned int done;
147         cfs_waitq_t wait;
148 };
149
150 void init_completion(struct completion *c);
151 void complete(struct completion *c);
152 void wait_for_completion(struct completion *c);
153
154 #define COMPLETION_INITIALIZER(work) \
155         { 0, __WAIT_QUEUE_HEAD_INITIALIZER((work).wait) }
156
157 #define DECLARE_COMPLETION(work) \
158         struct completion work = COMPLETION_INITIALIZER(work)
159
160 #define INIT_COMPLETION(x)      ((x).done = 0)
161
162
163 /*
164  * rw_semaphore:
165  *
166  * - init_rwsem(x)
167  * - down_read(x)
168  * - up_read(x)
169  * - down_write(x)
170  * - up_write(x)
171  */
172 struct rw_semaphore {
173         int foo;
174 };
175
176 void init_rwsem(struct rw_semaphore *s);
177 void down_read(struct rw_semaphore *s);
178 int down_read_trylock(struct rw_semaphore *s);
179 void down_write(struct rw_semaphore *s);
180 int down_write_trylock(struct rw_semaphore *s);
181 void up_read(struct rw_semaphore *s);
182 void up_write(struct rw_semaphore *s);
183
184 /*
185  * read-write lock : Need to be investigated more!!
186  * XXX nikita: for now, let rwlock_t to be identical to rw_semaphore
187  *
188  * - DECLARE_RWLOCK(l)
189  * - rwlock_init(x)
190  * - read_lock(x)
191  * - read_unlock(x)
192  * - write_lock(x)
193  * - write_unlock(x)
194  */
195 typedef struct rw_semaphore rwlock_t;
196 #define RW_LOCK_UNLOCKED        (rwlock_t) { }
197
198 #define rwlock_init(pl)         init_rwsem(pl)
199
200 #define read_lock(l)            down_read(l)
201 #define read_unlock(l)          up_read(l)
202 #define write_lock(l)           down_write(l)
203 #define write_unlock(l)         up_write(l)
204
205 static inline void
206 write_lock_irqsave(rwlock_t *l, unsigned long f) { write_lock(l); }
207 static inline void
208 write_unlock_irqrestore(rwlock_t *l, unsigned long f) { write_unlock(l); }
209
210 static inline void 
211 read_lock_irqsave(rwlock_t *l, unsigned long f) { read_lock(l); }
212 static inline void
213 read_unlock_irqrestore(rwlock_t *l, unsigned long f) { read_unlock(l); }
214
215 /*
216  * Atomic for user-space
217  * Copied from liblustre
218  */
219 typedef struct { volatile int counter; } atomic_t;
220
221 #define ATOMIC_INIT(i) { (i) }
222
223 #define atomic_read(a) ((a)->counter)
224 #define atomic_set(a,b) do {(a)->counter = b; } while (0)
225 #define atomic_dec_and_test(a) ((--((a)->counter)) == 0)
226 #define atomic_dec_and_lock(a,b) ((--((a)->counter)) == 0)
227 #define atomic_inc(a)  (((a)->counter)++)
228 #define atomic_dec(a)  do { (a)->counter--; } while (0)
229 #define atomic_add(b,a)  do {(a)->counter += b;} while (0)
230 #define atomic_add_return(n,a) ((a)->counter += n)
231 #define atomic_inc_return(a) atomic_add_return(1,a)
232 #define atomic_sub(b,a)  do {(a)->counter -= b;} while (0)
233 #define atomic_sub_return(n,a) ((a)->counter -= n)
234 #define atomic_dec_return(a)  atomic_sub_return(1,a)
235
236
237 #ifdef HAVE_LIBPTHREAD
238 #include <pthread.h>
239
240 /*
241  * Completion
242  */
243
244 struct cfs_completion {
245         int c_done;
246         pthread_cond_t c_cond;
247         pthread_mutex_t c_mut;
248 };
249
250 void cfs_init_completion(struct cfs_completion *c);
251 void cfs_fini_completion(struct cfs_completion *c);
252 void cfs_complete(struct cfs_completion *c);
253 void cfs_wait_for_completion(struct cfs_completion *c);
254
255 /*
256  * atomic.h
257  */
258
259 typedef struct { volatile int counter; } cfs_atomic_t;
260
261 int cfs_atomic_read(cfs_atomic_t *a);
262 void cfs_atomic_set(cfs_atomic_t *a, int b);
263 int cfs_atomic_dec_and_test(cfs_atomic_t *a);
264 void cfs_atomic_inc(cfs_atomic_t *a);
265 void cfs_atomic_dec(cfs_atomic_t *a);
266 void cfs_atomic_add(int b, cfs_atomic_t *a);
267 void cfs_atomic_sub(int b, cfs_atomic_t *a);
268
269 #endif /* HAVE_LIBPTHREAD */
270
271 /* !__KERNEL__ */
272 #endif
273
274 /* __LIBCFS_USER_LOCK_H__ */
275 #endif
276 /*
277  * Local variables:
278  * c-indentation-style: "K&R"
279  * c-basic-offset: 8
280  * tab-width: 8
281  * fill-column: 80
282  * scroll-step: 1
283  * End:
284  */