mm/core: Do not enforce PKEY permissions on remote mm access
[cascardo/linux.git] / arch / s390 / include / asm / mmu_context.h
index fb1b93e..8906600 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 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 */