[PATCH] Kprobes: Track kprobe on a per_cpu basis - i386 changes
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-powerpc / rwsem.h
blob79bae4933b73a2e57cd34c9d6ba7a18229095027
1 #ifndef _ASM_POWERPC_RWSEM_H
2 #define _ASM_POWERPC_RWSEM_H
4 #ifdef __KERNEL__
6 /*
7 * include/asm-ppc64/rwsem.h: R/W semaphores for PPC using the stuff
8 * in lib/rwsem.c. Adapted largely from include/asm-i386/rwsem.h
9 * by Paul Mackerras <paulus@samba.org>.
12 #include <linux/list.h>
13 #include <linux/spinlock.h>
14 #include <asm/atomic.h>
15 #include <asm/system.h>
18 * the semaphore definition
20 struct rw_semaphore {
21 /* XXX this should be able to be an atomic_t -- paulus */
22 signed int count;
23 #define RWSEM_UNLOCKED_VALUE 0x00000000
24 #define RWSEM_ACTIVE_BIAS 0x00000001
25 #define RWSEM_ACTIVE_MASK 0x0000ffff
26 #define RWSEM_WAITING_BIAS (-0x00010000)
27 #define RWSEM_ACTIVE_READ_BIAS RWSEM_ACTIVE_BIAS
28 #define RWSEM_ACTIVE_WRITE_BIAS (RWSEM_WAITING_BIAS + RWSEM_ACTIVE_BIAS)
29 spinlock_t wait_lock;
30 struct list_head wait_list;
31 #if RWSEM_DEBUG
32 int debug;
33 #endif
37 * initialisation
39 #if RWSEM_DEBUG
40 #define __RWSEM_DEBUG_INIT , 0
41 #else
42 #define __RWSEM_DEBUG_INIT /* */
43 #endif
45 #define __RWSEM_INITIALIZER(name) \
46 { RWSEM_UNLOCKED_VALUE, SPIN_LOCK_UNLOCKED, \
47 LIST_HEAD_INIT((name).wait_list) \
48 __RWSEM_DEBUG_INIT }
50 #define DECLARE_RWSEM(name) \
51 struct rw_semaphore name = __RWSEM_INITIALIZER(name)
53 extern struct rw_semaphore *rwsem_down_read_failed(struct rw_semaphore *sem);
54 extern struct rw_semaphore *rwsem_down_write_failed(struct rw_semaphore *sem);
55 extern struct rw_semaphore *rwsem_wake(struct rw_semaphore *sem);
56 extern struct rw_semaphore *rwsem_downgrade_wake(struct rw_semaphore *sem);
58 static inline void init_rwsem(struct rw_semaphore *sem)
60 sem->count = RWSEM_UNLOCKED_VALUE;
61 spin_lock_init(&sem->wait_lock);
62 INIT_LIST_HEAD(&sem->wait_list);
63 #if RWSEM_DEBUG
64 sem->debug = 0;
65 #endif
69 * lock for reading
71 static inline void __down_read(struct rw_semaphore *sem)
73 if (unlikely(atomic_inc_return((atomic_t *)(&sem->count)) <= 0))
74 rwsem_down_read_failed(sem);
77 static inline int __down_read_trylock(struct rw_semaphore *sem)
79 int tmp;
81 while ((tmp = sem->count) >= 0) {
82 if (tmp == cmpxchg(&sem->count, tmp,
83 tmp + RWSEM_ACTIVE_READ_BIAS)) {
84 return 1;
87 return 0;
91 * lock for writing
93 static inline void __down_write(struct rw_semaphore *sem)
95 int tmp;
97 tmp = atomic_add_return(RWSEM_ACTIVE_WRITE_BIAS,
98 (atomic_t *)(&sem->count));
99 if (unlikely(tmp != RWSEM_ACTIVE_WRITE_BIAS))
100 rwsem_down_write_failed(sem);
103 static inline int __down_write_trylock(struct rw_semaphore *sem)
105 int tmp;
107 tmp = cmpxchg(&sem->count, RWSEM_UNLOCKED_VALUE,
108 RWSEM_ACTIVE_WRITE_BIAS);
109 return tmp == RWSEM_UNLOCKED_VALUE;
113 * unlock after reading
115 static inline void __up_read(struct rw_semaphore *sem)
117 int tmp;
119 tmp = atomic_dec_return((atomic_t *)(&sem->count));
120 if (unlikely(tmp < -1 && (tmp & RWSEM_ACTIVE_MASK) == 0))
121 rwsem_wake(sem);
125 * unlock after writing
127 static inline void __up_write(struct rw_semaphore *sem)
129 if (unlikely(atomic_sub_return(RWSEM_ACTIVE_WRITE_BIAS,
130 (atomic_t *)(&sem->count)) < 0))
131 rwsem_wake(sem);
135 * implement atomic add functionality
137 static inline void rwsem_atomic_add(int delta, struct rw_semaphore *sem)
139 atomic_add(delta, (atomic_t *)(&sem->count));
143 * downgrade write lock to read lock
145 static inline void __downgrade_write(struct rw_semaphore *sem)
147 int tmp;
149 tmp = atomic_add_return(-RWSEM_WAITING_BIAS, (atomic_t *)(&sem->count));
150 if (tmp < 0)
151 rwsem_downgrade_wake(sem);
155 * implement exchange and add functionality
157 static inline int rwsem_atomic_update(int delta, struct rw_semaphore *sem)
159 return atomic_add_return(delta, (atomic_t *)(&sem->count));
162 static inline int rwsem_is_locked(struct rw_semaphore *sem)
164 return (sem->count != 0);
167 #endif /* __KERNEL__ */
168 #endif /* _ASM_POWERPC_RWSEM_H */