From: Yulei Zhang <[email protected]>
pud_special() will check both _PAGE_SPECIAL and _PAGE_DMEM bit
as pmd_special() does.
Signed-off-by: Chen Zhuo <[email protected]>
Signed-off-by: Yulei Zhang <[email protected]>
---
arch/x86/include/asm/pgtable.h | 13 +++++++++++++
include/linux/pgtable.h | 10 ++++++++++
2 files changed, 23 insertions(+)
diff --git a/arch/x86/include/asm/pgtable.h b/arch/x86/include/asm/pgtable.h
index e29601cad384..313fb4fd6645 100644
--- a/arch/x86/include/asm/pgtable.h
+++ b/arch/x86/include/asm/pgtable.h
@@ -282,6 +282,12 @@ static inline int pmd_special(pmd_t pmd)
return (pmd_val(pmd) & (_PAGE_SPECIAL | _PAGE_DMEM)) ==
(_PAGE_SPECIAL | _PAGE_DMEM);
}
+
+static inline int pud_special(pud_t pud)
+{
+ return (pud_val(pud) & (_PAGE_SPECIAL | _PAGE_DMEM)) ==
+ (_PAGE_SPECIAL | _PAGE_DMEM);
+}
#endif
#ifdef CONFIG_ARCH_HAS_PTE_DEVMAP
@@ -517,6 +523,13 @@ static inline pud_t pud_mkdirty(pud_t pud)
return pud_set_flags(pud, _PAGE_DIRTY | _PAGE_SOFT_DIRTY);
}
+#ifdef CONFIG_ARCH_HAS_PTE_DMEM
+static inline pud_t pud_mkdmem(pud_t pud)
+{
+ return pud_set_flags(pud, _PAGE_SPECIAL | _PAGE_DMEM);
+}
+#endif
+
static inline pud_t pud_mkdevmap(pud_t pud)
{
return pud_set_flags(pud, _PAGE_DEVMAP);
diff --git a/include/linux/pgtable.h b/include/linux/pgtable.h
index 1fe8546c0a7c..50f27d61f5cd 100644
--- a/include/linux/pgtable.h
+++ b/include/linux/pgtable.h
@@ -1139,6 +1139,16 @@ static inline int pmd_special(pmd_t pmd)
{
return 0;
}
+
+static inline pud_t pud_mkdmem(pud_t pud)
+{
+ return pud;
+}
+
+static inline int pud_special(pud_t pud)
+{
+ return 0;
+}
#endif
#ifndef pmd_read_atomic
--
2.28.0