You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
420 B
19 lines
420 B
/*
|
|
* include/asm-s390/mman.h
|
|
*
|
|
* S390 version
|
|
*
|
|
* Derived from "include/asm-i386/mman.h"
|
|
*/
|
|
|
|
#ifndef __S390_MMAN_H__
|
|
#define __S390_MMAN_H__
|
|
|
|
#include <asm-generic/mman.h>
|
|
|
|
#if defined(__KERNEL__) && !defined(__ASSEMBLY__) && defined(CONFIG_64BIT)
|
|
int s390_mmap_check(unsigned long addr, unsigned long len);
|
|
#define arch_mmap_check(addr,len,flags) s390_mmap_check(addr,len)
|
|
#endif
|
|
|
|
#endif /* __S390_MMAN_H__ */
|
|
|