Whamcloud - gitweb
8a9f66c42518ad8291e0f8521430f4ccd9661de4
[fs/lustre-release.git] / libcfs / include / libcfs / linux / linux-lock.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 /*
31  * This file is part of Lustre, http://www.lustre.org/
32  * Lustre is a trademark of Sun Microsystems, Inc.
33  *
34  * libcfs/include/libcfs/linux/linux-lock.h
35  *
36  * Basic library routines.
37  */
38
39 #ifndef __LIBCFS_LINUX_CFS_LOCK_H__
40 #define __LIBCFS_LINUX_CFS_LOCK_H__
41
42 #ifndef __LIBCFS_LIBCFS_H__
43 #error Do not #include this file directly. #include <libcfs/libcfs.h> instead
44 #endif
45
46 #ifndef __KERNEL__
47 #error This include is only for kernel use.
48 #endif
49
50 #include <linux/mutex.h>
51
52 /*
53  * IMPORTANT !!!!!!!!
54  *
55  * All locks' declaration are not guaranteed to be initialized,
56  * Althought some of they are initialized in Linux. All locks
57  * declared by CFS_DECL_* should be initialized explicitly.
58  */
59
60 /*
61  * spin_lock "implementation" (use Linux kernel's primitives)
62  *
63  * - spin_lock_init(x)
64  * - spin_lock(x)
65  * - spin_lock_bh(x)
66  * - spin_lock_bh_init(x)
67  * - spin_unlock(x)
68  * - spin_unlock_bh(x)
69  * - spin_trylock(x)
70  * - spin_is_locked(x)
71  *
72  * - spin_lock_irq(x)
73  * - spin_lock_irqsave(x, f)
74  * - spin_unlock_irqrestore(x, f)
75  * - read_lock_irqsave(lock, f)
76  * - write_lock_irqsave(lock, f)
77  * - write_unlock_irqrestore(lock, f)
78  *
79  * - SPIN_LOCK_UNLOCKED
80  */
81
82 /*
83  * spinlock "implementation"
84  */
85
86 typedef spinlock_t cfs_spinlock_t;
87
88 #define cfs_spin_lock_init(lock)             spin_lock_init(lock)
89 #define cfs_spin_lock(lock)                  spin_lock(lock)
90 #define cfs_spin_lock_bh(lock)               spin_lock_bh(lock)
91 #define cfs_spin_lock_bh_init(lock)          spin_lock_bh_init(lock)
92 #define cfs_spin_unlock(lock)                spin_unlock(lock)
93 #define cfs_spin_unlock_bh(lock)             spin_unlock_bh(lock)
94 #define cfs_spin_trylock(lock)               spin_trylock(lock)
95 #define cfs_spin_is_locked(lock)             spin_is_locked(lock)
96
97 #define cfs_spin_lock_irq(lock)              spin_lock_irq(lock)
98 #define cfs_spin_unlock_irq(lock)            spin_unlock_irq(lock)
99 #define cfs_read_lock_irqsave(lock, f)       read_lock_irqsave(lock, f)
100 #define cfs_write_lock_irqsave(lock, f)      write_lock_irqsave(lock, f)
101 #define cfs_write_unlock_irqrestore(lock, f) write_unlock_irqrestore(lock, f)
102 #define cfs_spin_lock_irqsave(lock, f)       spin_lock_irqsave(lock, f)
103 #define cfs_spin_unlock_irqrestore(lock, f)  spin_unlock_irqrestore(lock, f)
104
105 #define CFS_SPIN_LOCK_UNLOCKED               SPIN_LOCK_UNLOCKED
106
107 /*
108  * rw_semaphore "implementation" (use Linux kernel's primitives)
109  *
110  * - sema_init(x)
111  * - init_rwsem(x)
112  * - down_read(x)
113  * - up_read(x)
114  * - down_write(x)
115  * - up_write(x)
116  */
117 typedef struct rw_semaphore cfs_rw_semaphore_t;
118
119 #define cfs_init_rwsem(s)         init_rwsem(s)
120 #define cfs_down_read(s)          down_read(s)
121 #define cfs_down_read_trylock(s)  down_read_trylock(s)
122 #define cfs_up_read(s)            up_read(s)
123 #define cfs_down_write(s)         down_write(s)
124 #define cfs_down_write_trylock(s) down_write_trylock(s)
125 #define cfs_up_write(s)           up_write(s)
126
127 #define cfs_fini_rwsem(s)         do {} while(0)
128
129 #define CFS_DECLARE_RWSEM(name)   DECLARE_RWSEM(name)
130
131 /*
132  * rwlock_t "implementation" (use Linux kernel's primitives)
133  *
134  * - rwlock_init(x)
135  * - read_lock(x)
136  * - read_unlock(x)
137  * - write_lock(x)
138  * - write_unlock(x)
139  * - write_lock_bh(x)
140  * - write_unlock_bh(x)
141  *
142  * - RW_LOCK_UNLOCKED
143  */
144 typedef rwlock_t cfs_rwlock_t;
145
146 #define cfs_rwlock_init(lock)                  rwlock_init(lock)
147 #define cfs_read_lock(lock)                    read_lock(lock)
148 #define cfs_read_unlock(lock)                  read_unlock(lock)
149 #define cfs_read_unlock_irqrestore(lock,flags) \
150         read_unlock_irqrestore(lock, flags)
151 #define cfs_write_lock(lock)                   write_lock(lock)
152 #define cfs_write_unlock(lock)                 write_unlock(lock)
153 #define cfs_write_lock_bh(lock)                write_lock_bh(lock)
154 #define cfs_write_unlock_bh(lock)              write_unlock_bh(lock)
155
156 #define CFS_RW_LOCK_UNLOCKED                   RW_LOCK_UNLOCKED
157
158 /*
159  * completion "implementation" (use Linux kernel's primitives)
160  *
161  * - DECLARE_COMPLETION(work)
162  * - INIT_COMPLETION(c)
163  * - COMPLETION_INITIALIZER(work)
164  * - init_completion(c)
165  * - complete(c)
166  * - wait_for_completion(c)
167  * - wait_for_completion_interruptible(c)
168  * - fini_completion(c)
169  */
170 typedef struct completion cfs_completion_t;
171
172 #define CFS_DECLARE_COMPLETION(work)             DECLARE_COMPLETION(work)
173 #define CFS_INIT_COMPLETION(c)                   INIT_COMPLETION(c)
174 #define CFS_COMPLETION_INITIALIZER(work)         COMPLETION_INITIALIZER(work)
175 #define cfs_init_completion(c)                   init_completion(c)
176 #define cfs_complete(c)                          complete(c)
177 #define cfs_wait_for_completion(c)               wait_for_completion(c)
178 #define cfs_wait_for_completion_interruptible(c) \
179         wait_for_completion_interruptible(c)
180 #define cfs_complete_and_exit(c, code)           complete_and_exit(c, code)
181 #define cfs_fini_completion(c)                   do { } while (0)
182
183 /*
184  * semaphore "implementation" (use Linux kernel's primitives)
185  * - DEFINE_SEMAPHORE(name)
186  * - sema_init(sem, val)
187  * - up(sem)
188  * - down(sem)
189  * - down_interruptible(sem)
190  * - down_trylock(sem)
191  */
192 typedef struct semaphore      cfs_semaphore_t;
193
194 #ifdef DEFINE_SEMAPHORE
195 #define CFS_DEFINE_SEMAPHORE(name)          DEFINE_SEMAPHORE(name)
196 #else
197 #define CFS_DEFINE_SEMAPHORE(name)          DECLARE_MUTEX(name)
198 #endif
199
200 #define cfs_sema_init(sem, val)             sema_init(sem, val)
201 #define cfs_up(x)                           up(x)
202 #define cfs_down(x)                         down(x)
203 #define cfs_down_interruptible(x)           down_interruptible(x)
204 #define cfs_down_trylock(x)                 down_trylock(x)
205
206 /*
207  * mutex "implementation" (use Linux kernel's primitives)
208  *
209  * - DEFINE_MUTEX(name)
210  * - mutex_init(x)
211  * - mutex_lock(x)
212  * - mutex_unlock(x)
213  * - mutex_trylock(x)
214  * - mutex_is_locked(x)
215  * - mutex_destroy(x)
216  */
217 typedef struct mutex cfs_mutex_t;
218
219 #define CFS_DEFINE_MUTEX(name)             DEFINE_MUTEX(name)
220
221 #define cfs_mutex_init(x)                   mutex_init(x)
222 #define cfs_mutex_lock(x)                   mutex_lock(x)
223 #define cfs_mutex_unlock(x)                 mutex_unlock(x)
224 #define cfs_mutex_lock_interruptible(x)     mutex_lock_interruptible(x)
225 #define cfs_mutex_trylock(x)                mutex_trylock(x)
226 #define cfs_mutex_is_locked(x)              mutex_is_locked(x)
227 #define cfs_mutex_destroy(x)                mutex_destroy(x)
228
229 #ifndef lockdep_set_class
230
231 /**************************************************************************
232  *
233  * Lockdep "implementation". Also see liblustre.h
234  *
235  **************************************************************************/
236
237 typedef struct cfs_lock_class_key {
238         ;
239 } cfs_lock_class_key_t;
240
241 #define cfs_lockdep_set_class(lock, key) \
242         do { (void)sizeof (lock);(void)sizeof (key); } while (0)
243 /* This has to be a macro, so that `subclass' can be undefined in kernels that
244  * do not support lockdep. */
245
246
247 static inline void cfs_lockdep_off(void)
248 {
249 }
250
251 static inline void cfs_lockdep_on(void)
252 {
253 }
254 #else
255 typedef struct lock_class_key cfs_lock_class_key_t;
256
257 #define cfs_lockdep_set_class(lock, key) lockdep_set_class(lock, key)
258 #define cfs_lockdep_off()                lockdep_off()
259 #define cfs_lockdep_on()                 lockdep_on()
260 #endif /* lockdep_set_class */
261
262 #ifndef CONFIG_DEBUG_LOCK_ALLOC
263 #ifndef mutex_lock_nested
264 #define cfs_mutex_lock_nested(mutex, subclass) mutex_lock(mutex)
265 #else
266 #define cfs_mutex_lock_nested(mutex, subclass) \
267         mutex_lock_nested(mutex, subclass)
268 #endif
269
270 #ifndef spin_lock_nested
271 #define cfs_spin_lock_nested(lock, subclass) spin_lock(lock)
272 #else
273 #define cfs_spin_lock_nested(lock, subclass) spin_lock_nested(lock, subclass)
274 #endif
275
276 #ifndef down_read_nested
277 #define cfs_down_read_nested(lock, subclass) down_read(lock)
278 #else
279 #define cfs_down_read_nested(lock, subclass) down_read_nested(lock, subclass)
280 #endif
281
282 #ifndef down_write_nested
283 #define cfs_down_write_nested(lock, subclass) down_write(lock)
284 #else
285 #define cfs_down_write_nested(lock, subclass) down_write_nested(lock, subclass)
286 #endif
287 #else /* CONFIG_DEBUG_LOCK_ALLOC is defined */
288 #define cfs_mutex_lock_nested(mutex, subclass) \
289         mutex_lock_nested(mutex, subclass)
290 #define cfs_spin_lock_nested(lock, subclass) spin_lock_nested(lock, subclass)
291 #define cfs_down_read_nested(lock, subclass) down_read_nested(lock, subclass)
292 #define cfs_down_write_nested(lock, subclass) down_write_nested(lock, subclass)
293 #endif /* CONFIG_DEBUG_LOCK_ALLOC */
294
295
296 #endif /* __LIBCFS_LINUX_CFS_LOCK_H__ */