4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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
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
27 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
31 * This file is part of Lustre, http://www.lustre.org/
32 * Lustre is a trademark of Sun Microsystems, Inc.
34 * libcfs/include/libcfs/linux/linux-lock.h
36 * Basic library routines.
39 #ifndef __LIBCFS_LINUX_CFS_LOCK_H__
40 #define __LIBCFS_LINUX_CFS_LOCK_H__
42 #ifndef __LIBCFS_LIBCFS_H__
43 #error Do not #include this file directly. #include <libcfs/libcfs.h> instead
47 #error This include is only for kernel use.
50 #include <linux/mutex.h>
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.
61 * spin_lock "implementation" (use Linux kernel's primitives)
66 * - spin_lock_bh_init(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)
79 * - SPIN_LOCK_UNLOCKED
83 * spinlock "implementation"
86 typedef spinlock_t cfs_spinlock_t;
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)
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)
105 #define CFS_SPIN_LOCK_UNLOCKED SPIN_LOCK_UNLOCKED
108 * rw_semaphore "implementation" (use Linux kernel's primitives)
117 typedef struct rw_semaphore cfs_rw_semaphore_t;
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)
127 #define cfs_fini_rwsem(s) do {} while(0)
129 #define CFS_DECLARE_RWSEM(name) DECLARE_RWSEM(name)
132 * rwlock_t "implementation" (use Linux kernel's primitives)
140 * - write_unlock_bh(x)
144 typedef rwlock_t cfs_rwlock_t;
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)
156 #define CFS_RW_LOCK_UNLOCKED RW_LOCK_UNLOCKED
159 * completion "implementation" (use Linux kernel's primitives)
161 * - DECLARE_COMPLETION(work)
162 * - INIT_COMPLETION(c)
163 * - COMPLETION_INITIALIZER(work)
164 * - init_completion(c)
166 * - wait_for_completion(c)
167 * - wait_for_completion_interruptible(c)
168 * - fini_completion(c)
170 typedef struct completion cfs_completion_t;
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)
184 * semaphore "implementation" (use Linux kernel's primitives)
185 * - DEFINE_SEMAPHORE(name)
186 * - sema_init(sem, val)
189 * - down_interruptible(sem)
190 * - down_trylock(sem)
192 typedef struct semaphore cfs_semaphore_t;
194 #ifdef DEFINE_SEMAPHORE
195 #define CFS_DEFINE_SEMAPHORE(name) DEFINE_SEMAPHORE(name)
197 #define CFS_DEFINE_SEMAPHORE(name) DECLARE_MUTEX(name)
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)
207 * mutex "implementation" (use Linux kernel's primitives)
209 * - DEFINE_MUTEX(name)
214 * - mutex_is_locked(x)
217 typedef struct mutex cfs_mutex_t;
219 #define CFS_DEFINE_MUTEX(name) DEFINE_MUTEX(name)
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)
229 #ifndef lockdep_set_class
231 /**************************************************************************
233 * Lockdep "implementation". Also see liblustre.h
235 **************************************************************************/
237 typedef struct cfs_lock_class_key {
239 } cfs_lock_class_key_t;
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. */
247 static inline void cfs_lockdep_off(void)
251 static inline void cfs_lockdep_on(void)
255 typedef struct lock_class_key cfs_lock_class_key_t;
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 */
262 #ifndef CONFIG_DEBUG_LOCK_ALLOC
263 #ifndef mutex_lock_nested
264 #define cfs_mutex_lock_nested(mutex, subclass) mutex_lock(mutex)
266 #define cfs_mutex_lock_nested(mutex, subclass) \
267 mutex_lock_nested(mutex, subclass)
270 #ifndef spin_lock_nested
271 #define cfs_spin_lock_nested(lock, subclass) spin_lock(lock)
273 #define cfs_spin_lock_nested(lock, subclass) spin_lock_nested(lock, subclass)
276 #ifndef down_read_nested
277 #define cfs_down_read_nested(lock, subclass) down_read(lock)
279 #define cfs_down_read_nested(lock, subclass) down_read_nested(lock, subclass)
282 #ifndef down_write_nested
283 #define cfs_down_write_nested(lock, subclass) down_write(lock)
285 #define cfs_down_write_nested(lock, subclass) down_write_nested(lock, subclass)
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 */
296 #endif /* __LIBCFS_LINUX_CFS_LOCK_H__ */