]> git.proxmox.com Git - mirror_spl-debian.git/blame - include/sys/rwlock.h
Imported Upstream version 0.6.5.7
[mirror_spl-debian.git] / include / sys / rwlock.h
CommitLineData
716154c5
BB
1/*****************************************************************************\
2 * Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
3 * Copyright (C) 2007 The Regents of the University of California.
4 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
5 * Written by Brian Behlendorf <behlendorf1@llnl.gov>.
715f6251 6 * UCRL-CODE-235197
7 *
716154c5 8 * This file is part of the SPL, Solaris Porting Layer.
3d6af2dd 9 * For details, see <http://zfsonlinux.org/>.
716154c5
BB
10 *
11 * The SPL is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
715f6251 15 *
716154c5 16 * The SPL is distributed in the hope that it will be useful, but WITHOUT
715f6251 17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
716154c5
BB
22 * with the SPL. If not, see <http://www.gnu.org/licenses/>.
23\*****************************************************************************/
715f6251 24
09b414e8 25#ifndef _SPL_RWLOCK_H
e8b31e84 26#define _SPL_RWLOCK_H
f1ca4da6 27
f4b37741 28#include <sys/types.h>
d28db80f 29#include <linux/rwsem.h>
46aa7b39 30#include <linux/rwsem_compat.h>
f1ca4da6 31
32typedef enum {
e811949a
BB
33 RW_DRIVER = 2,
34 RW_DEFAULT = 4
f1ca4da6 35} krw_type_t;
36
37typedef enum {
d28db80f 38 RW_NONE = 0,
e811949a
BB
39 RW_WRITER = 1,
40 RW_READER = 2
f1ca4da6 41} krw_t;
42
d28db80f
BB
43typedef struct {
44 struct rw_semaphore rw_rwlock;
45 kthread_t *rw_owner;
46} krwlock_t;
f1ca4da6 47
d28db80f
BB
48#define SEM(rwp) ((struct rw_semaphore *)(rwp))
49
d28db80f
BB
50static inline void
51spl_rw_set_owner(krwlock_t *rwp)
52{
53 unsigned long flags;
54
588d9004 55 spl_rwsem_lock_irqsave(&SEM(rwp)->wait_lock, flags);
d28db80f 56 rwp->rw_owner = current;
588d9004 57 spl_rwsem_unlock_irqrestore(&SEM(rwp)->wait_lock, flags);
d28db80f
BB
58}
59
60static inline void
61spl_rw_clear_owner(krwlock_t *rwp)
62{
63 unsigned long flags;
64
588d9004 65 spl_rwsem_lock_irqsave(&SEM(rwp)->wait_lock, flags);
d28db80f 66 rwp->rw_owner = NULL;
588d9004 67 spl_rwsem_unlock_irqrestore(&SEM(rwp)->wait_lock, flags);
d28db80f
BB
68}
69
70static inline kthread_t *
71rw_owner(krwlock_t *rwp)
72{
73 unsigned long flags;
74 kthread_t *owner;
75
588d9004 76 spl_rwsem_lock_irqsave(&SEM(rwp)->wait_lock, flags);
46aa7b39 77 owner = rwp->rw_owner;
588d9004 78 spl_rwsem_unlock_irqrestore(&SEM(rwp)->wait_lock, flags);
d28db80f
BB
79
80 return owner;
81}
82
83static inline int
84RW_READ_HELD(krwlock_t *rwp)
85{
f6188ddd 86 return (spl_rwsem_is_locked(SEM(rwp)) && rw_owner(rwp) == NULL);
d28db80f
BB
87}
88
89static inline int
90RW_WRITE_HELD(krwlock_t *rwp)
91{
f6188ddd 92 return (spl_rwsem_is_locked(SEM(rwp)) && rw_owner(rwp) == current);
d28db80f
BB
93}
94
95static inline int
96RW_LOCK_HELD(krwlock_t *rwp)
97{
46aa7b39 98 return spl_rwsem_is_locked(SEM(rwp));
d28db80f
BB
99}
100
101/*
102 * The following functions must be a #define and not static inline.
103 * This ensures that the native linux semaphore functions (down/up)
104 * will be correctly located in the users code which is important
105 * for the built in kernel lock analysis tools
106 */
107#define rw_init(rwp, name, type, arg) \
108({ \
0e77fc11
BB
109 static struct lock_class_key __key; \
110 \
111 __init_rwsem(SEM(rwp), #rwp, &__key); \
d28db80f 112 spl_rw_clear_owner(rwp); \
e811949a 113})
f1ca4da6 114
d28db80f
BB
115#define rw_destroy(rwp) \
116({ \
117 VERIFY(!RW_LOCK_HELD(rwp)); \
e811949a 118})
ed61a7d0 119
d28db80f
BB
120#define rw_tryenter(rwp, rw) \
121({ \
122 int _rc_ = 0; \
123 \
124 switch (rw) { \
125 case RW_READER: \
126 _rc_ = down_read_trylock(SEM(rwp)); \
127 break; \
128 case RW_WRITER: \
129 if ((_rc_ = down_write_trylock(SEM(rwp)))) \
130 spl_rw_set_owner(rwp); \
131 break; \
132 default: \
55abb092 133 VERIFY(0); \
d28db80f
BB
134 } \
135 _rc_; \
e8b31e84 136})
e8b31e84 137
d28db80f
BB
138#define rw_enter(rwp, rw) \
139({ \
140 switch (rw) { \
141 case RW_READER: \
142 down_read(SEM(rwp)); \
143 break; \
144 case RW_WRITER: \
145 down_write(SEM(rwp)); \
146 spl_rw_set_owner(rwp); \
147 break; \
148 default: \
55abb092 149 VERIFY(0); \
d28db80f 150 } \
e811949a 151})
f1ca4da6 152
d28db80f
BB
153#define rw_exit(rwp) \
154({ \
155 if (RW_WRITE_HELD(rwp)) { \
156 spl_rw_clear_owner(rwp); \
157 up_write(SEM(rwp)); \
158 } else { \
159 ASSERT(RW_READ_HELD(rwp)); \
160 up_read(SEM(rwp)); \
161 } \
162})
163
164#define rw_downgrade(rwp) \
165({ \
166 spl_rw_clear_owner(rwp); \
167 downgrade_write(SEM(rwp)); \
168})
169
ef6c1368 170#if defined(CONFIG_RWSEM_GENERIC_SPINLOCK)
32f5faff
BB
171/*
172 * For the generic implementations of rw-semaphores the following is
173 * true. If your semaphore implementation internally represents the
174 * semaphore state differently then special case handling is required.
175 * - if activity/count is 0 then there are no active readers or writers
176 * - if activity/count is +ve then that is the number of active readers
177 * - if activity/count is -1 then there is one active writer
178 */
179
180extern void __up_read_locked(struct rw_semaphore *);
181extern int __down_write_trylock_locked(struct rw_semaphore *);
182
d28db80f
BB
183#define rw_tryupgrade(rwp) \
184({ \
185 unsigned long _flags_; \
186 int _rc_ = 0; \
187 \
588d9004 188 spl_rwsem_lock_irqsave(&SEM(rwp)->wait_lock, _flags_); \
32f5faff
BB
189 if ((list_empty(&SEM(rwp)->wait_list)) && \
190 (SEM(rwp)->activity == 1)) { \
191 __up_read_locked(SEM(rwp)); \
192 VERIFY(_rc_ = __down_write_trylock_locked(SEM(rwp))); \
d28db80f
BB
193 (rwp)->rw_owner = current; \
194 } \
588d9004 195 spl_rwsem_unlock_irqrestore(&SEM(rwp)->wait_lock, _flags_); \
d28db80f
BB
196 _rc_; \
197})
ef6c1368
BB
198#else
199/*
32f5faff
BB
200 * rw_tryupgrade() can be implemented correctly but for each supported
201 * arch we will need a custom implementation. For the x86 implementation
202 * it looks like a custom cmpxchg() to atomically check and promote the
203 * rwsem would be safe. For now that's not worth the trouble so in this
204 * case rw_tryupgrade() has just been disabled.
ef6c1368
BB
205 */
206#define rw_tryupgrade(rwp) ({ 0; })
207#endif
d28db80f
BB
208
209int spl_rw_init(void);
210void spl_rw_fini(void);
211
e8b31e84 212#endif /* _SPL_RWLOCK_H */