qapi: pad GenericList value fields to 64 bits
[qemu/ar7.git] / qemu-coroutine-lock.c
blobd9fea4989d43294576d784a95c66990aadbde18f
1 /*
2 * coroutine queues and locks
4 * Copyright (c) 2011 Kevin Wolf <kwolf@redhat.com>
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
25 #include "qemu-common.h"
26 #include "block/coroutine.h"
27 #include "block/coroutine_int.h"
28 #include "qemu/queue.h"
29 #include "trace.h"
31 void qemu_co_queue_init(CoQueue *queue)
33 QTAILQ_INIT(&queue->entries);
36 void coroutine_fn qemu_co_queue_wait(CoQueue *queue)
38 Coroutine *self = qemu_coroutine_self();
39 QTAILQ_INSERT_TAIL(&queue->entries, self, co_queue_next);
40 qemu_coroutine_yield();
41 assert(qemu_in_coroutine());
44 void coroutine_fn qemu_co_queue_wait_insert_head(CoQueue *queue)
46 Coroutine *self = qemu_coroutine_self();
47 QTAILQ_INSERT_HEAD(&queue->entries, self, co_queue_next);
48 qemu_coroutine_yield();
49 assert(qemu_in_coroutine());
52 /**
53 * qemu_co_queue_run_restart:
55 * Enter each coroutine that was previously marked for restart by
56 * qemu_co_queue_next() or qemu_co_queue_restart_all(). This function is
57 * invoked by the core coroutine code when the current coroutine yields or
58 * terminates.
60 void qemu_co_queue_run_restart(Coroutine *co)
62 Coroutine *next;
64 trace_qemu_co_queue_run_restart(co);
65 while ((next = QTAILQ_FIRST(&co->co_queue_wakeup))) {
66 QTAILQ_REMOVE(&co->co_queue_wakeup, next, co_queue_next);
67 qemu_coroutine_enter(next, NULL);
71 static bool qemu_co_queue_do_restart(CoQueue *queue, bool single)
73 Coroutine *self = qemu_coroutine_self();
74 Coroutine *next;
76 if (QTAILQ_EMPTY(&queue->entries)) {
77 return false;
80 while ((next = QTAILQ_FIRST(&queue->entries)) != NULL) {
81 QTAILQ_REMOVE(&queue->entries, next, co_queue_next);
82 QTAILQ_INSERT_TAIL(&self->co_queue_wakeup, next, co_queue_next);
83 trace_qemu_co_queue_next(next);
84 if (single) {
85 break;
88 return true;
91 bool qemu_co_queue_next(CoQueue *queue)
93 return qemu_co_queue_do_restart(queue, true);
96 void qemu_co_queue_restart_all(CoQueue *queue)
98 qemu_co_queue_do_restart(queue, false);
101 bool qemu_co_queue_empty(CoQueue *queue)
103 return (QTAILQ_FIRST(&queue->entries) == NULL);
106 void qemu_co_mutex_init(CoMutex *mutex)
108 memset(mutex, 0, sizeof(*mutex));
109 qemu_co_queue_init(&mutex->queue);
112 void coroutine_fn qemu_co_mutex_lock(CoMutex *mutex)
114 Coroutine *self = qemu_coroutine_self();
116 trace_qemu_co_mutex_lock_entry(mutex, self);
118 while (mutex->locked) {
119 qemu_co_queue_wait(&mutex->queue);
122 mutex->locked = true;
124 trace_qemu_co_mutex_lock_return(mutex, self);
127 void coroutine_fn qemu_co_mutex_unlock(CoMutex *mutex)
129 Coroutine *self = qemu_coroutine_self();
131 trace_qemu_co_mutex_unlock_entry(mutex, self);
133 assert(mutex->locked == true);
134 assert(qemu_in_coroutine());
136 mutex->locked = false;
137 qemu_co_queue_next(&mutex->queue);
139 trace_qemu_co_mutex_unlock_return(mutex, self);
142 void qemu_co_rwlock_init(CoRwlock *lock)
144 memset(lock, 0, sizeof(*lock));
145 qemu_co_queue_init(&lock->queue);
148 void qemu_co_rwlock_rdlock(CoRwlock *lock)
150 while (lock->writer) {
151 qemu_co_queue_wait(&lock->queue);
153 lock->reader++;
156 void qemu_co_rwlock_unlock(CoRwlock *lock)
158 assert(qemu_in_coroutine());
159 if (lock->writer) {
160 lock->writer = false;
161 qemu_co_queue_restart_all(&lock->queue);
162 } else {
163 lock->reader--;
164 assert(lock->reader >= 0);
165 /* Wakeup only one waiting writer */
166 if (!lock->reader) {
167 qemu_co_queue_next(&lock->queue);
172 void qemu_co_rwlock_wrlock(CoRwlock *lock)
174 while (lock->writer || lock->reader) {
175 qemu_co_queue_wait(&lock->queue);
177 lock->writer = true;