proc->thread stage 2: MAJOR revamping of system calls, ucred, jail API,
[dragonfly.git] / sys / kern / lwkt_rwlock.c
1 /*
2  * Copyright (c) 2003 Matthew Dillon <dillon@backplane.com>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * Implements simple shared/exclusive locks using LWKT. 
27  *
28  * $DragonFly: src/sys/kern/Attic/lwkt_rwlock.c,v 1.3 2003/06/22 20:32:19 dillon Exp $
29  */
30
31 #include <sys/param.h>
32 #include <sys/systm.h>
33 #include <sys/kernel.h>
34 #include <sys/proc.h>
35 #include <sys/rtprio.h>
36 #include <sys/queue.h>
37
38 /*
39  * NOTE! called from low level boot, we cannot do anything fancy.
40  */
41 void
42 lwkt_rwlock_init(lwkt_rwlock_t lock)
43 {
44     lwkt_init_wait(&lock->rw_wait);
45 }
46
47 void
48 lwkt_exlock(lwkt_rwlock_t lock, const char *wmesg)
49 {
50     int gen;
51
52     lwkt_gettoken(&lock->rw_token);
53     gen = lock->rw_wait.wa_gen;
54     while (lock->rw_owner != curthread) {
55         if (lock->rw_owner == NULL && lock->rw_count == 0) {
56             lock->rw_owner = curthread;
57             break;
58         }
59         ++lock->rw_requests;
60         lwkt_block(&lock->rw_wait, wmesg, &gen);
61         lwkt_regettoken(&lock->rw_token);
62         --lock->rw_requests;
63     }
64     ++lock->rw_count;
65     lwkt_reltoken(&lock->rw_token);
66 }
67
68 void
69 lwkt_shlock(lwkt_rwlock_t lock, const char *wmesg)
70 {
71     int gen;
72
73     lwkt_gettoken(&lock->rw_token);
74     gen = lock->rw_wait.wa_gen;
75     while (lock->rw_owner != NULL) {
76         ++lock->rw_requests;
77         lwkt_block(&lock->rw_wait, wmesg, &gen);
78         lwkt_regettoken(&lock->rw_token);
79         --lock->rw_requests;
80     }
81     ++lock->rw_count;
82     lwkt_reltoken(&lock->rw_token);
83 }
84
85 void
86 lwkt_exunlock(lwkt_rwlock_t lock)
87 {
88     lwkt_gettoken(&lock->rw_token);
89     KASSERT(lock->rw_owner != NULL, ("lwkt_exunlock: shared lock"));
90     KASSERT(lock->rw_owner == curthread, ("lwkt_exunlock: not owner"));
91     if (--lock->rw_count == 0) {
92         lock->rw_owner = NULL;
93         if (lock->rw_requests)
94             lwkt_signal(&lock->rw_wait);
95     }
96     lwkt_reltoken(&lock->rw_token);
97 }
98
99 void
100 lwkt_shunlock(lwkt_rwlock_t lock)
101 {
102     lwkt_gettoken(&lock->rw_token);
103     KASSERT(lock->rw_owner == NULL, ("lwkt_shunlock: exclusive lock"));
104     if (--lock->rw_count == 0) {
105         if (lock->rw_requests)
106             lwkt_signal(&lock->rw_wait);
107     }
108     lwkt_reltoken(&lock->rw_token);
109 }
110