Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1598835 > unrolled thread

[PATCH 1/1] Drivers: hv: vmbus: Don't leak memory when a channel is rescinded

Started bykys@exchange.microsoft.com
First post2017-03-13 04:20 +0100
Last post2017-03-13 04:20 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH 1/1] Drivers: hv: vmbus: Don't leak memory when a channel is rescinded kys@exchange.microsoft.com - 2017-03-13 04:20 +0100

#1598835 — [PATCH 1/1] Drivers: hv: vmbus: Don't leak memory when a channel is rescinded

Fromkys@exchange.microsoft.com
Date2017-03-13 04:20 +0100
Subject[PATCH 1/1] Drivers: hv: vmbus: Don't leak memory when a channel is rescinded
Message-ID<tkoGB-2Da-1@gated-at.bofh.it>
From: K. Y. Srinivasan <kys@microsoft.com>

When we close a channel that has been rescinded, we will leak memory since
vmbus_teardown_gpadl() returns an error. Fix this so that we can properly
cleanup the memory allocated to the ring buffers.

Fixes: ccb61f8a99e6 ("Drivers: hv: vmbus: Fix a rescind handling bug")

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
---
 drivers/hv/channel.c |   13 ++++++++-----
 1 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/drivers/hv/channel.c b/drivers/hv/channel.c
index 54075ac..e9b0fab 100644
--- a/drivers/hv/channel.c
+++ b/drivers/hv/channel.c
@@ -502,12 +502,15 @@ int vmbus_teardown_gpadl(struct vmbus_channel *channel, u32 gpadl_handle)
 
 	wait_for_completion(&info->waitevent);
 
-	if (channel->rescind) {
-		ret = -ENODEV;
-		goto post_msg_err;
-	}
-
 post_msg_err:
+	/*
+	 * If the channel has been rescinded;
+	 * we will be awakened by the rescind
+	 * handler; set the error code to zero so we don't leak memory.
+	 */
+	if (channel->rescind)
+		ret = 0;
+
 	spin_lock_irqsave(&vmbus_connection.channelmsg_lock, flags);
 	list_del(&info->msglistentry);
 	spin_unlock_irqrestore(&vmbus_connection.channelmsg_lock, flags);
-- 
1.7.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web