Blame SOURCES/0001-bus-vmbus-fix-race-in-subchannel-creation.patch

045d85
From 25363eb99bc43443bec354abea1e40db61280b30 Mon Sep 17 00:00:00 2001
045d85
From: Stephen Hemminger <sthemmin@microsoft.com>
045d85
Date: Wed, 5 Dec 2018 14:11:56 -0800
045d85
Subject: [PATCH 1/3] bus/vmbus: fix race in subchannel creation
045d85
045d85
[ upstream commit 4970103e89f4f828669acf3b465e984fdc891e1e ]
045d85
045d85
When using multiple queues, there was a race with the kernel
045d85
in setting up the second channel. This regression is due to a kernel change
045d85
which does not allow accessing sysfs files for Hyper-V channels that are not opened.
045d85
045d85
The fix is simple, just move the logic to detect not ready
045d85
sub channels earlier in the existing loop.
045d85
045d85
Fixes: 831dba47bd36 ("bus/vmbus: add Hyper-V virtual bus support")
045d85
045d85
Reported-by: Mohammed Gamal <mgamal@redhat.com>
045d85
Signed-off-by: Stephen Hemminger <sthemmin@microsoft.com>
045d85
(cherry picked from commit ca17e6624251b05cf188997cffc3e1ab2e50561a)
045d85
Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
045d85
---
045d85
 drivers/bus/vmbus/linux/vmbus_uio.c | 12 ++++++------
045d85
 1 file changed, 6 insertions(+), 6 deletions(-)
045d85
045d85
diff --git a/drivers/bus/vmbus/linux/vmbus_uio.c b/drivers/bus/vmbus/linux/vmbus_uio.c
045d85
index 12e97e3a4..38df4d724 100644
045d85
--- a/drivers/bus/vmbus/linux/vmbus_uio.c
045d85
+++ b/drivers/bus/vmbus/linux/vmbus_uio.c
045d85
@@ -357,6 +357,12 @@ int vmbus_uio_get_subchan(struct vmbus_channel *primary,
045d85
 			continue;
045d85
 		}
045d85
 
045d85
+		if (!vmbus_isnew_subchannel(primary, relid))
045d85
+			continue;	/* Already know about you */
045d85
+
045d85
+		if (!vmbus_uio_ring_present(dev, relid))
045d85
+			continue;	/* Ring may not be ready yet */
045d85
+
045d85
 		snprintf(subchan_path, sizeof(subchan_path), "%s/%lu",
045d85
 			 chan_path, relid);
045d85
 		err = vmbus_uio_sysfs_read(subchan_path, "subchannel_id",
045d85
@@ -370,12 +376,6 @@ int vmbus_uio_get_subchan(struct vmbus_channel *primary,
045d85
 		if (subid == 0)
045d85
 			continue;	/* skip primary channel */
045d85
 
045d85
-		if (!vmbus_isnew_subchannel(primary, relid))
045d85
-			continue;
045d85
-
045d85
-		if (!vmbus_uio_ring_present(dev, relid))
045d85
-			continue;	/* Ring may not be ready yet */
045d85
-
045d85
 		err = vmbus_uio_sysfs_read(subchan_path, "monitor_id",
045d85
 					   &monid, UINT8_MAX);
045d85
 		if (err) {
045d85
-- 
045d85
2.20.1
045d85