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.
15 lines
392 B
15 lines
392 B
/*
|
|
* S390 version
|
|
*
|
|
* Derived from "include/asm-i386/mman.h"
|
|
*/
|
|
#ifndef __S390_MMAN_H__
|
|
#define __S390_MMAN_H__
|
|
|
|
#include <uapi/asm/mman.h>
|
|
|
|
#if !defined(__ASSEMBLY__) && defined(CONFIG_64BIT)
|
|
int s390_mmap_check(unsigned long addr, unsigned long len, unsigned long flags);
|
|
#define arch_mmap_check(addr, len, flags) s390_mmap_check(addr, len, flags)
|
|
#endif
|
|
#endif /* __S390_MMAN_H__ */
|
|
|