diff options
Diffstat (limited to 'include/asm-blackfin/mmu_context.h')
-rw-r--r-- | include/asm-blackfin/mmu_context.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/asm-blackfin/mmu_context.h b/include/asm-blackfin/mmu_context.h index f55ec3c23a92..8529552a981f 100644 --- a/include/asm-blackfin/mmu_context.h +++ b/include/asm-blackfin/mmu_context.h | |||
@@ -173,8 +173,10 @@ static inline void protect_page(struct mm_struct *mm, unsigned long addr, | |||
173 | 173 | ||
174 | static inline void update_protections(struct mm_struct *mm) | 174 | static inline void update_protections(struct mm_struct *mm) |
175 | { | 175 | { |
176 | flush_switched_cplbs(); | 176 | if (mm->context.page_rwx_mask == current_rwx_mask) { |
177 | set_mask_dcplbs(mm->context.page_rwx_mask); | 177 | flush_switched_cplbs(); |
178 | set_mask_dcplbs(mm->context.page_rwx_mask); | ||
179 | } | ||
178 | } | 180 | } |
179 | #endif | 181 | #endif |
180 | 182 | ||