fs/btrfs/ioctl.c: In function ‘btrfs_ioctl_file_extent_same’: fs/btrfs/ioctl.c:2802: error: implicit declaration of function ‘__put_user_unaligned’ Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			300 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			300 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
#ifdef __uClinux__
 | 
						|
#include <asm/uaccess_no.h>
 | 
						|
#else
 | 
						|
#include <asm/uaccess_mm.h>
 | 
						|
#endif
 | 
						|
 | 
						|
#ifdef CONFIG_CPU_HAS_NO_UNALIGNED
 | 
						|
#include <asm-generic/uaccess-unaligned.h>
 | 
						|
#else
 | 
						|
#define __get_user_unaligned(x, ptr)	__get_user((x), (ptr))
 | 
						|
#define __put_user_unaligned(x, ptr)	__put_user((x), (ptr))
 | 
						|
#endif
 |