diff options
| author | Geert Uytterhoeven <geert@linux-m68k.org> | 2002-12-27 19:14:39 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-12-27 19:14:39 -0800 |
| commit | 114a3c1b0f508ea0cfdb014f9b569ff615dfc0dd (patch) | |
| tree | 743c20e60ab7b45cdfc60c7d7bf28865b3c97fdb | |
| parent | 3cbc9130132e65dbfbe53d546bfe347171291fed (diff) | |
[PATCH] M68k MAP_* definitions
M68k mman.h updates: add MAP_POPULATE and MAP_NONBLOCK
| -rw-r--r-- | include/asm-m68k/mman.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asm-m68k/mman.h b/include/asm-m68k/mman.h index a171fb7c7acf..59c2d3c265d1 100644 --- a/include/asm-m68k/mman.h +++ b/include/asm-m68k/mman.h @@ -18,6 +18,8 @@ #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 MS_ASYNC 1 /* sync memory asynchronously */ #define MS_INVALIDATE 2 /* invalidate the caches */ |
