diff options
| -rw-r--r-- | arch/powerpc/include/asm/pgtable-4k.h | 2 | ||||
| -rw-r--r-- | arch/powerpc/include/asm/pgtable-64k.h | 2 | ||||
| -rw-r--r-- | arch/powerpc/include/asm/pgtable-ppc32.h | 3 | 
3 files changed, 4 insertions, 3 deletions
| diff --git a/arch/powerpc/include/asm/pgtable-4k.h b/arch/powerpc/include/asm/pgtable-4k.h index 6b18ba9d2d85..1dbca4e7de67 100644 --- a/arch/powerpc/include/asm/pgtable-4k.h +++ b/arch/powerpc/include/asm/pgtable-4k.h @@ -60,7 +60,7 @@  /* It should be preserving the high 48 bits and then specifically */  /* preserving _PAGE_SECONDARY | _PAGE_GROUP_IX */  #define _PAGE_CHG_MASK	(PAGE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY | \ -                         _PAGE_HPTEFLAGS) +                         _PAGE_HPTEFLAGS | _PAGE_SPECIAL)  /* Bits to mask out from a PMD to get to the PTE page */  #define PMD_MASKED_BITS		0 diff --git a/arch/powerpc/include/asm/pgtable-64k.h b/arch/powerpc/include/asm/pgtable-64k.h index 07b0d8f09cb6..7389003349a6 100644 --- a/arch/powerpc/include/asm/pgtable-64k.h +++ b/arch/powerpc/include/asm/pgtable-64k.h @@ -114,7 +114,7 @@ static inline struct subpage_prot_table *pgd_subpage_prot(pgd_t *pgd)   * pgprot changes   */  #define _PAGE_CHG_MASK	(PTE_RPN_MASK | _PAGE_HPTEFLAGS | _PAGE_DIRTY | \ -                         _PAGE_ACCESSED) +                         _PAGE_ACCESSED | _PAGE_SPECIAL)  /* Bits to mask out from a PMD to get to the PTE page */  #define PMD_MASKED_BITS		0x1ff diff --git a/arch/powerpc/include/asm/pgtable-ppc32.h b/arch/powerpc/include/asm/pgtable-ppc32.h index f69a4d977729..820b5f0a35ce 100644 --- a/arch/powerpc/include/asm/pgtable-ppc32.h +++ b/arch/powerpc/include/asm/pgtable-ppc32.h @@ -429,7 +429,8 @@ extern int icache_44x_need_flush;  #define PMD_PAGE_SIZE(pmd)	bad_call_to_PMD_PAGE_SIZE()  #endif -#define _PAGE_CHG_MASK	(PAGE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY) +#define _PAGE_CHG_MASK	(PAGE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY | \ +			 _PAGE_SPECIAL)  #define PAGE_PROT_BITS	(_PAGE_GUARDED | _PAGE_COHERENT | _PAGE_NO_CACHE | \ | 
