mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-10-29 15:28:50 +01:00
6 lines
204 B
C
6 lines
204 B
C
#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)
|