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.
|
|
|
#include <asm-generic/mman.h>
|
|
|
|
|
|
|
|
#define MIN_MAP_ADDR PAGE_SIZE /* minimum fixed mmap address */
|
|
|
|
|
|
|
|
#define arch_mmap_check(addr, len, flags) \
|
|
|
|
(((flags) & MAP_FIXED && (addr) < MIN_MAP_ADDR) ? -EINVAL : 0)
|