diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2019-02-08 09:02:55 +0300 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2019-02-18 19:49:30 +0300 |
commit | 746c9398f5ac2b3f5730da4ed09e99ef4bb50b4a (patch) | |
tree | e24ae55f3269f22672b041ad1f83a5b2320305ba /arch/parisc/include/uapi/asm | |
parent | 852661a8691fd1f974b61eaa317d2620198f7c76 (diff) | |
download | linux-746c9398f5ac2b3f5730da4ed09e99ef4bb50b4a.tar.xz |
arch: move common mmap flags to linux/mman.h
Now that we have 3 mmap flags shared by all architectures,
let's move them into the common header.
This will help discourage future architectures from duplicating code.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/parisc/include/uapi/asm')
-rw-r--r-- | arch/parisc/include/uapi/asm/mman.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/parisc/include/uapi/asm/mman.h b/arch/parisc/include/uapi/asm/mman.h index 870fbf8c7088..c98162f494db 100644 --- a/arch/parisc/include/uapi/asm/mman.h +++ b/arch/parisc/include/uapi/asm/mman.h @@ -10,9 +10,7 @@ #define PROT_GROWSDOWN 0x01000000 /* mprotect flag: extend change to start of growsdown vma */ #define PROT_GROWSUP 0x02000000 /* mprotect flag: extend change to end of growsup vma */ -#define MAP_SHARED 0x01 /* Share changes */ -#define MAP_PRIVATE 0x02 /* Changes are private */ -#define MAP_SHARED_VALIDATE 0x03 /* share + validate extension flags */ +/* 0x01 - 0x03 are defined in linux/mman.h */ #define MAP_TYPE 0x2b /* Mask for type of mapping, includes bits 0x08 and 0x20 */ #define MAP_FIXED 0x04 /* Interpret addr exactly */ #define MAP_ANONYMOUS 0x10 /* don't use a file */ |