blob: db5c53da73ced573d66176a58d8e7b73580b5ae2 [file] [log] [blame]
Arnd Bergmann6e17b172009-09-21 17:03:48 -07001#include <asm-generic/mman.h>
Al Viro564b3bf2009-11-30 17:00:51 -05002
3#define MIN_MAP_ADDR PAGE_SIZE /* minimum fixed mmap address */
4
5#define arch_mmap_check(addr, len, flags) \
6 (((flags) & MAP_FIXED && (addr) < MIN_MAP_ADDR) ? -EINVAL : 0)