diff options
| author | Linus Torvalds <torvalds@home.osdl.org> | 2003-09-25 00:24:48 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.osdl.org> | 2003-09-25 00:24:48 -0700 |
| commit | da5018250a9be164ac98d98e1c747ef9245731f1 (patch) | |
| tree | 6592642d974eee4b376c7f002f4cc04277929482 /include | |
| parent | c1fabdadbfba0dea16ed0e922374368b7c923782 (diff) | |
| parent | 2a98ed0027e17cea4d94f1060dc7ff6ac9777bba (diff) | |
Merge http://linux-sound.bkbits.net/linux-sound
into home.osdl.org:/home/torvalds/v2.5/linux
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-alpha/mman.h | 2 | ||||
| -rw-r--r-- | include/asm-arm/mman.h | 2 | ||||
| -rw-r--r-- | include/asm-arm26/mman.h | 2 | ||||
| -rw-r--r-- | include/asm-cris/mman.h | 2 | ||||
| -rw-r--r-- | include/asm-h8300/mman.h | 2 | ||||
| -rw-r--r-- | include/asm-i386/mman.h | 4 | ||||
| -rw-r--r-- | include/asm-ia64/mman.h | 2 | ||||
| -rw-r--r-- | include/asm-m68k/mman.h | 2 | ||||
| -rw-r--r-- | include/asm-mips/mman.h | 2 | ||||
| -rw-r--r-- | include/asm-parisc/mman.h | 2 | ||||
| -rw-r--r-- | include/asm-ppc/mman.h | 2 | ||||
| -rw-r--r-- | include/asm-ppc64/mman.h | 2 | ||||
| -rw-r--r-- | include/asm-s390/mman.h | 2 | ||||
| -rw-r--r-- | include/asm-sh/mman.h | 2 | ||||
| -rw-r--r-- | include/asm-sparc/mman.h | 2 | ||||
| -rw-r--r-- | include/asm-sparc64/mman.h | 2 | ||||
| -rw-r--r-- | include/asm-v850/mman.h | 2 | ||||
| -rw-r--r-- | include/asm-x86_64/mman.h | 2 |
18 files changed, 38 insertions, 0 deletions
diff --git a/include/asm-alpha/mman.h b/include/asm-alpha/mman.h index caa92997d4fe..eb9c279045ef 100644 --- a/include/asm-alpha/mman.h +++ b/include/asm-alpha/mman.h @@ -6,6 +6,8 @@ #define PROT_EXEC 0x4 /* page can be executed */ #define PROT_SEM 0x8 /* page may be used for atomic ops */ #define PROT_NONE 0x0 /* page can not be accessed */ +#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 */ diff --git a/include/asm-arm/mman.h b/include/asm-arm/mman.h index 044a5ef62548..8e4f69c4fa5f 100644 --- a/include/asm-arm/mman.h +++ b/include/asm-arm/mman.h @@ -6,6 +6,8 @@ #define PROT_EXEC 0x4 /* page can be executed */ #define PROT_SEM 0x8 /* page may be used for atomic ops */ #define PROT_NONE 0x0 /* page can not be accessed */ +#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 */ diff --git a/include/asm-arm26/mman.h b/include/asm-arm26/mman.h index 521e2ffc0929..cc27b8240265 100644 --- a/include/asm-arm26/mman.h +++ b/include/asm-arm26/mman.h @@ -6,6 +6,8 @@ #define PROT_EXEC 0x4 /* page can be executed */ #define PROT_SEM 0x8 /* page may be used for atomic ops */ #define PROT_NONE 0x0 /* page can not be accessed */ +#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 */ diff --git a/include/asm-cris/mman.h b/include/asm-cris/mman.h index 4de58ad6efa1..8570e72b9502 100644 --- a/include/asm-cris/mman.h +++ b/include/asm-cris/mman.h @@ -8,6 +8,8 @@ #define PROT_EXEC 0x4 /* page can be executed */ #define PROT_SEM 0x8 /* page may be used for atomic ops */ #define PROT_NONE 0x0 /* page can not be accessed */ +#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 */ diff --git a/include/asm-h8300/mman.h b/include/asm-h8300/mman.h index 5c3fc5898bcc..abe08856c84f 100644 --- a/include/asm-h8300/mman.h +++ b/include/asm-h8300/mman.h @@ -5,6 +5,8 @@ #define PROT_WRITE 0x2 /* page can be written */ #define PROT_EXEC 0x4 /* page can be executed */ #define PROT_NONE 0x0 /* page can not be accessed */ +#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 */ diff --git a/include/asm-i386/mman.h b/include/asm-i386/mman.h index 348090b36078..6a80c93c7e5a 100644 --- a/include/asm-i386/mman.h +++ b/include/asm-i386/mman.h @@ -6,6 +6,10 @@ #define PROT_EXEC 0x4 /* page can be executed */ #define PROT_SEM 0x8 /* page may be used for atomic ops */ #define PROT_NONE 0x0 /* page can not be accessed */ +#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 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 */ diff --git a/include/asm-ia64/mman.h b/include/asm-ia64/mman.h index 698871eeff2d..6de0f91d46ae 100644 --- a/include/asm-ia64/mman.h +++ b/include/asm-ia64/mman.h @@ -11,6 +11,8 @@ #define PROT_EXEC 0x4 /* page can be executed */ #define PROT_SEM 0x8 /* page may be used for atomic ops */ #define PROT_NONE 0x0 /* page can not be accessed */ +#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 */ diff --git a/include/asm-m68k/mman.h b/include/asm-m68k/mman.h index 59c2d3c265d1..f831c4eeae6e 100644 --- a/include/asm-m68k/mman.h +++ b/include/asm-m68k/mman.h @@ -6,6 +6,8 @@ #define PROT_EXEC 0x4 /* page can be executed */ #define PROT_SEM 0x8 /* page may be used for atomic ops */ #define PROT_NONE 0x0 /* page can not be accessed */ +#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 */ diff --git a/include/asm-mips/mman.h b/include/asm-mips/mman.h index 54b7fb1cb8f3..62060957ba93 100644 --- a/include/asm-mips/mman.h +++ b/include/asm-mips/mman.h @@ -20,6 +20,8 @@ #define PROT_EXEC 0x04 /* page can be executed */ /* 0x08 reserved for PROT_EXEC_NOFLUSH */ #define PROT_SEM 0x10 /* page may be used for atomic ops */ +#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 */ /* * Flags for mmap diff --git a/include/asm-parisc/mman.h b/include/asm-parisc/mman.h index b5c3bd6ced72..e829607eb8bc 100644 --- a/include/asm-parisc/mman.h +++ b/include/asm-parisc/mman.h @@ -6,6 +6,8 @@ #define PROT_EXEC 0x4 /* page can be executed */ #define PROT_SEM 0x8 /* page may be used for atomic ops */ #define PROT_NONE 0x0 /* page can not be accessed */ +#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 */ diff --git a/include/asm-ppc/mman.h b/include/asm-ppc/mman.h index 14f8ab333442..5fd19fd4936c 100644 --- a/include/asm-ppc/mman.h +++ b/include/asm-ppc/mman.h @@ -6,6 +6,8 @@ #define PROT_EXEC 0x4 /* page can be executed */ #define PROT_SEM 0x8 /* page may be used for atomic ops */ #define PROT_NONE 0x0 /* page can not be accessed */ +#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 */ diff --git a/include/asm-ppc64/mman.h b/include/asm-ppc64/mman.h index 57c185aab25a..d4f93446a52c 100644 --- a/include/asm-ppc64/mman.h +++ b/include/asm-ppc64/mman.h @@ -13,6 +13,8 @@ #define PROT_EXEC 0x4 /* page can be executed */ #define PROT_SEM 0x8 /* page may be used for atomic ops */ #define PROT_NONE 0x0 /* page can not be accessed */ +#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 */ diff --git a/include/asm-s390/mman.h b/include/asm-s390/mman.h index b90e01396617..ea86bd12204f 100644 --- a/include/asm-s390/mman.h +++ b/include/asm-s390/mman.h @@ -14,6 +14,8 @@ #define PROT_EXEC 0x4 /* page can be executed */ #define PROT_SEM 0x8 /* page may be used for atomic ops */ #define PROT_NONE 0x0 /* page can not be accessed */ +#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 */ diff --git a/include/asm-sh/mman.h b/include/asm-sh/mman.h index 7846d31bb647..3ebab5f79db7 100644 --- a/include/asm-sh/mman.h +++ b/include/asm-sh/mman.h @@ -6,6 +6,8 @@ #define PROT_EXEC 0x4 /* page can be executed */ #define PROT_SEM 0x8 /* page may be used for atomic ops */ #define PROT_NONE 0x0 /* page can not be accessed */ +#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 */ diff --git a/include/asm-sparc/mman.h b/include/asm-sparc/mman.h index 7fc6075d358e..138eb81dd70d 100644 --- a/include/asm-sparc/mman.h +++ b/include/asm-sparc/mman.h @@ -9,6 +9,8 @@ #define PROT_EXEC 0x4 /* page can be executed */ #define PROT_SEM 0x8 /* page may be used for atomic ops */ #define PROT_NONE 0x0 /* page can not be accessed */ +#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 */ diff --git a/include/asm-sparc64/mman.h b/include/asm-sparc64/mman.h index f5980a152936..01cecf54357b 100644 --- a/include/asm-sparc64/mman.h +++ b/include/asm-sparc64/mman.h @@ -9,6 +9,8 @@ #define PROT_EXEC 0x4 /* page can be executed */ #define PROT_SEM 0x8 /* page may be used for atomic ops */ #define PROT_NONE 0x0 /* page can not be accessed */ +#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 */ diff --git a/include/asm-v850/mman.h b/include/asm-v850/mman.h index 441b8716dbf4..e2b90081b56f 100644 --- a/include/asm-v850/mman.h +++ b/include/asm-v850/mman.h @@ -5,6 +5,8 @@ #define PROT_WRITE 0x2 /* page can be written */ #define PROT_EXEC 0x4 /* page can be executed */ #define PROT_NONE 0x0 /* page can not be accessed */ +#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 */ diff --git a/include/asm-x86_64/mman.h b/include/asm-x86_64/mman.h index 41b02d502b83..78e60a4fd4ee 100644 --- a/include/asm-x86_64/mman.h +++ b/include/asm-x86_64/mman.h @@ -6,6 +6,8 @@ #define PROT_EXEC 0x4 /* page can be executed */ #define PROT_NONE 0x0 /* page can not be accessed */ #define PROT_SEM 0x8 +#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 */ |
