MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / include / linux / rwsem.h
blob7b524b4109a039a5cf065d60af824fa4d2fb0ff0
1 /* rwsem.h: R/W semaphores, public interface
3 * Written by David Howells (dhowells@redhat.com).
4 * Derived from asm-i386/semaphore.h
5 */
7 #ifndef _LINUX_RWSEM_H
8 #define _LINUX_RWSEM_H
10 #include <linux/linkage.h>
12 #ifdef __KERNEL__
14 #include <linux/types.h>
15 #include <linux/kernel.h>
16 #include <asm/system.h>
17 #include <asm/atomic.h>
19 struct rw_semaphore;
21 #ifdef CONFIG_RWSEM_GENERIC_SPINLOCK
22 #include <linux/rwsem-spinlock.h> /* use a generic implementation */
23 #else
24 #include <asm/rwsem.h> /* use an arch-specific implementation */
25 #endif
28 * lock for reading
30 extern void down_read(struct rw_semaphore *sem);
33 * trylock for reading -- returns 1 if successful, 0 if contention
35 extern int down_read_trylock(struct rw_semaphore *sem);
38 * lock for writing
40 extern void down_write(struct rw_semaphore *sem);
43 * trylock for writing -- returns 1 if successful, 0 if contention
45 extern int down_write_trylock(struct rw_semaphore *sem);
48 * release a read lock
50 extern void up_read(struct rw_semaphore *sem);
53 * release a write lock
55 extern void up_write(struct rw_semaphore *sem);
58 * downgrade write lock to read lock
60 extern void downgrade_write(struct rw_semaphore *sem);
62 #ifdef CONFIG_DEBUG_LOCK_ALLOC
64 * nested locking. NOTE: rwsems are not allowed to recurse
65 * (which occurs if the same task tries to acquire the same
66 * lock instance multiple times), but multiple locks of the
67 * same lock class might be taken, if the order of the locks
68 * is always the same. This ordering rule can be expressed
69 * to lockdep via the _nested() APIs, but enumerating the
70 * subclasses that are used. (If the nesting relationship is
71 * static then another method for expressing nested locking is
72 * the explicit definition of lock class keys and the use of
73 * lockdep_set_class() at lock initialization time.
74 * See Documentation/lockdep-design.txt for more details.)
76 extern void down_read_nested(struct rw_semaphore *sem, int subclass);
77 extern void down_write_nested(struct rw_semaphore *sem, int subclass);
79 * Take/release a lock when not the owner will release it.
81 * [ This API should be avoided as much as possible - the
82 * proper abstraction for this case is completions. ]
84 extern void down_read_non_owner(struct rw_semaphore *sem);
85 extern void up_read_non_owner(struct rw_semaphore *sem);
86 #else
87 # define down_read_nested(sem, subclass) down_read(sem)
88 # define down_write_nested(sem, subclass) down_write(sem)
89 # define down_read_non_owner(sem) down_read(sem)
90 # define up_read_non_owner(sem) up_read(sem)
91 #endif
93 #endif /* __KERNEL__ */
94 #endif /* _LINUX_RWSEM_H */