mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-11-04 02:32:11 +00:00 
			
		
		
		
	The kernel configs themselves are stored as diffs of what we want vs. each version's defconfig. Thus, things like e.g. CONFIG_DEVKMEM drop out after it was made non-default. The implication of this is (I hope) that as upstream adopts security features, our delta can shrink (or more realistically, only include the next-next gen features). Signed-off-by: Tycho Andersen <tycho@docker.com>
		
			
				
	
	
		
			31 lines
		
	
	
		
			1006 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1006 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 43b90bff8334b8d4df02f1832df2510ede671bd1 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 02/10] 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 d8bc4b910192..8df02f3ca0b2 100644
 | 
						|
--- a/drivers/hv/channel_mgmt.c
 | 
						|
+++ b/drivers/hv/channel_mgmt.c
 | 
						|
@@ -192,7 +192,6 @@ static u16 hv_get_dev_type(const struct vmbus_channel *channel)
 | 
						|
 		if (!uuid_le_cmp(*guid, vmbus_devs[i].guid))
 | 
						|
 			return i;
 | 
						|
 	}
 | 
						|
-	pr_info("Unknown GUID: %pUl\n", guid);
 | 
						|
 	return i;
 | 
						|
 }
 | 
						|
 
 | 
						|
-- 
 | 
						|
2.12.2
 | 
						|
 |