rwsem.h 2.1 KB
Newer Older
A
Adrian Bunk 已提交
1
/*
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 * rwsem.h: R/W semaphores implemented using CAS
 *
 * Written by David S. Miller (davem@redhat.com), 2001.
 * Derived from asm-i386/rwsem.h
 */
#ifndef _SPARC64_RWSEM_H
#define _SPARC64_RWSEM_H

#ifndef _LINUX_RWSEM_H
#error "please don't include asm/rwsem.h directly, use linux/rwsem.h instead"
#endif

#ifdef __KERNEL__

#include <linux/list.h>
#include <linux/spinlock.h>
#include <asm/rwsem-const.h>

struct rwsem_waiter;

struct rw_semaphore {
	signed int count;
	spinlock_t		wait_lock;
	struct list_head	wait_list;
26 27 28
#ifdef CONFIG_DEBUG_LOCK_ALLOC
	struct lockdep_map	dep_map;
#endif
L
Linus Torvalds 已提交
29 30
};

31 32 33 34 35 36
#ifdef CONFIG_DEBUG_LOCK_ALLOC
# define __RWSEM_DEP_MAP_INIT(lockname) , .dep_map = { .name = #lockname }
#else
# define __RWSEM_DEP_MAP_INIT(lockname)
#endif

L
Linus Torvalds 已提交
37
#define __RWSEM_INITIALIZER(name) \
38 39
{ RWSEM_UNLOCKED_VALUE, SPIN_LOCK_UNLOCKED, LIST_HEAD_INIT((name).wait_list) \
  __RWSEM_DEP_MAP_INIT(name) }
L
Linus Torvalds 已提交
40 41 42 43

#define DECLARE_RWSEM(name) \
	struct rw_semaphore name = __RWSEM_INITIALIZER(name)

44 45 46 47 48 49 50 51 52
extern void __init_rwsem(struct rw_semaphore *sem, const char *name,
			 struct lock_class_key *key);

#define init_rwsem(sem)						\
do {								\
	static struct lock_class_key __key;			\
								\
	__init_rwsem((sem), #sem, &__key);			\
} while (0)
L
Linus Torvalds 已提交
53 54 55 56 57 58 59 60 61

extern void __down_read(struct rw_semaphore *sem);
extern int __down_read_trylock(struct rw_semaphore *sem);
extern void __down_write(struct rw_semaphore *sem);
extern int __down_write_trylock(struct rw_semaphore *sem);
extern void __up_read(struct rw_semaphore *sem);
extern void __up_write(struct rw_semaphore *sem);
extern void __downgrade_write(struct rw_semaphore *sem);

62 63 64 65 66
static inline void __down_write_nested(struct rw_semaphore *sem, int subclass)
{
	__down_write(sem);
}

67
static inline int rwsem_atomic_update(int delta, struct rw_semaphore *sem)
L
Linus Torvalds 已提交
68
{
69
	return atomic_add_return(delta, (atomic_t *)(&sem->count));
L
Linus Torvalds 已提交
70 71
}

72
static inline void rwsem_atomic_add(int delta, struct rw_semaphore *sem)
L
Linus Torvalds 已提交
73
{
74
	atomic_add(delta, (atomic_t *)(&sem->count));
L
Linus Torvalds 已提交
75 76
}

77 78 79 80 81
static inline int rwsem_is_locked(struct rw_semaphore *sem)
{
	return (sem->count != 0);
}

L
Linus Torvalds 已提交
82 83 84
#endif /* __KERNEL__ */

#endif /* _SPARC64_RWSEM_H */