2 * Alpha semaphore implementation.
4 * (C) Copyright 1996 Linus Torvalds
5 * (C) Copyright 1999, 2000 Richard Henderson
8 #include <linux/errno.h>
9 #include <linux/sched.h>
10 #include <linux/init.h>
13 * This is basically the PPC semaphore scheme ported to use
14 * the Alpha ll/sc sequences, so see the PPC code for
19 * Atomically update sem->count.
20 * This does the equivalent of the following:
22 * old_count = sem->count;
23 * tmp = MAX(old_count, 0) + incr;
27 static inline int __sem_update_count(struct semaphore
*sem
, int incr
)
29 long old_count
, tmp
= 0;
41 : "=&r" (old_count
), "=&r" (tmp
), "=m" (sem
->count
)
42 : "Ir" (incr
), "1" (tmp
), "m" (sem
->count
));
48 * Perform the "down" function. Return zero for semaphore acquired,
49 * return negative for signalled out of the function.
51 * If called from down, the return is ignored and the wait loop is
52 * not interruptible. This means that a task waiting on a semaphore
53 * using "down()" cannot be killed until someone does an "up()" on
56 * If called from down_interruptible, the return value gets checked
57 * upon return. If the return value is negative then the task continues
58 * with the negative value in the return register (it can be tested by
61 * Either form may be used in conjunction with "up()".
65 __down_failed(struct semaphore
*sem
)
67 struct task_struct
*tsk
= current
;
68 DECLARE_WAITQUEUE(wait
, tsk
);
70 #ifdef CONFIG_DEBUG_SEMAPHORE
71 printk("%s(%d): down failed(%p)\n",
72 tsk
->comm
, tsk
->pid
, sem
);
75 tsk
->state
= TASK_UNINTERRUPTIBLE
;
77 add_wait_queue_exclusive(&sem
->wait
, &wait
);
80 * Try to get the semaphore. If the count is > 0, then we've
81 * got the semaphore; we decrement count and exit the loop.
82 * If the count is 0 or negative, we set it to -1, indicating
83 * that we are asleep, and then sleep.
85 while (__sem_update_count(sem
, -1) <= 0) {
87 set_task_state(tsk
, TASK_UNINTERRUPTIBLE
);
89 remove_wait_queue(&sem
->wait
, &wait
);
90 tsk
->state
= TASK_RUNNING
;
93 * If there are any more sleepers, wake one of them up so
94 * that it can either get the semaphore, or set count to -1
95 * indicating that there are still processes sleeping.
99 #ifdef CONFIG_DEBUG_SEMAPHORE
100 printk("%s(%d): down acquired(%p)\n",
101 tsk
->comm
, tsk
->pid
, sem
);
106 __down_failed_interruptible(struct semaphore
*sem
)
108 struct task_struct
*tsk
= current
;
109 DECLARE_WAITQUEUE(wait
, tsk
);
112 #ifdef CONFIG_DEBUG_SEMAPHORE
113 printk("%s(%d): down failed(%p)\n",
114 tsk
->comm
, tsk
->pid
, sem
);
117 tsk
->state
= TASK_INTERRUPTIBLE
;
119 add_wait_queue_exclusive(&sem
->wait
, &wait
);
121 while (__sem_update_count(sem
, -1) <= 0) {
122 if (signal_pending(current
)) {
124 * A signal is pending - give up trying.
125 * Set sem->count to 0 if it is negative,
126 * since we are no longer sleeping.
128 __sem_update_count(sem
, 0);
133 set_task_state(tsk
, TASK_INTERRUPTIBLE
);
136 remove_wait_queue(&sem
->wait
, &wait
);
137 tsk
->state
= TASK_RUNNING
;
140 #ifdef CONFIG_DEBUG_SEMAPHORE
141 printk("%s(%d): down %s(%p)\n",
142 current
->comm
, current
->pid
,
143 (ret
< 0 ? "interrupted" : "acquired"), sem
);
149 __up_wakeup(struct semaphore
*sem
)
152 * Note that we incremented count in up() before we came here,
153 * but that was ineffective since the result was <= 0, and
154 * any negative value of count is equivalent to 0.
155 * This ends up setting count to 1, unless count is now > 0
156 * (i.e. because some other cpu has called up() in the meantime),
157 * in which case we just increment count.
159 __sem_update_count(sem
, 1);
164 down(struct semaphore
*sem
)
166 #ifdef WAITQUEUE_DEBUG
167 CHECK_MAGIC(sem
->__magic
);
169 #ifdef CONFIG_DEBUG_SEMAPHORE
170 printk("%s(%d): down(%p) <count=%d> from %p\n",
171 current
->comm
, current
->pid
, sem
,
172 atomic_read(&sem
->count
), __builtin_return_address(0));
178 down_interruptible(struct semaphore
*sem
)
180 #ifdef WAITQUEUE_DEBUG
181 CHECK_MAGIC(sem
->__magic
);
183 #ifdef CONFIG_DEBUG_SEMAPHORE
184 printk("%s(%d): down(%p) <count=%d> from %p\n",
185 current
->comm
, current
->pid
, sem
,
186 atomic_read(&sem
->count
), __builtin_return_address(0));
188 return __down_interruptible(sem
);
192 down_trylock(struct semaphore
*sem
)
196 #ifdef WAITQUEUE_DEBUG
197 CHECK_MAGIC(sem
->__magic
);
200 ret
= __down_trylock(sem
);
202 #ifdef CONFIG_DEBUG_SEMAPHORE
203 printk("%s(%d): down_trylock %s from %p\n",
204 current
->comm
, current
->pid
,
205 ret
? "failed" : "acquired",
206 __builtin_return_address(0));
213 up(struct semaphore
*sem
)
215 #ifdef WAITQUEUE_DEBUG
216 CHECK_MAGIC(sem
->__magic
);
218 #ifdef CONFIG_DEBUG_SEMAPHORE
219 printk("%s(%d): up(%p) <count=%d> from %p\n",
220 current
->comm
, current
->pid
, sem
,
221 atomic_read(&sem
->count
), __builtin_return_address(0));