Linux-libre 3.6.3-gnu1
[librecmc/linux-libre.git] / arch / s390 / include / asm / mman.h
1 /*
2  *  S390 version
3  *
4  *  Derived from "include/asm-i386/mman.h"
5  */
6
7 #ifndef __S390_MMAN_H__
8 #define __S390_MMAN_H__
9
10 #include <asm-generic/mman.h>
11
12 #if defined(__KERNEL__)
13 #if !defined(__ASSEMBLY__) && defined(CONFIG_64BIT)
14 int s390_mmap_check(unsigned long addr, unsigned long len);
15 #define arch_mmap_check(addr,len,flags) s390_mmap_check(addr,len)
16 #endif
17 #endif
18
19 #endif /* __S390_MMAN_H__ */