[PATCH] xtensa: struct semaphore.sleepers initialization
No one may sleep on us until we've been down()'d. So on allocation, initialize `sleepers' to 0, just like everyone else does. Signed-off-by: Arthur Othieno <a.othieno@bluewin.ch> Acked-by: Christian Zankel <chris@zankel.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
23f88fe4bf
commit
aa3a6f456f
@ -38,6 +38,7 @@ struct semaphore {
|
|||||||
static inline void sema_init (struct semaphore *sem, int val)
|
static inline void sema_init (struct semaphore *sem, int val)
|
||||||
{
|
{
|
||||||
atomic_set(&sem->count, val);
|
atomic_set(&sem->count, val);
|
||||||
|
sem->sleepers = 0;
|
||||||
init_waitqueue_head(&sem->wait);
|
init_waitqueue_head(&sem->wait);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user