Matthew Wilcox | 64ac24e | 2008-03-07 21:55:58 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2008 Intel Corporation |
| 3 | * Author: Matthew Wilcox <willy@linux.intel.com> |
| 4 | * |
| 5 | * Distributed under the terms of the GNU GPL, version 2 |
| 6 | * |
Matthew Wilcox | 714493c | 2008-04-11 15:23:52 -0400 | [diff] [blame] | 7 | * Please see kernel/semaphore.c for documentation of these functions |
Matthew Wilcox | 64ac24e | 2008-03-07 21:55:58 -0500 | [diff] [blame] | 8 | */ |
| 9 | #ifndef __LINUX_SEMAPHORE_H |
| 10 | #define __LINUX_SEMAPHORE_H |
| 11 | |
| 12 | #include <linux/list.h> |
| 13 | #include <linux/spinlock.h> |
| 14 | |
Matthew Wilcox | 714493c | 2008-04-11 15:23:52 -0400 | [diff] [blame] | 15 | /* Please don't access any members of this structure directly */ |
Matthew Wilcox | 64ac24e | 2008-03-07 21:55:58 -0500 | [diff] [blame] | 16 | struct semaphore { |
Thomas Gleixner | 8292c9e1 | 2010-02-24 09:50:22 +0100 | [diff] [blame] | 17 | raw_spinlock_t lock; |
Matthew Wilcox | b17170b | 2008-03-14 14:35:22 -0400 | [diff] [blame] | 18 | unsigned int count; |
Matthew Wilcox | 64ac24e | 2008-03-07 21:55:58 -0500 | [diff] [blame] | 19 | struct list_head wait_list; |
| 20 | }; |
| 21 | |
| 22 | #define __SEMAPHORE_INITIALIZER(name, n) \ |
| 23 | { \ |
Thomas Gleixner | 8292c9e1 | 2010-02-24 09:50:22 +0100 | [diff] [blame] | 24 | .lock = __RAW_SPIN_LOCK_UNLOCKED((name).lock), \ |
Matthew Wilcox | 64ac24e | 2008-03-07 21:55:58 -0500 | [diff] [blame] | 25 | .count = n, \ |
| 26 | .wait_list = LIST_HEAD_INIT((name).wait_list), \ |
| 27 | } |
| 28 | |
Thomas Gleixner | febc88c | 2010-09-07 14:46:37 +0200 | [diff] [blame] | 29 | #define DEFINE_SEMAPHORE(name) \ |
| 30 | struct semaphore name = __SEMAPHORE_INITIALIZER(name, 1) |
| 31 | |
Matthew Wilcox | 64ac24e | 2008-03-07 21:55:58 -0500 | [diff] [blame] | 32 | static inline void sema_init(struct semaphore *sem, int val) |
| 33 | { |
| 34 | static struct lock_class_key __key; |
| 35 | *sem = (struct semaphore) __SEMAPHORE_INITIALIZER(*sem, val); |
| 36 | lockdep_init_map(&sem->lock.dep_map, "semaphore->lock", &__key, 0); |
| 37 | } |
| 38 | |
Matthew Wilcox | 64ac24e | 2008-03-07 21:55:58 -0500 | [diff] [blame] | 39 | extern void down(struct semaphore *sem); |
Matthew Wilcox | 64ac24e | 2008-03-07 21:55:58 -0500 | [diff] [blame] | 40 | extern int __must_check down_interruptible(struct semaphore *sem); |
Matthew Wilcox | f06d968 | 2008-03-14 13:19:33 -0400 | [diff] [blame] | 41 | extern int __must_check down_killable(struct semaphore *sem); |
Matthew Wilcox | 64ac24e | 2008-03-07 21:55:58 -0500 | [diff] [blame] | 42 | extern int __must_check down_trylock(struct semaphore *sem); |
Matthew Wilcox | f1241c8 | 2008-03-14 13:43:13 -0400 | [diff] [blame] | 43 | extern int __must_check down_timeout(struct semaphore *sem, long jiffies); |
Matthew Wilcox | 64ac24e | 2008-03-07 21:55:58 -0500 | [diff] [blame] | 44 | extern void up(struct semaphore *sem); |
| 45 | |
| 46 | #endif /* __LINUX_SEMAPHORE_H */ |