1 #ifndef _ALPHA_SEMAPHORE_H
2 #define _ALPHA_SEMAPHORE_H
5 * SMP- and interrupt-safe semaphores..
7 * (C) Copyright 1996 Linus Torvalds
8 * (C) Copyright 1996, 2000 Richard Henderson
11 #include <asm/current.h>
12 #include <asm/system.h>
13 #include <asm/atomic.h>
14 #include <linux/compiler.h>
15 #include <linux/wait.h>
16 #include <linux/rwsem.h>
20 wait_queue_head_t wait
;
23 #define __SEMAPHORE_INITIALIZER(name, n) \
25 .count = ATOMIC_INIT(n), \
26 .wait = __WAIT_QUEUE_HEAD_INITIALIZER((name).wait), \
29 #define __DECLARE_SEMAPHORE_GENERIC(name,count) \
30 struct semaphore name = __SEMAPHORE_INITIALIZER(name,count)
32 #define DECLARE_MUTEX(name) __DECLARE_SEMAPHORE_GENERIC(name,1)
34 static inline void sema_init(struct semaphore
*sem
, int val
)
38 * *sem = (struct semaphore)__SEMAPHORE_INITIALIZER((*sem),val);
39 * except that gcc produces better initializing by parts yet.
42 atomic_set(&sem
->count
, val
);
43 init_waitqueue_head(&sem
->wait
);
46 static inline void init_MUTEX (struct semaphore
*sem
)
51 static inline void init_MUTEX_LOCKED (struct semaphore
*sem
)
56 extern void down(struct semaphore
*);
57 extern void __down_failed(struct semaphore
*);
58 extern int down_interruptible(struct semaphore
*);
59 extern int __down_failed_interruptible(struct semaphore
*);
60 extern int down_trylock(struct semaphore
*);
61 extern void up(struct semaphore
*);
62 extern void __up_wakeup(struct semaphore
*);
65 * Hidden out of line code is fun, but extremely messy. Rely on newer
66 * compilers to do a respectable job with this. The contention cases
67 * are handled out of line in arch/alpha/kernel/semaphore.c.
70 static inline void __down(struct semaphore
*sem
)
74 count
= atomic_dec_return(&sem
->count
);
75 if (unlikely(count
< 0))
79 static inline int __down_interruptible(struct semaphore
*sem
)
83 count
= atomic_dec_return(&sem
->count
);
84 if (unlikely(count
< 0))
85 return __down_failed_interruptible(sem
);
90 * down_trylock returns 0 on success, 1 if we failed to get the lock.
93 static inline int __down_trylock(struct semaphore
*sem
)
107 __asm__
__volatile__(
118 : "=&r" (ret
), "=m" (sem
->count
)
124 static inline void __up(struct semaphore
*sem
)
126 if (unlikely(atomic_inc_return(&sem
->count
) <= 0))
130 #if !defined(CONFIG_DEBUG_SEMAPHORE)
131 extern inline void down(struct semaphore
*sem
)
135 extern inline int down_interruptible(struct semaphore
*sem
)
137 return __down_interruptible(sem
);
139 extern inline int down_trylock(struct semaphore
*sem
)
141 return __down_trylock(sem
);
143 extern inline void up(struct semaphore
*sem
)