repo.or.cz
/
linux-2.6
/
linux-2.6-openrd.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'master' of git://git2.kernel.org/pub/scm/linux/kernel/git/torvalds...
[linux-2.6/linux-2.6-openrd.git]
/
arch
/
mn10300
/
include
/
asm
/
mman.h
blob
db5c53da73ced573d66176a58d8e7b73580b5ae2
1
#include <asm-generic/mman.h>
2
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)