aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rwsem.c
blob: 6c6e7fa9c56177d97dc7b5f8125d2aad6391aeef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/* kernel/rwsem.c: R/W semaphores, public implementation
 *
 * Written by David Howells (dhowells@redhat.com).
 * Derived from asm-i386/semaphore.h
 */

#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/module.h>
#include <linux/rwsem.h>

#include <asm/system.h>
#include <asm/atomic.h>

/*
 * lock for reading
 */
void __sched anon_down_read(struct rw_anon_semaphore *sem)
{
	might_sleep();
	rwsem_acquire_read(&sem->dep_map, 0, 0, _RET_IP_);

	LOCK_CONTENDED(sem, __down_read_trylock, __down_read);
}
EXPORT_SYMBOL(anon_down_read);

/*
 * trylock for reading -- returns 1 if successful, 0 if contention
 */
int anon_down_read_trylock(struct rw_anon_semaphore *sem)
{
	int ret = __down_read_trylock(sem);

	if (ret == 1)
		rwsem_acquire_read(&sem->dep_map, 0, 1, _RET_IP_);
	return ret;
}
EXPORT_SYMBOL(anon_down_read_trylock);

/*
 * lock for writing
 */
void __sched anon_down_write(struct rw_anon_semaphore *sem)
{
	might_sleep();
	rwsem_acquire(&sem->dep_map, 0, 0, _RET_IP_);

	LOCK_CONTENDED(sem, __down_write_trylock, __down_write);
}
EXPORT_SYMBOL(anon_down_write);

/*
 * trylock for writing -- returns 1 if successful, 0 if contention
 */
int anon_down_write_trylock(struct rw_anon_semaphore *sem)
{
	int ret = __down_write_trylock(sem);

	if (ret == 1)
		rwsem_acquire(&sem->dep_map, 0, 1, _RET_IP_);
	return ret;
}
EXPORT_SYMBOL(anon_down_write_trylock);

/*
 * release a read lock
 */
void anon_up_read(struct rw_anon_semaphore *sem)
{
	rwsem_release(&sem->dep_map, 1, _RET_IP_);

	__up_read(sem);
}
EXPORT_SYMBOL(anon_up_read);

/*
 * release a write lock
 */
void anon_up_write(struct rw_anon_semaphore *sem)
{
	rwsem_release(&sem->dep_map, 1, _RET_IP_);

	__up_write(sem);
}
EXPORT_SYMBOL(anon_up_write);

/*
 * downgrade write lock to read lock
 */
void anon_downgrade_write(struct rw_anon_semaphore *sem)
{
	/*
	 * lockdep: a downgraded write will live on as a write
	 * dependency.
	 */
	__downgrade_write(sem);
}
EXPORT_SYMBOL(anon_downgrade_write);

#ifdef CONFIG_DEBUG_LOCK_ALLOC

void anon_down_read_nested(struct rw_anon_semaphore *sem, int subclass)
{
	might_sleep();
	rwsem_acquire_read(&sem->dep_map, subclass, 0, _RET_IP_);

	LOCK_CONTENDED(sem, __down_read_trylock, __down_read);
}
EXPORT_SYMBOL(anon_down_read_nested);

void anon_down_read_non_owner(struct rw_anon_semaphore *sem)
{
	might_sleep();

	__down_read(sem);
}
EXPORT_SYMBOL(anon_down_read_non_owner);

void anon_down_write_nested(struct rw_anon_semaphore *sem, int subclass)
{
	might_sleep();
	rwsem_acquire(&sem->dep_map, subclass, 0, _RET_IP_);

	LOCK_CONTENDED(sem, __down_write_trylock, __down_write);
}
EXPORT_SYMBOL(anon_down_write_nested);

void anon_up_read_non_owner(struct rw_anon_semaphore *sem)
{
	__up_read(sem);
}
EXPORT_SYMBOL(anon_up_read_non_owner);

#endif