Blame SOURCES/kvm-migration-update-index-field-when-delete-or-qsort-RD.patch

357786
From f6aecbe90d02dd675d82194240b1be740ca2c2e7 Mon Sep 17 00:00:00 2001
357786
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
357786
Date: Fri, 22 Jun 2018 19:00:00 +0200
357786
Subject: [PATCH 21/57] migration: update index field when delete or qsort
357786
 RDMALocalBlock
357786
357786
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
357786
Message-id: <20180622190005.21297-14-dgilbert@redhat.com>
357786
Patchwork-id: 81010
357786
O-Subject: [RHEL7.6 qemu-kvm-rhev PATCH 13/18] migration: update index field when delete or qsort RDMALocalBlock
357786
Bugzilla: 1584139
357786
RH-Acked-by: Juan Quintela <quintela@redhat.com>
357786
RH-Acked-by: Peter Xu <peterx@redhat.com>
357786
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
357786
357786
From: Lidong Chen <jemmy858585@gmail.com>
357786
357786
rdma_delete_block function deletes RDMALocalBlock base on index field,
357786
but not update the index field. So when next time invoke rdma_delete_block,
357786
it will not work correctly.
357786
357786
If start and cancel migration repeatedly, some RDMALocalBlock not invoke
357786
ibv_dereg_mr to decrease kernel mm_struct vmpin. When vmpin is large than
357786
max locked memory limitation, ibv_reg_mr will failed, and migration can not
357786
start successfully again.
357786
357786
Signed-off-by: Lidong Chen <lidongchen@tencent.com>
357786
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
357786
Message-Id: <1525618499-1560-1-git-send-email-lidongchen@tencent.com>
357786
Signed-off-by: Juan Quintela <quintela@redhat.com>
357786
357786
Signed-off-by: Lidong Chen <jemmy858585@gmail.com>
357786
(cherry picked from commit 71cd73061c014d04bc6b54936e675347ebc8d964)
357786
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
357786
---
357786
 migration/rdma.c | 7 +++++++
357786
 1 file changed, 7 insertions(+)
357786
357786
diff --git a/migration/rdma.c b/migration/rdma.c
357786
index da474fc..7d233b0 100644
357786
--- a/migration/rdma.c
357786
+++ b/migration/rdma.c
357786
@@ -708,6 +708,9 @@ static int rdma_delete_block(RDMAContext *rdma, RDMALocalBlock *block)
357786
             memcpy(local->block + block->index, old + (block->index + 1),
357786
                 sizeof(RDMALocalBlock) *
357786
                     (local->nb_blocks - (block->index + 1)));
357786
+            for (x = block->index; x < local->nb_blocks - 1; x++) {
357786
+                local->block[x].index--;
357786
+            }
357786
         }
357786
     } else {
357786
         assert(block == local->block);
357786
@@ -3246,6 +3249,10 @@ static int qemu_rdma_registration_handle(QEMUFile *f, void *opaque)
357786
             qsort(rdma->local_ram_blocks.block,
357786
                   rdma->local_ram_blocks.nb_blocks,
357786
                   sizeof(RDMALocalBlock), dest_ram_sort_func);
357786
+            for (i = 0; i < local->nb_blocks; i++) {
357786
+                local->block[i].index = i;
357786
+            }
357786
+
357786
             if (rdma->pin_all) {
357786
                 ret = qemu_rdma_reg_whole_ram_blocks(rdma);
357786
                 if (ret) {
357786
-- 
357786
1.8.3.1
357786