mman.h 428 B

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