mm/core, x86/mm/pkeys: Differentiate instruction fetches
[cascardo/linux.git] / arch / s390 / include / asm / mmu_context.h
index fb1b93e..fa66b6d 100644 (file)
@@ -130,4 +130,16 @@ static inline void arch_bprm_mm_init(struct mm_struct *mm,
 {
 }
 
+static inline bool arch_vma_access_permitted(struct vm_area_struct *vma,
+               bool write, bool execute, bool foreign)
+{
+       /* by default, allow everything */
+       return true;
+}
+
+static inline bool arch_pte_access_permitted(pte_t pte, bool write)
+{
+       /* by default, allow everything */
+       return true;
+}
 #endif /* __S390_MMU_CONTEXT_H */