kcmp.h appears to be part of the API, it's documented in kcmp(2), and the selftests/kcmp code uses it. So move it to uapi so it's actually exported. Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Acked-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			229 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			229 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _UAPI_LINUX_KCMP_H
 | 
						|
#define _UAPI_LINUX_KCMP_H
 | 
						|
 | 
						|
/* Comparison type */
 | 
						|
enum kcmp_type {
 | 
						|
	KCMP_FILE,
 | 
						|
	KCMP_VM,
 | 
						|
	KCMP_FILES,
 | 
						|
	KCMP_FS,
 | 
						|
	KCMP_SIGHAND,
 | 
						|
	KCMP_IO,
 | 
						|
	KCMP_SYSVSEM,
 | 
						|
 | 
						|
	KCMP_TYPES,
 | 
						|
};
 | 
						|
 | 
						|
#endif /* _UAPI_LINUX_KCMP_H */
 |