|
|
76daa3 |
From 721a55126f8143f86c73868bde460a3304c85c81 Mon Sep 17 00:00:00 2001
|
|
|
76daa3 |
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
|
|
|
76daa3 |
Date: Thu, 27 Jul 2017 12:06:55 +0200
|
|
|
76daa3 |
Subject: [PATCH 07/17] migration/rdma: Fix race on source
|
|
|
76daa3 |
|
|
|
76daa3 |
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
|
76daa3 |
Message-id: <20170727120659.8640-2-dgilbert@redhat.com>
|
|
|
76daa3 |
Patchwork-id: 75859
|
|
|
76daa3 |
O-Subject: [Pegas-1.0 qemu-kvm PATCH 1/5] migration/rdma: Fix race on source
|
|
|
76daa3 |
Bugzilla: 1475751
|
|
|
76daa3 |
RH-Acked-by: Peter Xu <peterx@redhat.com>
|
|
|
76daa3 |
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
|
|
|
76daa3 |
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
76daa3 |
|
|
|
76daa3 |
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
|
|
|
76daa3 |
|
|
|
76daa3 |
Fix a race where the destination might try and send the source a
|
|
|
76daa3 |
WRID_READY before the source has done a post-recv for it.
|
|
|
76daa3 |
|
|
|
76daa3 |
rdma_post_recv has to happen after the qp exists, and we're
|
|
|
76daa3 |
OK since we've already called qemu_rdma_source_init that calls
|
|
|
76daa3 |
qemu_alloc_qp.
|
|
|
76daa3 |
|
|
|
76daa3 |
This corresponds to:
|
|
|
76daa3 |
https://bugzilla.redhat.com/show_bug.cgi?id=1285044
|
|
|
76daa3 |
|
|
|
76daa3 |
The race can be triggered by adding a few ms wait before this
|
|
|
76daa3 |
post_recv_control (which was originally due to me turning on loads of
|
|
|
76daa3 |
debug).
|
|
|
76daa3 |
|
|
|
76daa3 |
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
|
76daa3 |
Reviewed-by: Peter Xu <peterx@redhat.com>
|
|
|
76daa3 |
Message-Id: <20170717110936.23314-2-dgilbert@redhat.com>
|
|
|
76daa3 |
Signed-off-by: Juan Quintela <quintela@redhat.com>
|
|
|
76daa3 |
(cherry picked from commit 9cf2bab2edca1e651eef49f2417f8f67bdfe49bb)
|
|
|
76daa3 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
76daa3 |
---
|
|
|
76daa3 |
migration/rdma.c | 12 ++++++------
|
|
|
76daa3 |
1 file changed, 6 insertions(+), 6 deletions(-)
|
|
|
76daa3 |
|
|
|
76daa3 |
diff --git a/migration/rdma.c b/migration/rdma.c
|
|
|
76daa3 |
index 674ccab..0f6669e 100644
|
|
|
76daa3 |
--- a/migration/rdma.c
|
|
|
76daa3 |
+++ b/migration/rdma.c
|
|
|
76daa3 |
@@ -2363,6 +2363,12 @@ static int qemu_rdma_connect(RDMAContext *rdma, Error **errp)
|
|
|
76daa3 |
|
|
|
76daa3 |
caps_to_network(&cap);
|
|
|
76daa3 |
|
|
|
76daa3 |
+ ret = qemu_rdma_post_recv_control(rdma, RDMA_WRID_READY);
|
|
|
76daa3 |
+ if (ret) {
|
|
|
76daa3 |
+ ERROR(errp, "posting second control recv");
|
|
|
76daa3 |
+ goto err_rdma_source_connect;
|
|
|
76daa3 |
+ }
|
|
|
76daa3 |
+
|
|
|
76daa3 |
ret = rdma_connect(rdma->cm_id, &conn_param);
|
|
|
76daa3 |
if (ret) {
|
|
|
76daa3 |
perror("rdma_connect");
|
|
|
76daa3 |
@@ -2403,12 +2409,6 @@ static int qemu_rdma_connect(RDMAContext *rdma, Error **errp)
|
|
|
76daa3 |
|
|
|
76daa3 |
rdma_ack_cm_event(cm_event);
|
|
|
76daa3 |
|
|
|
76daa3 |
- ret = qemu_rdma_post_recv_control(rdma, RDMA_WRID_READY);
|
|
|
76daa3 |
- if (ret) {
|
|
|
76daa3 |
- ERROR(errp, "posting second control recv!");
|
|
|
76daa3 |
- goto err_rdma_source_connect;
|
|
|
76daa3 |
- }
|
|
|
76daa3 |
-
|
|
|
76daa3 |
rdma->control_ready_expected = 1;
|
|
|
76daa3 |
rdma->nb_sent = 0;
|
|
|
76daa3 |
return 0;
|
|
|
76daa3 |
--
|
|
|
76daa3 |
1.8.3.1
|
|
|
76daa3 |
|