Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts: drivers/net/ethernet/emulex/benet/be.h drivers/net/usb/qmi_wwan.c drivers/net/wireless/brcm80211/brcmfmac/dhd_bus.h include/net/netfilter/nf_conntrack_synproxy.h include/net/secure_seq.h The conflicts are of two varieties: 1) Conflicts with Joe Perches's 'extern' removal from header file function declarations. Usually it's an argument signature change or a function being added/removed. The resolutions are trivial. 2) Some overlapping changes in qmi_wwan.c and be.h, one commit adds a new value, another changes an existing value. That sort of thing. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
		
				commit
				
					
						4fbef95af4
					
				
			
		
					 533 changed files with 5174 additions and 3025 deletions
				
			
		|  | @ -380,10 +380,13 @@ struct perf_event_mmap_page { | |||
| 	union { | ||||
| 		__u64	capabilities; | ||||
| 		struct { | ||||
| 			__u64	cap_usr_time		: 1, | ||||
| 				cap_usr_rdpmc		: 1, | ||||
| 				cap_usr_time_zero	: 1, | ||||
| 				cap_____res		: 61; | ||||
| 			__u64	cap_bit0		: 1, /* Always 0, deprecated, see commit 860f085b74e9 */ | ||||
| 				cap_bit0_is_deprecated	: 1, /* Always 1, signals that bit 0 is zero */ | ||||
| 
 | ||||
| 				cap_user_rdpmc		: 1, /* The RDPMC instruction can be used to read counts */ | ||||
| 				cap_user_time		: 1, /* The time_* fields are used */ | ||||
| 				cap_user_time_zero	: 1, /* The time_zero field is used */ | ||||
| 				cap_____res		: 59; | ||||
| 		}; | ||||
| 	}; | ||||
| 
 | ||||
|  | @ -442,12 +445,13 @@ struct perf_event_mmap_page { | |||
| 	 *               ((rem * time_mult) >> time_shift); | ||||
| 	 */ | ||||
| 	__u64	time_zero; | ||||
| 	__u32	size;			/* Header size up to __reserved[] fields. */ | ||||
| 
 | ||||
| 		/*
 | ||||
| 		 * Hole for extension of the self monitor capabilities | ||||
| 		 */ | ||||
| 
 | ||||
| 	__u64	__reserved[119];	/* align to 1k */ | ||||
| 	__u8	__reserved[118*8+4];	/* align to 1k. */ | ||||
| 
 | ||||
| 	/*
 | ||||
| 	 * Control data for the mmap() data buffer. | ||||
|  | @ -528,6 +532,7 @@ enum perf_event_type { | |||
| 	 *	u64				len; | ||||
| 	 *	u64				pgoff; | ||||
| 	 *	char				filename[]; | ||||
| 	 * 	struct sample_id		sample_id; | ||||
| 	 * }; | ||||
| 	 */ | ||||
| 	PERF_RECORD_MMAP			= 1, | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 David S. Miller
				David S. Miller