Commit 25e6bed8 authored by David Mosberger's avatar David Mosberger

ia64: Fix _PAGE_CHG_MASK so PROT_NONE works again. Caught by Linus.

parent 1afa1a91
...@@ -63,8 +63,8 @@ ...@@ -63,8 +63,8 @@
#define _PAGE_FILE (1 << 1) /* see swap & file pte remarks below */ #define _PAGE_FILE (1 << 1) /* see swap & file pte remarks below */
#define _PFN_MASK _PAGE_PPN_MASK #define _PFN_MASK _PAGE_PPN_MASK
/* Mask of bits which may be changed by pte_modify(): */ /* Mask of bits which may be changed by pte_modify(); the odd bits are there for _PAGE_PROTNONE */
#define _PAGE_CHG_MASK _PAGE_AR_MASK #define _PAGE_CHG_MASK (_PAGE_P | _PAGE_PROTNONE | _PAGE_PL_MASK | _PAGE_AR_MASK | _PAGE_ED)
#define _PAGE_SIZE_4K 12 #define _PAGE_SIZE_4K 12
#define _PAGE_SIZE_8K 13 #define _PAGE_SIZE_8K 13
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment