Subversion Repositories HelenOS

Rev

Rev 557 | Rev 625 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 557 Rev 623
1
/*
1
/*
2
 * Copyright (C) 2001-2004 Jakub Jermar
2
 * Copyright (C) 2001-2004 Jakub Jermar
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** Reader/Writer locks
29
/** Reader/Writer locks
30
 *
30
 *
31
 * A reader/writer lock can be held by multiple readers at a time.
31
 * A reader/writer lock can be held by multiple readers at a time.
32
 * Or it can be exclusively held by a sole writer at a time.
32
 * Or it can be exclusively held by a sole writer at a time.
33
 */
33
 */
34
 
34
 
35
/*
35
/*
36
 * These locks are not recursive.
36
 * These locks are not recursive.
37
 * Neither readers nor writers will suffer starvation.
37
 * Neither readers nor writers will suffer starvation.
38
 *
38
 *
39
 * If there is a writer followed by a reader waiting for the rwlock
39
 * If there is a writer followed by a reader waiting for the rwlock
40
 * and the writer times out, all leading readers are automatically woken up
40
 * and the writer times out, all leading readers are automatically woken up
41
 * and allowed in.
41
 * and allowed in.
42
 */
42
 */
43
 
43
 
44
/*
44
/*
45
 * NOTE ON rwlock_holder_type
45
 * NOTE ON rwlock_holder_type
46
 * This field is set on an attempt to acquire the exclusive mutex
46
 * This field is set on an attempt to acquire the exclusive mutex
47
 * to the respective value depending whether the caller is a reader
47
 * to the respective value depending whether the caller is a reader
48
 * or a writer. The field is examined only if the thread had been
48
 * or a writer. The field is examined only if the thread had been
49
 * previously blocked on the exclusive mutex. Thus it is save
49
 * previously blocked on the exclusive mutex. Thus it is save
50
 * to store the rwlock type in the thread structure, because
50
 * to store the rwlock type in the thread structure, because
51
 * each thread can block on only one rwlock at a time.
51
 * each thread can block on only one rwlock at a time.
52
 */
52
 */
53
 
53
 
54
#include <synch/rwlock.h>
54
#include <synch/rwlock.h>
55
#include <synch/spinlock.h>
55
#include <synch/spinlock.h>
56
#include <synch/mutex.h>
56
#include <synch/mutex.h>
57
#include <synch/waitq.h>
57
#include <synch/waitq.h>
58
#include <synch/synch.h>
58
#include <synch/synch.h>
59
#include <list.h>
59
#include <list.h>
60
#include <typedefs.h>
60
#include <typedefs.h>
61
#include <arch/asm.h>
61
#include <arch/asm.h>
62
#include <arch.h>
62
#include <arch.h>
63
#include <proc/thread.h>
63
#include <proc/thread.h>
64
#include <panic.h>
64
#include <panic.h>
65
 
65
 
66
#define ALLOW_ALL       0
66
#define ALLOW_ALL       0
67
#define ALLOW_READERS_ONLY  1
67
#define ALLOW_READERS_ONLY  1
68
 
68
 
69
static void let_others_in(rwlock_t *rwl, int readers_only);
69
static void let_others_in(rwlock_t *rwl, int readers_only);
70
static void release_spinlock(void *arg);
70
static void release_spinlock(void *arg);
71
 
71
 
72
/** Initialize reader/writer lock
72
/** Initialize reader/writer lock
73
 *
73
 *
74
 * Initialize reader/writer lock.
74
 * Initialize reader/writer lock.
75
 *
75
 *
76
 * @param rwl Reader/Writer lock.
76
 * @param rwl Reader/Writer lock.
77
 */
77
 */
78
void rwlock_initialize(rwlock_t *rwl) {
78
void rwlock_initialize(rwlock_t *rwl) {
79
    spinlock_initialize(&rwl->lock, "rwlock_t");
79
    spinlock_initialize(&rwl->lock, "rwlock_t");
80
    mutex_initialize(&rwl->exclusive);
80
    mutex_initialize(&rwl->exclusive);
81
    rwl->readers_in = 0;
81
    rwl->readers_in = 0;
82
}
82
}
83
 
83
 
84
/** Acquire reader/writer lock for reading
84
/** Acquire reader/writer lock for reading
85
 *
85
 *
86
 * Acquire reader/writer lock for reading.
86
 * Acquire reader/writer lock for reading.
87
 * Timeout and willingness to block may be specified.
87
 * Timeout and willingness to block may be specified.
88
 *
88
 *
89
 * @param rwl Reader/Writer lock.
89
 * @param rwl Reader/Writer lock.
90
 * @param usec Timeout in microseconds.
90
 * @param usec Timeout in microseconds.
91
 * @param trylock Switches between blocking and non-blocking mode.
91
 * @param trylock Switches between blocking and non-blocking mode.
92
 *
92
 *
93
 * For exact description of possible combinations of
93
 * For exact description of possible combinations of
94
 * 'usec' and 'trylock', see comment for waitq_sleep_timeout().
94
 * 'usec' and 'trylock', see comment for waitq_sleep_timeout().
95
 *
95
 *
96
 * @return See comment for waitq_sleep_timeout().
96
 * @return See comment for waitq_sleep_timeout().
97
 */
97
 */
98
int _rwlock_write_lock_timeout(rwlock_t *rwl, __u32 usec, int trylock)
98
int _rwlock_write_lock_timeout(rwlock_t *rwl, __u32 usec, int trylock)
99
{
99
{
100
    ipl_t ipl;
100
    ipl_t ipl;
101
    int rc;
101
    int rc;
102
   
102
   
103
    ipl = interrupts_disable();
103
    ipl = interrupts_disable();
104
    spinlock_lock(&THREAD->lock);
104
    spinlock_lock(&THREAD->lock);
105
    THREAD->rwlock_holder_type = RWLOCK_WRITER;
105
    THREAD->rwlock_holder_type = RWLOCK_WRITER;
106
    spinlock_unlock(&THREAD->lock);
106
    spinlock_unlock(&THREAD->lock);
107
    interrupts_restore(ipl);
107
    interrupts_restore(ipl);
108
 
108
 
109
    /*
109
    /*
110
     * Writers take the easy part.
110
     * Writers take the easy part.
111
     * They just need to acquire the exclusive mutex.
111
     * They just need to acquire the exclusive mutex.
112
     */
112
     */
113
    rc = _mutex_lock_timeout(&rwl->exclusive, usec, trylock);
113
    rc = _mutex_lock_timeout(&rwl->exclusive, usec, trylock);
114
    if (SYNCH_FAILED(rc)) {
114
    if (SYNCH_FAILED(rc)) {
115
 
115
 
116
        /*
116
        /*
117
         * Lock operation timed out.
117
         * Lock operation timed out.
118
         * The state of rwl is UNKNOWN at this point.
118
         * The state of rwl is UNKNOWN at this point.
119
         * No claims about its holder can be made.
119
         * No claims about its holder can be made.
120
         */
120
         */
121
         
121
         
122
        ipl = interrupts_disable();
122
        ipl = interrupts_disable();
123
        spinlock_lock(&rwl->lock);
123
        spinlock_lock(&rwl->lock);
124
        /*
124
        /*
125
         * Now when rwl is locked, we can inspect it again.
125
         * Now when rwl is locked, we can inspect it again.
126
         * If it is held by some readers already, we can let
126
         * If it is held by some readers already, we can let
127
         * readers from the head of the wait queue in.
127
         * readers from the head of the wait queue in.
128
         */
128
         */
129
        if (rwl->readers_in)
129
        if (rwl->readers_in)
130
            let_others_in(rwl, ALLOW_READERS_ONLY);
130
            let_others_in(rwl, ALLOW_READERS_ONLY);
131
        spinlock_unlock(&rwl->lock);
131
        spinlock_unlock(&rwl->lock);
132
        interrupts_restore(ipl);
132
        interrupts_restore(ipl);
133
    }
133
    }
134
   
134
   
135
    return rc;
135
    return rc;
136
}
136
}
137
 
137
 
138
/** Acquire reader/writer lock for writing
138
/** Acquire reader/writer lock for writing
139
 *
139
 *
140
 * Acquire reader/writer lock for writing.
140
 * Acquire reader/writer lock for writing.
141
 * Timeout and willingness to block may be specified.
141
 * Timeout and willingness to block may be specified.
142
 *
142
 *
143
 * @param rwl Reader/Writer lock.
143
 * @param rwl Reader/Writer lock.
144
 * @param usec Timeout in microseconds.
144
 * @param usec Timeout in microseconds.
145
 * @param trylock Switches between blocking and non-blocking mode.
145
 * @param trylock Switches between blocking and non-blocking mode.
146
 *
146
 *
147
 * For exact description of possible combinations of
147
 * For exact description of possible combinations of
148
 * 'usec' and 'trylock', see comment for waitq_sleep_timeout().
148
 * 'usec' and 'trylock', see comment for waitq_sleep_timeout().
149
 *
149
 *
150
 * @return See comment for waitq_sleep_timeout().
150
 * @return See comment for waitq_sleep_timeout().
151
 */
151
 */
152
int _rwlock_read_lock_timeout(rwlock_t *rwl, __u32 usec, int trylock)
152
int _rwlock_read_lock_timeout(rwlock_t *rwl, __u32 usec, int trylock)
153
{
153
{
154
    int rc;
154
    int rc;
155
    ipl_t ipl;
155
    ipl_t ipl;
156
   
156
   
157
    ipl = interrupts_disable();
157
    ipl = interrupts_disable();
158
    spinlock_lock(&THREAD->lock);
158
    spinlock_lock(&THREAD->lock);
159
    THREAD->rwlock_holder_type = RWLOCK_READER;
159
    THREAD->rwlock_holder_type = RWLOCK_READER;
160
    spinlock_unlock(&THREAD->lock);
160
    spinlock_unlock(&THREAD->lock);
161
 
161
 
162
    spinlock_lock(&rwl->lock);
162
    spinlock_lock(&rwl->lock);
163
 
163
 
164
    /*
164
    /*
165
     * Find out whether we can get what we want without blocking.
165
     * Find out whether we can get what we want without blocking.
166
     */
166
     */
167
    rc = mutex_trylock(&rwl->exclusive);
167
    rc = mutex_trylock(&rwl->exclusive);
168
    if (SYNCH_FAILED(rc)) {
168
    if (SYNCH_FAILED(rc)) {
169
 
169
 
170
        /*
170
        /*
171
         * 'exclusive' mutex is being held by someone else.
171
         * 'exclusive' mutex is being held by someone else.
172
         * If the holder is a reader and there is no one
172
         * If the holder is a reader and there is no one
173
         * else waiting for it, we can enter the critical
173
         * else waiting for it, we can enter the critical
174
         * section.
174
         * section.
175
         */
175
         */
176
 
176
 
177
        if (rwl->readers_in) {
177
        if (rwl->readers_in) {
178
            spinlock_lock(&rwl->exclusive.sem.wq.lock);
178
            spinlock_lock(&rwl->exclusive.sem.wq.lock);
179
            if (list_empty(&rwl->exclusive.sem.wq.head)) {
179
            if (list_empty(&rwl->exclusive.sem.wq.head)) {
180
                /*
180
                /*
181
                 * We can enter.
181
                 * We can enter.
182
                 */
182
                 */
183
                spinlock_unlock(&rwl->exclusive.sem.wq.lock);
183
                spinlock_unlock(&rwl->exclusive.sem.wq.lock);
184
                goto shortcut;
184
                goto shortcut;
185
            }
185
            }
186
            spinlock_unlock(&rwl->exclusive.sem.wq.lock);
186
            spinlock_unlock(&rwl->exclusive.sem.wq.lock);
187
        }
187
        }
188
 
188
 
189
        /*
189
        /*
190
         * In order to prevent a race condition when a reader
190
         * In order to prevent a race condition when a reader
191
         * could block another reader at the head of the waitq,
191
         * could block another reader at the head of the waitq,
192
         * we register a function to unlock rwl->lock
192
         * we register a function to unlock rwl->lock
193
         * after this thread is put asleep.
193
         * after this thread is put asleep.
194
         */
194
         */
-
 
195
        #ifdef CONFIG_SMP
195
        thread_register_call_me(release_spinlock, &rwl->lock);
196
        thread_register_call_me(release_spinlock, &rwl->lock);
-
 
197
        #else
-
 
198
        thread_register_call_me(release_spinlock, NULL);
-
 
199
        #endif
196
                 
200
                 
197
        rc = _mutex_lock_timeout(&rwl->exclusive, usec, trylock);
201
        rc = _mutex_lock_timeout(&rwl->exclusive, usec, trylock);
198
        switch (rc) {
202
        switch (rc) {
199
            case ESYNCH_WOULD_BLOCK:
203
            case ESYNCH_WOULD_BLOCK:
200
                /*
204
                /*
201
                 * release_spinlock() wasn't called
205
                 * release_spinlock() wasn't called
202
                 */
206
                 */
203
                thread_register_call_me(NULL, NULL);                 
207
                thread_register_call_me(NULL, NULL);
204
                spinlock_unlock(&rwl->lock);
208
                spinlock_unlock(&rwl->lock);
205
            case ESYNCH_TIMEOUT:
209
            case ESYNCH_TIMEOUT:
206
                /*
210
                /*
207
                 * The sleep timeouted.
211
                 * The sleep timeouted.
208
                 * We just restore interrupt priority level.
212
                 * We just restore interrupt priority level.
209
                 */
213
                 */
210
            case ESYNCH_OK_BLOCKED:    
214
            case ESYNCH_OK_BLOCKED:    
211
                /*
215
                /*
212
                 * We were woken with rwl->readers_in already incremented.
216
                 * We were woken with rwl->readers_in already incremented.
213
                 * Note that this arrangement avoids race condition between
217
                 * Note that this arrangement avoids race condition between
214
                 * two concurrent readers. (Race is avoided if 'exclusive' is
218
                 * two concurrent readers. (Race is avoided if 'exclusive' is
215
                 * locked at the same time as 'readers_in' is incremented.
219
                 * locked at the same time as 'readers_in' is incremented.
216
                 * Same time means both events happen atomically when
220
                 * Same time means both events happen atomically when
217
                 * rwl->lock is held.)
221
                 * rwl->lock is held.)
218
                 */
222
                 */
219
                interrupts_restore(ipl);
223
                interrupts_restore(ipl);
220
                break;
224
                break;
221
            case ESYNCH_OK_ATOMIC:
225
            case ESYNCH_OK_ATOMIC:
222
                panic("_mutex_lock_timeout()==ESYNCH_OK_ATOMIC\n");
226
                panic("_mutex_lock_timeout()==ESYNCH_OK_ATOMIC\n");
223
                break;
227
                break;
224
            dafault:
228
            dafault:
225
                panic("invalid ESYNCH\n");
229
                panic("invalid ESYNCH\n");
226
                break;
230
                break;
227
        }
231
        }
228
        return rc;
232
        return rc;
229
    }
233
    }
230
 
234
 
231
shortcut:
235
shortcut:
232
 
236
 
233
    /*
237
    /*
234
     * We can increment readers_in only if we didn't go to sleep.
238
     * We can increment readers_in only if we didn't go to sleep.
235
     * For sleepers, rwlock_let_others_in() will do the job.
239
     * For sleepers, rwlock_let_others_in() will do the job.
236
     */
240
     */
237
    rwl->readers_in++;
241
    rwl->readers_in++;
238
   
242
   
239
    spinlock_unlock(&rwl->lock);
243
    spinlock_unlock(&rwl->lock);
240
    interrupts_restore(ipl);
244
    interrupts_restore(ipl);
241
 
245
 
242
    return ESYNCH_OK_ATOMIC;
246
    return ESYNCH_OK_ATOMIC;
243
}
247
}
244
 
248
 
245
/** Release reader/writer lock held by writer
249
/** Release reader/writer lock held by writer
246
 *
250
 *
247
 * Release reader/writer lock held by writer.
251
 * Release reader/writer lock held by writer.
248
 * Handoff reader/writer lock ownership directly
252
 * Handoff reader/writer lock ownership directly
249
 * to waiting readers or a writer.
253
 * to waiting readers or a writer.
250
 *
254
 *
251
 * @param rwl Reader/Writer lock.
255
 * @param rwl Reader/Writer lock.
252
 */
256
 */
253
void rwlock_write_unlock(rwlock_t *rwl)
257
void rwlock_write_unlock(rwlock_t *rwl)
254
{
258
{
255
    ipl_t ipl;
259
    ipl_t ipl;
256
   
260
   
257
    ipl = interrupts_disable();
261
    ipl = interrupts_disable();
258
    spinlock_lock(&rwl->lock);
262
    spinlock_lock(&rwl->lock);
259
    let_others_in(rwl, ALLOW_ALL);
263
    let_others_in(rwl, ALLOW_ALL);
260
    spinlock_unlock(&rwl->lock);
264
    spinlock_unlock(&rwl->lock);
261
    interrupts_restore(ipl);
265
    interrupts_restore(ipl);
262
   
266
   
263
}
267
}
264
 
268
 
265
/** Release reader/writer lock held by reader
269
/** Release reader/writer lock held by reader
266
 *
270
 *
267
 * Release reader/writer lock held by reader.
271
 * Release reader/writer lock held by reader.
268
 * Handoff reader/writer lock ownership directly
272
 * Handoff reader/writer lock ownership directly
269
 * to a waiting writer or don't do anything if more
273
 * to a waiting writer or don't do anything if more
270
 * readers poses the lock.
274
 * readers poses the lock.
271
 *
275
 *
272
 * @param rwl Reader/Writer lock.
276
 * @param rwl Reader/Writer lock.
273
 */
277
 */
274
void rwlock_read_unlock(rwlock_t *rwl)
278
void rwlock_read_unlock(rwlock_t *rwl)
275
{
279
{
276
    ipl_t ipl;
280
    ipl_t ipl;
277
 
281
 
278
    ipl = interrupts_disable();
282
    ipl = interrupts_disable();
279
    spinlock_lock(&rwl->lock);
283
    spinlock_lock(&rwl->lock);
280
    if (!--rwl->readers_in)
284
    if (!--rwl->readers_in)
281
        let_others_in(rwl, ALLOW_ALL);
285
        let_others_in(rwl, ALLOW_ALL);
282
    spinlock_unlock(&rwl->lock);
286
    spinlock_unlock(&rwl->lock);
283
    interrupts_restore(ipl);
287
    interrupts_restore(ipl);
284
}
288
}
285
 
289
 
286
 
290
 
287
/** Direct handoff of reader/writer lock ownership.
291
/** Direct handoff of reader/writer lock ownership.
288
 *
292
 *
289
 * Direct handoff of reader/writer lock ownership
293
 * Direct handoff of reader/writer lock ownership
290
 * to waiting readers or a writer.
294
 * to waiting readers or a writer.
291
 *
295
 *
292
 * Must be called with rwl->lock locked.
296
 * Must be called with rwl->lock locked.
293
 * Must be called with interrupts_disable()'d.
297
 * Must be called with interrupts_disable()'d.
294
 *
298
 *
295
 * @param rwl Reader/Writer lock.
299
 * @param rwl Reader/Writer lock.
296
 * @param readers_only See the description below.
300
 * @param readers_only See the description below.
297
 *
301
 *
298
 * If readers_only is false: (unlock scenario)
302
 * If readers_only is false: (unlock scenario)
299
 * Let the first sleeper on 'exclusive' mutex in, no matter
303
 * Let the first sleeper on 'exclusive' mutex in, no matter
300
 * whether it is a reader or a writer. If there are more leading
304
 * whether it is a reader or a writer. If there are more leading
301
 * readers in line, let each of them in.
305
 * readers in line, let each of them in.
302
 *
306
 *
303
 * Otherwise: (timeout scenario)
307
 * Otherwise: (timeout scenario)
304
 * Let all leading readers in.
308
 * Let all leading readers in.
305
 */
309
 */
306
void let_others_in(rwlock_t *rwl, int readers_only)
310
void let_others_in(rwlock_t *rwl, int readers_only)
307
{
311
{
308
    rwlock_type_t type = RWLOCK_NONE;
312
    rwlock_type_t type = RWLOCK_NONE;
309
    thread_t *t = NULL;
313
    thread_t *t = NULL;
310
    bool one_more = true;
314
    bool one_more = true;
311
   
315
   
312
    spinlock_lock(&rwl->exclusive.sem.wq.lock);
316
    spinlock_lock(&rwl->exclusive.sem.wq.lock);
313
 
317
 
314
    if (!list_empty(&rwl->exclusive.sem.wq.head))
318
    if (!list_empty(&rwl->exclusive.sem.wq.head))
315
        t = list_get_instance(rwl->exclusive.sem.wq.head.next, thread_t, wq_link);
319
        t = list_get_instance(rwl->exclusive.sem.wq.head.next, thread_t, wq_link);
316
    do {
320
    do {
317
        if (t) {
321
        if (t) {
318
            spinlock_lock(&t->lock);
322
            spinlock_lock(&t->lock);
319
            type = t->rwlock_holder_type;
323
            type = t->rwlock_holder_type;
320
            spinlock_unlock(&t->lock);         
324
            spinlock_unlock(&t->lock);         
321
        }
325
        }
322
   
326
   
323
        /*
327
        /*
324
         * If readers_only is true, we wake all leading readers
328
         * If readers_only is true, we wake all leading readers
325
         * if and only if rwl is locked by another reader.
329
         * if and only if rwl is locked by another reader.
326
         * Assumption: readers_only ==> rwl->readers_in
330
         * Assumption: readers_only ==> rwl->readers_in
327
         */
331
         */
328
        if (readers_only && (type != RWLOCK_READER))
332
        if (readers_only && (type != RWLOCK_READER))
329
            break;
333
            break;
330
 
334
 
331
 
335
 
332
        if (type == RWLOCK_READER) {
336
        if (type == RWLOCK_READER) {
333
            /*
337
            /*
334
             * Waking up a reader.
338
             * Waking up a reader.
335
             * We are responsible for incrementing rwl->readers_in for it.
339
             * We are responsible for incrementing rwl->readers_in for it.
336
             */
340
             */
337
             rwl->readers_in++;
341
             rwl->readers_in++;
338
        }
342
        }
339
 
343
 
340
        /*
344
        /*
341
         * Only the last iteration through this loop can increment
345
         * Only the last iteration through this loop can increment
342
         * rwl->exclusive.sem.wq.missed_wakeup's. All preceeding
346
         * rwl->exclusive.sem.wq.missed_wakeup's. All preceeding
343
         * iterations will wake up a thread.
347
         * iterations will wake up a thread.
344
         */
348
         */
345
        /* We call the internal version of waitq_wakeup, which
349
        /* We call the internal version of waitq_wakeup, which
346
         * relies on the fact that the waitq is already locked.
350
         * relies on the fact that the waitq is already locked.
347
         */
351
         */
348
        _waitq_wakeup_unsafe(&rwl->exclusive.sem.wq, WAKEUP_FIRST);
352
        _waitq_wakeup_unsafe(&rwl->exclusive.sem.wq, WAKEUP_FIRST);
349
       
353
       
350
        t = NULL;
354
        t = NULL;
351
        if (!list_empty(&rwl->exclusive.sem.wq.head)) {
355
        if (!list_empty(&rwl->exclusive.sem.wq.head)) {
352
            t = list_get_instance(rwl->exclusive.sem.wq.head.next, thread_t, wq_link);
356
            t = list_get_instance(rwl->exclusive.sem.wq.head.next, thread_t, wq_link);
353
            if (t) {
357
            if (t) {
354
                spinlock_lock(&t->lock);
358
                spinlock_lock(&t->lock);
355
                if (t->rwlock_holder_type != RWLOCK_READER)
359
                if (t->rwlock_holder_type != RWLOCK_READER)
356
                    one_more = false;
360
                    one_more = false;
357
                spinlock_unlock(&t->lock); 
361
                spinlock_unlock(&t->lock); 
358
            }
362
            }
359
        }
363
        }
360
    } while ((type == RWLOCK_READER) && t && one_more);
364
    } while ((type == RWLOCK_READER) && t && one_more);
361
 
365
 
362
    spinlock_unlock(&rwl->exclusive.sem.wq.lock);
366
    spinlock_unlock(&rwl->exclusive.sem.wq.lock);
363
}
367
}
364
 
368
 
365
/** Release spinlock callback
369
/** Release spinlock callback
366
 *
370
 *
367
 * This is a callback function invoked from the scheduler.
371
 * This is a callback function invoked from the scheduler.
368
 * The callback is registered in _rwlock_read_lock_timeout().
372
 * The callback is registered in _rwlock_read_lock_timeout().
369
 *
373
 *
370
 * @param arg Spinlock.
374
 * @param arg Spinlock.
371
 */
375
 */
372
void release_spinlock(void *arg)
376
void release_spinlock(void *arg)
373
{
377
{
374
    spinlock_unlock((spinlock_t *) arg);
378
    spinlock_unlock((spinlock_t *) arg);
375
}
379
}
376
 
380