mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-07 20:24:41 +00:00
Series is at <1469716595-13591-1-git-send-email-stefanha@redhat.com>. This corresponds to v7 of the spec, posted in <1470324277-19300-1-git-send-email-stefanha@redhat.com> Also add a "cherry-picked from" to the "vsock: make listener child lock ordering explicit" patch and move it to the head of the series with the other vsock backports. Finally backport three new upstream fixes: 3fda5d6e5801 vhost/vsock: fix vhost virtio_vsock_pkt use-after-free 28ad55578b8a virtio-vsock: fix include guard typo 21bc54fc0cdc vhost/vsock: drop space available check for TX vq These were made on top of the version of the vsock patches which were added to Linux master in v4.8-rc1. This commit is based on the email posting, will replace with with proper cherry-pick separately. Requires corresponding backend changes in Hyperkit Signed-off-by: Ian Campbell <ian.campbell@docker.com>
31 lines
979 B
Diff
31 lines
979 B
Diff
From 24c21ccb6524b1ecff1ff47ef8b39375b763d79f Mon Sep 17 00:00:00 2001
|
|
From: Rolf Neugebauer <rolf.neugebauer@gmail.com>
|
|
Date: Mon, 23 May 2016 18:55:45 +0100
|
|
Subject: [PATCH 45/45] vmbus: Don't spam the logs with unknown GUIDs
|
|
|
|
With Hyper-V sockets device types are introduced on the fly. The pr_info()
|
|
then prints a message on every connection, which is way too verbose. Since
|
|
there doesn't seem to be an easy way to check for registered services,
|
|
disable the pr_info() completely.
|
|
|
|
Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
|
|
---
|
|
drivers/hv/channel_mgmt.c | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/drivers/hv/channel_mgmt.c b/drivers/hv/channel_mgmt.c
|
|
index 0a54317..120ee22 100644
|
|
--- a/drivers/hv/channel_mgmt.c
|
|
+++ b/drivers/hv/channel_mgmt.c
|
|
@@ -147,7 +147,6 @@ static u16 hv_get_dev_type(const uuid_le *guid)
|
|
if (!uuid_le_cmp(*guid, vmbus_devs[i].guid))
|
|
return i;
|
|
}
|
|
- pr_info("Unknown GUID: %pUl\n", guid);
|
|
return i;
|
|
}
|
|
|
|
--
|
|
2.9.3
|
|
|