diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-03-19 01:28:40 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-03-19 01:28:40 +0000 |
commit | 8abb719409c9060a7c0676f76e9182c1e0b8ca46 (patch) | |
tree | b88cc5a6cd513a04a512b7e6215c873c90a1c5dd /include/asm-mips64/mman.h | |
parent | f01bd7aeafd95a08aafc9e3636bb26974df69d82 (diff) |
Merge with 2.3.99-pre1.
Diffstat (limited to 'include/asm-mips64/mman.h')
-rw-r--r-- | include/asm-mips64/mman.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/asm-mips64/mman.h b/include/asm-mips64/mman.h index edeaad87e..a7cba2bae 100644 --- a/include/asm-mips64/mman.h +++ b/include/asm-mips64/mman.h @@ -1,4 +1,4 @@ -/* $Id: mman.h,v 1.2 2000/02/04 23:09:08 ralf Exp $ +/* $Id: mman.h,v 1.3 2000/02/04 23:12:27 ralf Exp $ * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive @@ -55,6 +55,12 @@ #define MCL_CURRENT 1 /* lock all current mappings */ #define MCL_FUTURE 2 /* lock all future mappings */ +#define MADV_NORMAL 0x0 /* default page-in behavior */ +#define MADV_RANDOM 0x1 /* page-in minimum required */ +#define MADV_SEQUENTIAL 0x2 /* read-ahead aggressively */ +#define MADV_WILLNEED 0x3 /* pre-fault pages */ +#define MADV_DONTNEED 0x4 /* discard these pages */ + /* compatibility flags */ #define MAP_ANON MAP_ANONYMOUS #define MAP_FILE 0 |