mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-10-31 16:45:03 +00:00 
			
		
		
		
	In particular this contains 1be7107fbe18eed3e319 ("mm: larger stack
guard gap, between vmas") which is a fix for CVE-2017-1000364.
Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			990 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			990 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| From 3e92f9b394e2e8139837c6df95f1995ae0c82108 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 42/44] 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 0a543170eba0..120ee22c945e 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.13.0
 | |
| 
 |