[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 3/6] coroutine/mutex: Store the coroutine in the CoWaitRecord
From: |
David Edmondson |
Subject: |
[PATCH v2 3/6] coroutine/mutex: Store the coroutine in the CoWaitRecord only once |
Date: |
Tue, 9 Mar 2021 14:40:12 +0000 |
When taking the slow path for mutex acquisition, set the coroutine
value in the CoWaitRecord in push_waiter(), rather than both there and
in the caller.
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: David Edmondson <david.edmondson@oracle.com>
---
util/qemu-coroutine-lock.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/util/qemu-coroutine-lock.c b/util/qemu-coroutine-lock.c
index 5816bf8900..eb73cf11dc 100644
--- a/util/qemu-coroutine-lock.c
+++ b/util/qemu-coroutine-lock.c
@@ -204,7 +204,6 @@ static void coroutine_fn
qemu_co_mutex_lock_slowpath(AioContext *ctx,
unsigned old_handoff;
trace_qemu_co_mutex_lock_entry(mutex, self);
- w.co = self;
push_waiter(mutex, &w);
/* This is the "Responsibility Hand-Off" protocol; a lock() picks from
--
2.30.1
- [PATCH v2 0/6] coroutine rwlock downgrade fix, minor VDI changes, David Edmondson, 2021/03/09
- [PATCH v2 1/6] block/vdi: When writing new bmap entry fails, don't leak the buffer, David Edmondson, 2021/03/09
- [PATCH v2 2/6] block/vdi: Don't assume that blocks are larger than VdiHeader, David Edmondson, 2021/03/09
- [PATCH v2 3/6] coroutine/mutex: Store the coroutine in the CoWaitRecord only once,
David Edmondson <=
- [PATCH v2 6/6] coroutine/rwlock: Avoid thundering herd when unlocking, David Edmondson, 2021/03/09
- [PATCH v2 5/6] coroutine/rwlock: Wake writers in preference to readers, David Edmondson, 2021/03/09
- [PATCH v2 4/6] test-coroutine: Add rwlock downgrade test, David Edmondson, 2021/03/09