Blame SOURCES/kvm-migration-not-wait-RDMA_CM_EVENT_DISCONNECTED-event-.patch

ae23c9
From 3ee3fef23ff91d6bf974820b4dbe8280c6ad27b2 Mon Sep 17 00:00:00 2001
ae23c9
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
ae23c9
Date: Fri, 22 Jun 2018 19:00:04 +0200
ae23c9
Subject: [PATCH 16/21] migration: not wait RDMA_CM_EVENT_DISCONNECTED event
ae23c9
 after rdma_disconnect
ae23c9
ae23c9
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
ae23c9
Message-id: <20180801135522.11658-18-dgilbert@redhat.com>
ae23c9
Patchwork-id: 81572
ae23c9
O-Subject: [qemu-kvm RHEL8/virt212 PATCH 17/18] migration: not wait RDMA_CM_EVENT_DISCONNECTED event after rdma_disconnect
ae23c9
Bugzilla: 1594384
ae23c9
RH-Acked-by: Peter Xu <peterx@redhat.com>
ae23c9
RH-Acked-by: John Snow <jsnow@redhat.com>
ae23c9
RH-Acked-by: Juan Quintela <quintela@redhat.com>
ae23c9
ae23c9
From: Lidong Chen <jemmy858585@gmail.com>
ae23c9
ae23c9
When cancel migration during RDMA precopy, the source qemu main thread hangs sometime.
ae23c9
ae23c9
The backtrace is:
ae23c9
    (gdb) bt
ae23c9
    #0  0x00007f249eabd43d in write () from /lib64/libpthread.so.0
ae23c9
    #1  0x00007f24a1ce98e4 in rdma_get_cm_event (channel=0x4675d10, event=0x7ffe2f643dd0) at src/cma.c:2189
ae23c9
    #2  0x00000000007b6166 in qemu_rdma_cleanup (rdma=0x6784000) at migration/rdma.c:2296
ae23c9
    #3  0x00000000007b7cae in qio_channel_rdma_close (ioc=0x3bfcc30, errp=0x0) at migration/rdma.c:2999
ae23c9
    #4  0x00000000008db60e in qio_channel_close (ioc=0x3bfcc30, errp=0x0) at io/channel.c:273
ae23c9
    #5  0x00000000007a8765 in channel_close (opaque=0x3bfcc30) at migration/qemu-file-channel.c:98
ae23c9
    #6  0x00000000007a71f9 in qemu_fclose (f=0x527c000) at migration/qemu-file.c:334
ae23c9
    #7  0x0000000000795b96 in migrate_fd_cleanup (opaque=0x3b46280) at migration/migration.c:1162
ae23c9
    #8  0x000000000093a71b in aio_bh_call (bh=0x3db7a20) at util/async.c:90
ae23c9
    #9  0x000000000093a7b2 in aio_bh_poll (ctx=0x3b121c0) at util/async.c:118
ae23c9
    #10 0x000000000093f2ad in aio_dispatch (ctx=0x3b121c0) at util/aio-posix.c:436
ae23c9
    #11 0x000000000093ab41 in aio_ctx_dispatch (source=0x3b121c0, callback=0x0, user_data=0x0)
ae23c9
        at util/async.c:261
ae23c9
    #12 0x00007f249f73c7aa in g_main_context_dispatch () from /lib64/libglib-2.0.so.0
ae23c9
    #13 0x000000000093dc5e in glib_pollfds_poll () at util/main-loop.c:215
ae23c9
    #14 0x000000000093dd4e in os_host_main_loop_wait (timeout=28000000) at util/main-loop.c:263
ae23c9
    #15 0x000000000093de05 in main_loop_wait (nonblocking=0) at util/main-loop.c:522
ae23c9
    #16 0x00000000005bc6a5 in main_loop () at vl.c:1944
ae23c9
    #17 0x00000000005c39b5 in main (argc=56, argv=0x7ffe2f6443f8, envp=0x3ad0030) at vl.c:4752
ae23c9
ae23c9
It does not get the RDMA_CM_EVENT_DISCONNECTED event after rdma_disconnect sometime.
ae23c9
ae23c9
According to IB Spec once active side send DREQ message, it should wait for DREP message
ae23c9
and only once it arrived it should trigger a DISCONNECT event. DREP message can be dropped
ae23c9
due to network issues.
ae23c9
For that case the spec defines a DREP_timeout state in the CM state machine, if the DREP is
ae23c9
dropped we should get a timeout and a TIMEWAIT_EXIT event will be trigger.
ae23c9
Unfortunately the current kernel CM implementation doesn't include the DREP_timeout state
ae23c9
and in above scenario we will not get DISCONNECT or TIMEWAIT_EXIT events.
ae23c9
ae23c9
So it should not invoke rdma_get_cm_event which may hang forever, and the event channel
ae23c9
is also destroyed in qemu_rdma_cleanup.
ae23c9
ae23c9
Signed-off-by: Lidong Chen <lidongchen@tencent.com>
ae23c9
Reviewed-by: Juan Quintela <quintela@redhat.com>
ae23c9
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
ae23c9
Signed-off-by: Juan Quintela <quintela@redhat.com>
ae23c9
(cherry picked from commit c5e76115ccb4979cec795a8ae38becd07c2fde9f)
ae23c9
---
ae23c9
 migration/rdma.c       | 12 ++----------
ae23c9
 migration/trace-events |  1 -
ae23c9
 2 files changed, 2 insertions(+), 11 deletions(-)
ae23c9
ae23c9
diff --git a/migration/rdma.c b/migration/rdma.c
ae23c9
index 7d233b0..6e29ebf 100644
ae23c9
--- a/migration/rdma.c
ae23c9
+++ b/migration/rdma.c
ae23c9
@@ -2268,8 +2268,7 @@ static int qemu_rdma_write(QEMUFile *f, RDMAContext *rdma,
ae23c9
 
ae23c9
 static void qemu_rdma_cleanup(RDMAContext *rdma)
ae23c9
 {
ae23c9
-    struct rdma_cm_event *cm_event;
ae23c9
-    int ret, idx;
ae23c9
+    int idx;
ae23c9
 
ae23c9
     if (rdma->cm_id && rdma->connected) {
ae23c9
         if ((rdma->error_state ||
ae23c9
@@ -2283,14 +2282,7 @@ static void qemu_rdma_cleanup(RDMAContext *rdma)
ae23c9
             qemu_rdma_post_send_control(rdma, NULL, &head;;
ae23c9
         }
ae23c9
 
ae23c9
-        ret = rdma_disconnect(rdma->cm_id);
ae23c9
-        if (!ret) {
ae23c9
-            trace_qemu_rdma_cleanup_waiting_for_disconnect();
ae23c9
-            ret = rdma_get_cm_event(rdma->channel, &cm_event);
ae23c9
-            if (!ret) {
ae23c9
-                rdma_ack_cm_event(cm_event);
ae23c9
-            }
ae23c9
-        }
ae23c9
+        rdma_disconnect(rdma->cm_id);
ae23c9
         trace_qemu_rdma_cleanup_disconnect();
ae23c9
         rdma->connected = false;
ae23c9
     }
ae23c9
diff --git a/migration/trace-events b/migration/trace-events
ae23c9
index a180d7b..92b3179 100644
ae23c9
--- a/migration/trace-events
ae23c9
+++ b/migration/trace-events
ae23c9
@@ -123,7 +123,6 @@ qemu_rdma_accept_pin_state(bool pin) "%d"
ae23c9
 qemu_rdma_accept_pin_verbsc(void *verbs) "Verbs context after listen: %p"
ae23c9
 qemu_rdma_block_for_wrid_miss(const char *wcompstr, int wcomp, const char *gcompstr, uint64_t req) "A Wanted wrid %s (%d) but got %s (%" PRIu64 ")"
ae23c9
 qemu_rdma_cleanup_disconnect(void) ""
ae23c9
-qemu_rdma_cleanup_waiting_for_disconnect(void) ""
ae23c9
 qemu_rdma_close(void) ""
ae23c9
 qemu_rdma_connect_pin_all_requested(void) ""
ae23c9
 qemu_rdma_connect_pin_all_outcome(bool pin) "%d"
ae23c9
-- 
ae23c9
1.8.3.1
ae23c9