18c2ecf20Sopenharmony_ci#ifndef _ASM_GENERIC_PGTABLE_UFFD_H 28c2ecf20Sopenharmony_ci#define _ASM_GENERIC_PGTABLE_UFFD_H 38c2ecf20Sopenharmony_ci 48c2ecf20Sopenharmony_ci#ifndef CONFIG_HAVE_ARCH_USERFAULTFD_WP 58c2ecf20Sopenharmony_cistatic __always_inline int pte_uffd_wp(pte_t pte) 68c2ecf20Sopenharmony_ci{ 78c2ecf20Sopenharmony_ci return 0; 88c2ecf20Sopenharmony_ci} 98c2ecf20Sopenharmony_ci 108c2ecf20Sopenharmony_cistatic __always_inline int pmd_uffd_wp(pmd_t pmd) 118c2ecf20Sopenharmony_ci{ 128c2ecf20Sopenharmony_ci return 0; 138c2ecf20Sopenharmony_ci} 148c2ecf20Sopenharmony_ci 158c2ecf20Sopenharmony_cistatic __always_inline pte_t pte_mkuffd_wp(pte_t pte) 168c2ecf20Sopenharmony_ci{ 178c2ecf20Sopenharmony_ci return pte; 188c2ecf20Sopenharmony_ci} 198c2ecf20Sopenharmony_ci 208c2ecf20Sopenharmony_cistatic __always_inline pmd_t pmd_mkuffd_wp(pmd_t pmd) 218c2ecf20Sopenharmony_ci{ 228c2ecf20Sopenharmony_ci return pmd; 238c2ecf20Sopenharmony_ci} 248c2ecf20Sopenharmony_ci 258c2ecf20Sopenharmony_cistatic __always_inline pte_t pte_clear_uffd_wp(pte_t pte) 268c2ecf20Sopenharmony_ci{ 278c2ecf20Sopenharmony_ci return pte; 288c2ecf20Sopenharmony_ci} 298c2ecf20Sopenharmony_ci 308c2ecf20Sopenharmony_cistatic __always_inline pmd_t pmd_clear_uffd_wp(pmd_t pmd) 318c2ecf20Sopenharmony_ci{ 328c2ecf20Sopenharmony_ci return pmd; 338c2ecf20Sopenharmony_ci} 348c2ecf20Sopenharmony_ci 358c2ecf20Sopenharmony_cistatic __always_inline pte_t pte_swp_mkuffd_wp(pte_t pte) 368c2ecf20Sopenharmony_ci{ 378c2ecf20Sopenharmony_ci return pte; 388c2ecf20Sopenharmony_ci} 398c2ecf20Sopenharmony_ci 408c2ecf20Sopenharmony_cistatic __always_inline int pte_swp_uffd_wp(pte_t pte) 418c2ecf20Sopenharmony_ci{ 428c2ecf20Sopenharmony_ci return 0; 438c2ecf20Sopenharmony_ci} 448c2ecf20Sopenharmony_ci 458c2ecf20Sopenharmony_cistatic __always_inline pte_t pte_swp_clear_uffd_wp(pte_t pte) 468c2ecf20Sopenharmony_ci{ 478c2ecf20Sopenharmony_ci return pte; 488c2ecf20Sopenharmony_ci} 498c2ecf20Sopenharmony_ci 508c2ecf20Sopenharmony_cistatic inline pmd_t pmd_swp_mkuffd_wp(pmd_t pmd) 518c2ecf20Sopenharmony_ci{ 528c2ecf20Sopenharmony_ci return pmd; 538c2ecf20Sopenharmony_ci} 548c2ecf20Sopenharmony_ci 558c2ecf20Sopenharmony_cistatic inline int pmd_swp_uffd_wp(pmd_t pmd) 568c2ecf20Sopenharmony_ci{ 578c2ecf20Sopenharmony_ci return 0; 588c2ecf20Sopenharmony_ci} 598c2ecf20Sopenharmony_ci 608c2ecf20Sopenharmony_cistatic inline pmd_t pmd_swp_clear_uffd_wp(pmd_t pmd) 618c2ecf20Sopenharmony_ci{ 628c2ecf20Sopenharmony_ci return pmd; 638c2ecf20Sopenharmony_ci} 648c2ecf20Sopenharmony_ci#endif /* CONFIG_HAVE_ARCH_USERFAULTFD_WP */ 658c2ecf20Sopenharmony_ci 668c2ecf20Sopenharmony_ci#endif /* _ASM_GENERIC_PGTABLE_UFFD_H */ 67