diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-17 18:57:17 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-17 18:57:17 +0200 |
commit | 4dc8ab86e0724642e2f778116de64f4b832d7d94 (patch) | |
tree | ba3e1327823ac94dc5d33cb76d8704ea0ad915d7 /arch/m32r/include/asm/mman.h | |
parent | Merge branch 'x86-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kern... (diff) | |
parent | m32r: move include/asm-m32r/* to arch/m32r/include/asm/ (diff) | |
download | linux-4dc8ab86e0724642e2f778116de64f4b832d7d94.tar.xz linux-4dc8ab86e0724642e2f778116de64f4b832d7d94.zip |
Merge branch 'for-linus' of git://www.linux-m32r.org/git/takata/linux-2.6_dev
* 'for-linus' of git://www.linux-m32r.org/git/takata/linux-2.6_dev:
m32r: move include/asm-m32r/* to arch/m32r/include/asm/
m32r: move include/asm-m32r headers to arch/m32r/include/asm
Diffstat (limited to 'arch/m32r/include/asm/mman.h')
-rw-r--r-- | arch/m32r/include/asm/mman.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/m32r/include/asm/mman.h b/arch/m32r/include/asm/mman.h new file mode 100644 index 000000000000..516a8973b130 --- /dev/null +++ b/arch/m32r/include/asm/mman.h @@ -0,0 +1,17 @@ +#ifndef __M32R_MMAN_H__ +#define __M32R_MMAN_H__ + +#include <asm-generic/mman.h> + +#define MAP_GROWSDOWN 0x0100 /* stack-like segment */ +#define MAP_DENYWRITE 0x0800 /* ETXTBSY */ +#define MAP_EXECUTABLE 0x1000 /* mark it as an executable */ +#define MAP_LOCKED 0x2000 /* pages are locked */ +#define MAP_NORESERVE 0x4000 /* don't check for reservations */ +#define MAP_POPULATE 0x8000 /* populate (prefault) pagetables */ +#define MAP_NONBLOCK 0x10000 /* do not block on IO */ + +#define MCL_CURRENT 1 /* lock all current mappings */ +#define MCL_FUTURE 2 /* lock all future mappings */ + +#endif /* __M32R_MMAN_H__ */ |