diff options
author | Helge Deller <deller@gmx.de> | 2017-08-04 21:07:41 +0300 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2017-08-22 17:34:33 +0300 |
commit | 24587380f61d20e36662fbd4d938431e33e3eda2 (patch) | |
tree | cea71f1c3f4fb40c49d4e54831bebac9b8f38463 /arch/parisc/include/uapi | |
parent | 14ccee78fc82f5512908f4424f541549a5705b89 (diff) | |
download | linux-24587380f61d20e36662fbd4d938431e33e3eda2.tar.xz |
parisc: Add MADV_HWPOISON and MADV_SOFT_OFFLINE
Add the missing MADV_HWPOISON (100) and MADV_SOFT_OFFLINE (101) defines which
are needed for an upcoming patch which adds page-deallocation for parisc.
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch/parisc/include/uapi')
-rw-r--r-- | arch/parisc/include/uapi/asm/mman.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/parisc/include/uapi/asm/mman.h b/arch/parisc/include/uapi/asm/mman.h index 5979745815a5..2e7b8c2431a3 100644 --- a/arch/parisc/include/uapi/asm/mman.h +++ b/arch/parisc/include/uapi/asm/mman.h @@ -60,6 +60,9 @@ overrides the coredump filter bits */ #define MADV_DODUMP 70 /* Clear the MADV_NODUMP flag */ +#define MADV_HWPOISON 100 /* poison a page for testing */ +#define MADV_SOFT_OFFLINE 101 /* soft offline page for testing */ + /* compatibility flags */ #define MAP_FILE 0 #define MAP_VARIABLE 0 |