mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
9807f75955
Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Michael Kerrisk <mtk.manpages@gmail.com> Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Acked-by: Dave Jones <davej@redhat.com>
16 lines
361 B
C
16 lines
361 B
C
/*
|
|
* 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);
|
|
#define arch_mmap_check(addr,len,flags) s390_mmap_check(addr,len)
|
|
#endif
|
|
#endif /* __S390_MMAN_H__ */
|