Release 4.15 arch/mn10300/include/uapi/asm/mman.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
#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)
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Al Viro | 17 | 80.95% | 1 | 25.00% |
David Howells | 2 | 9.52% | 1 | 25.00% |
Greg Kroah-Hartman | 1 | 4.76% | 1 | 25.00% |
Arnd Bergmann | 1 | 4.76% | 1 | 25.00% |
Total | 21 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.