9ae3a8
From ca20b922adfc76c1aff60e86ae731295cf82f884 Mon Sep 17 00:00:00 2001
9ae3a8
Message-Id: <ca20b922adfc76c1aff60e86ae731295cf82f884.1387382496.git.minovotn@redhat.com>
9ae3a8
In-Reply-To: <c5386144fbf09f628148101bc674e2421cdd16e3.1387382496.git.minovotn@redhat.com>
9ae3a8
References: <c5386144fbf09f628148101bc674e2421cdd16e3.1387382496.git.minovotn@redhat.com>
9ae3a8
From: Nigel Croxon <ncroxon@redhat.com>
9ae3a8
Date: Thu, 14 Nov 2013 22:53:02 +0100
9ae3a8
Subject: [PATCH 26/46] rdma: memory leak RDMAContext::host
9ae3a8
9ae3a8
RH-Author: Nigel Croxon <ncroxon@redhat.com>
9ae3a8
Message-id: <1384469598-13137-27-git-send-email-ncroxon@redhat.com>
9ae3a8
Patchwork-id: 55704
9ae3a8
O-Subject: [RHEL7.0 PATCH 26/42] rdma: memory leak RDMAContext::host
9ae3a8
Bugzilla: 1011720
9ae3a8
RH-Acked-by: Orit Wasserman <owasserm@redhat.com>
9ae3a8
RH-Acked-by: Amit Shah <amit.shah@redhat.com>
9ae3a8
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
9ae3a8
9ae3a8
Bugzilla: 1011720
9ae3a8
https://bugzilla.redhat.com/show_bug.cgi?id=1011720
9ae3a8
9ae3a8
>From commit ID:
9ae3a8
commit e1d0fb378ae3bb4272124a12e3fe1a02c4745eb1
9ae3a8
Author: Isaku Yamahata <yamahata@private.email.ne.jp>
9ae3a8
Date:   Sat Aug 3 22:54:54 2013 -0400
9ae3a8
9ae3a8
    rdma: memory leak RDMAContext::host
9ae3a8
9ae3a8
    It is allocated by g_strdup(), so needs to be freed.
9ae3a8
9ae3a8
    Reviewed-by: Michael R. Hines <mrhines@us.ibm.com>
9ae3a8
    Signed-off-by: Isaku Yamahata <yamahata@private.email.ne.jp>
9ae3a8
    Signed-off-by: Michael R. Hines <mrhines@us.ibm.com>
9ae3a8
    Message-id: 1375584894-9917-8-git-send-email-mrhines@linux.vnet.ibm.com
9ae3a8
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
9ae3a8
---
9ae3a8
 migration-rdma.c |    2 ++
9ae3a8
 1 files changed, 2 insertions(+), 0 deletions(-)
9ae3a8
9ae3a8
Signed-off-by: Michal Novotny <minovotn@redhat.com>
9ae3a8
---
9ae3a8
 migration-rdma.c | 2 ++
9ae3a8
 1 file changed, 2 insertions(+)
9ae3a8
9ae3a8
diff --git a/migration-rdma.c b/migration-rdma.c
9ae3a8
index 6afe98c..ff0a823 100644
9ae3a8
--- a/migration-rdma.c
9ae3a8
+++ b/migration-rdma.c
9ae3a8
@@ -2097,6 +2097,8 @@ static void qemu_rdma_cleanup(RDMAContext *rdma)
9ae3a8
         rdma_destroy_event_channel(rdma->channel);
9ae3a8
         rdma->channel = NULL;
9ae3a8
     }
9ae3a8
+    g_free(rdma->host);
9ae3a8
+    rdma->host = NULL;
9ae3a8
 }
9ae3a8
 
9ae3a8
 
9ae3a8
-- 
9ae3a8
1.7.11.7
9ae3a8