[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 4/5] migration: fix qemu carsh when RDMA live migrat
From: |
Lidong Chen |
Subject: |
[Qemu-devel] [PATCH 4/5] migration: fix qemu carsh when RDMA live migration |
Date: |
Sat, 7 Apr 2018 16:26:33 +0800 |
After postcopy, the destination qemu work in the dedicated
thread, so only invoke yield_until_fd_readable before postcopy
migration.
Signed-off-by: Lidong Chen <address@hidden>
---
migration/rdma.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/migration/rdma.c b/migration/rdma.c
index 53773c7..81be482 100644
--- a/migration/rdma.c
+++ b/migration/rdma.c
@@ -1489,11 +1489,13 @@ static int qemu_rdma_wait_comp_channel(RDMAContext
*rdma)
* Coroutine doesn't start until migration_fd_process_incoming()
* so don't yield unless we know we're running inside of a coroutine.
*/
- if (rdma->migration_started_on_destination) {
+ if (rdma->migration_started_on_destination &&
+ migration_incoming_get_current()->state == MIGRATION_STATUS_ACTIVE) {
yield_until_fd_readable(rdma->comp_channel->fd);
} else {
/* This is the source side, we're in a separate thread
* or destination prior to migration_fd_process_incoming()
+ * after postcopy, the destination also in a seprate thread.
* we can't yield; so we have to poll the fd.
* But we need to be able to handle 'cancel' or an error
* without hanging forever.
--
1.8.3.1
- [Qemu-devel] [PATCH 0/5] Enable postcopy RDMA live migration, Lidong Chen, 2018/04/07
- [Qemu-devel] [PATCH 1/5] migration: create a dedicated connection for rdma return path, Lidong Chen, 2018/04/07
- [Qemu-devel] [PATCH 2/5] migration: add the interface to set get_return_path, Lidong Chen, 2018/04/07
- [Qemu-devel] [PATCH 3/5] migration: implement the get_return_path for RDMA iochannel, Lidong Chen, 2018/04/07
- [Qemu-devel] [PATCH 4/5] migration: fix qemu carsh when RDMA live migration,
Lidong Chen <=
- [Qemu-devel] [PATCH 5/5] migration: disable RDMA WRITR after postcopy started., Lidong Chen, 2018/04/07
- Re: [Qemu-devel] [PATCH 0/5] Enable postcopy RDMA live migration, 858585 jemmy, 2018/04/08
- Re: [Qemu-devel] [PATCH 0/5] Enable postcopy RDMA live migration, Dr. David Alan Gilbert, 2018/04/11