A number of architectures have identical asm/mman.h files so they can all be merged by using the new generic file. The remaining asm/mman.h files are substantially different from each other. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Cc: <linux-arch@vger.kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			486 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			486 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _ASM_IA64_MMAN_H
 | 
						|
#define _ASM_IA64_MMAN_H
 | 
						|
 | 
						|
/*
 | 
						|
 * Based on <asm-i386/mman.h>.
 | 
						|
 *
 | 
						|
 * Modified 1998-2000, 2002
 | 
						|
 *	David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co
 | 
						|
 */
 | 
						|
 | 
						|
#include <asm-generic/mman.h>
 | 
						|
 | 
						|
#define MAP_GROWSUP	0x0200		/* register stack-like segment */
 | 
						|
 | 
						|
#ifdef __KERNEL__
 | 
						|
#ifndef __ASSEMBLY__
 | 
						|
#define arch_mmap_check	ia64_mmap_check
 | 
						|
int ia64_mmap_check(unsigned long addr, unsigned long len,
 | 
						|
		unsigned long flags);
 | 
						|
#endif
 | 
						|
#endif
 | 
						|
 | 
						|
#endif /* _ASM_IA64_MMAN_H */
 |