mirror of
				https://git.proxmox.com/git/mirror_iproute2
				synced 2025-11-04 08:25:08 +00:00 
			
		
		
		
	The kernel header sanitizisation process now puts SPDK GPLv2 license comment on files. Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
		
			
				
	
	
		
			20 lines
		
	
	
		
			351 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			351 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
 | 
						|
#ifndef __UAPI_IFE_H
 | 
						|
#define __UAPI_IFE_H
 | 
						|
 | 
						|
#define IFE_METAHDRLEN 2
 | 
						|
 | 
						|
enum {
 | 
						|
	IFE_META_SKBMARK = 1,
 | 
						|
	IFE_META_HASHID,
 | 
						|
	IFE_META_PRIO,
 | 
						|
	IFE_META_QMAP,
 | 
						|
	IFE_META_TCINDEX,
 | 
						|
	__IFE_META_MAX
 | 
						|
};
 | 
						|
 | 
						|
/*Can be overridden at runtime by module option*/
 | 
						|
#define IFE_META_MAX (__IFE_META_MAX - 1)
 | 
						|
 | 
						|
#endif
 |