diff options
author | Kevin Wolf <kwolf@redhat.com> | 2013-12-13 13:04:35 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2014-01-24 17:40:02 +0100 |
commit | 6460440f34c709461b84375cfd8a86b27d433225 (patch) | |
tree | a1bd62cb84945fbd5fb1719be49cd5558405e1fa /block.c | |
parent | 7327145f63a224c9ba9c16d0c29781feffef8dc6 (diff) | |
download | qemu-6460440f34c709461b84375cfd8a86b27d433225.tar.gz qemu-6460440f34c709461b84375cfd8a86b27d433225.tar.bz2 qemu-6460440f34c709461b84375cfd8a86b27d433225.zip |
block: Allow wait_serialising_requests() at any point
We can only have a single wait_serialising_requests() call per request
because otherwise we can run into deadlocks where requests are waiting
for each other. The same is true when wait_serialising_requests() is not
at the very beginning of a request, so that other requests can be issued
between the start of the tracking and wait_serialising_requests().
Fix this by changing wait_serialising_requests() to ignore requests that
are already (directly or indirectly) waiting for the calling request.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Benoit Canet <benoit@irqsave.net>
Diffstat (limited to 'block.c')
-rw-r--r-- | block.c | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -2328,9 +2328,16 @@ static void coroutine_fn wait_serialising_requests(BdrvTrackedRequest *self) */ assert(qemu_coroutine_self() != req->co); - qemu_co_queue_wait(&req->wait_queue); - retry = true; - break; + /* If the request is already (indirectly) waiting for us, or + * will wait for us as soon as it wakes up, then just go on + * (instead of producing a deadlock in the former case). */ + if (!req->waiting_for) { + self->waiting_for = req; + qemu_co_queue_wait(&req->wait_queue); + self->waiting_for = NULL; + retry = true; + break; + } } } } while (retry); |