2 * This file and its contents are supplied under the terms of the
3 * Common Development and Distribution License ("CDDL"), version 1.0.
4 * You may only use this file in accordance with the terms of version
7 * A full copy of the text of the CDDL should have accompanied this
8 * source. A copy of the CDDL is also available via the Internet at
9 * http://www.illumos.org/license/CDDL.
13 * Copyright 2013 Nexenta Systems, Inc. All rights reserved.
20 /* This is the API we're emulating */
21 #include <sys/rwlock.h>
23 #include <sys/errno.h>
24 #include <sys/debug.h>
25 #include <sys/param.h>
26 #include <sys/synch32.h>
27 #include <sys/thread.h>
29 /* avoiding synch.h */
30 int rwlock_init(lwp_rwlock_t
*, int, void *);
31 int rwlock_destroy(lwp_rwlock_t
*);
32 int rw_rdlock(lwp_rwlock_t
*);
33 int rw_wrlock(lwp_rwlock_t
*);
34 int rw_unlock(lwp_rwlock_t
*);
35 int rw_tryrdlock(lwp_rwlock_t
*);
36 int rw_trywrlock(lwp_rwlock_t
*);
37 int _rw_read_held(void *);
38 int _rw_write_held(void *);
42 rw_init(krwlock_t
*rwlp
, char *name
, krw_type_t type
, void *arg
)
44 (void) rwlock_init(&rwlp
->rw_lock
, USYNC_THREAD
, NULL
);
45 rwlp
->rw_owner
= _KTHREAD_INVALID
;
49 rw_destroy(krwlock_t
*rwlp
)
51 (void) rwlock_destroy(&rwlp
->rw_lock
);
52 rwlp
->rw_owner
= _KTHREAD_INVALID
;
56 rw_enter(krwlock_t
*rwlp
, krw_t rw
)
60 if (rw
== RW_READER
) {
61 rc
= rw_rdlock(&rwlp
->rw_lock
);
63 rc
= rw_wrlock(&rwlp
->rw_lock
);
64 rwlp
->rw_owner
= _curthread();
70 rw_exit(krwlock_t
*rwlp
)
72 if (_rw_write_held(&rwlp
->rw_lock
)) {
73 ASSERT(rwlp
->rw_owner
== _curthread());
74 rwlp
->rw_owner
= _KTHREAD_INVALID
;
76 (void) rw_unlock(&rwlp
->rw_lock
);
80 rw_tryenter(krwlock_t
*rwlp
, krw_t rw
)
84 if (rw
== RW_WRITER
) {
85 rv
= rw_trywrlock(&rwlp
->rw_lock
);
87 rwlp
->rw_owner
= _curthread();
89 rv
= rw_tryrdlock(&rwlp
->rw_lock
);
91 return ((rv
== 0) ? 1 : 0);
96 rw_tryupgrade(krwlock_t
*rwlp
)
103 rw_downgrade(krwlock_t
*rwlp
)
105 ASSERT(rwlp
->rw_owner
== _curthread());
106 rwlp
->rw_owner
= _KTHREAD_INVALID
;
107 VERIFY(rw_unlock(&rwlp
->rw_lock
) == 0);
108 VERIFY(rw_rdlock(&rwlp
->rw_lock
) == 0);
112 rw_read_held(krwlock_t
*rwlp
)
114 return (_rw_read_held(rwlp
));
118 rw_write_held(krwlock_t
*rwlp
)
120 return (_rw_write_held(rwlp
));
124 rw_lock_held(krwlock_t
*rwlp
)
126 return (rw_read_held(rwlp
) || rw_write_held(rwlp
));
130 * Return the kthread_t * of the lock owner
133 rw_owner(krwlock_t
*rwlp
)
135 return (rwlp
->rw_owner
);