[PATCH] arm64: Add support for hardware updates of the access and dirty pte bits

Julien Grall julien.grall at citrix.com
Fri Sep 11 08:43:47 PDT 2015


Hi Will,

On 10/09/15 16:38, Will Deacon wrote:
> Weird. That doesn't leave a lot of code. Two other things you could try
> are:
> 
>   (1) Put PTE_WRITE back to bit 57

This change doesn't help.

>   (2) Remove the pte_hw_dirty check/set in pte_modify

This one too, if I only drop the check pte_hw_dirty in pte_modify.

But if I disable completely pte_hw_dirty (i.e always return 0 [1]),
I'm able to use without any issue the userspace.

Which means that the problem seems to come from the defition of pte_dirty:

#define pte_dirty(pte)         (pte_sw_dirty(pte) || pte_hw_dirty(pte))

Regards,

[1]
diff --git a/arch/arm64/include/asm/pgtable.h b/arch/arm64/include/asm/pgtable.h
index 6900b2d9..804ec87 100644
--- a/arch/arm64/include/asm/pgtable.h
+++ b/arch/arm64/include/asm/pgtable.h
@@ -145,7 +145,8 @@ extern struct page *empty_zero_page;
 #define pte_write(pte)         (!!(pte_val(pte) & PTE_WRITE))
 #define pte_exec(pte)          (!(pte_val(pte) & PTE_UXN))
 
-#ifdef CONFIG_ARM64_HW_AFDBM
+//#ifdef CONFIG_ARM64_HW_AFDBM
+#if 0
 #define pte_hw_dirty(pte)      (!(pte_val(pte) & PTE_RDONLY))
 #else
 #define pte_hw_dirty(pte)      (0)


-- 
Julien Grall



More information about the linux-arm-kernel mailing list