diff options
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/x86/include/asm/pgtable-2level.h | 48 | ||||
| -rw-r--r-- | arch/x86/include/asm/pgtable-3level.h | 3 | ||||
| -rw-r--r-- | arch/x86/include/asm/pgtable.h | 15 | ||||
| -rw-r--r-- | arch/x86/include/asm/pgtable_types.h | 4 | 
4 files changed, 68 insertions, 2 deletions
diff --git a/arch/x86/include/asm/pgtable-2level.h b/arch/x86/include/asm/pgtable-2level.h index f2b489cf1602..3bf2dd0cf61f 100644 --- a/arch/x86/include/asm/pgtable-2level.h +++ b/arch/x86/include/asm/pgtable-2level.h @@ -55,9 +55,53 @@ static inline pmd_t native_pmdp_get_and_clear(pmd_t *xp)  #define native_pmdp_get_and_clear(xp) native_local_pmdp_get_and_clear(xp)  #endif +#ifdef CONFIG_MEM_SOFT_DIRTY + +/* + * Bits _PAGE_BIT_PRESENT, _PAGE_BIT_FILE, _PAGE_BIT_SOFT_DIRTY and + * _PAGE_BIT_PROTNONE are taken, split up the 28 bits of offset + * into this range. + */ +#define PTE_FILE_MAX_BITS	28 +#define PTE_FILE_SHIFT1		(_PAGE_BIT_PRESENT + 1) +#define PTE_FILE_SHIFT2		(_PAGE_BIT_FILE + 1) +#define PTE_FILE_SHIFT3		(_PAGE_BIT_PROTNONE + 1) +#define PTE_FILE_SHIFT4		(_PAGE_BIT_SOFT_DIRTY + 1) +#define PTE_FILE_BITS1		(PTE_FILE_SHIFT2 - PTE_FILE_SHIFT1 - 1) +#define PTE_FILE_BITS2		(PTE_FILE_SHIFT3 - PTE_FILE_SHIFT2 - 1) +#define PTE_FILE_BITS3		(PTE_FILE_SHIFT4 - PTE_FILE_SHIFT3 - 1) + +#define pte_to_pgoff(pte)						\ +	((((pte).pte_low >> (PTE_FILE_SHIFT1))				\ +	  & ((1U << PTE_FILE_BITS1) - 1)))				\ +	+ ((((pte).pte_low >> (PTE_FILE_SHIFT2))			\ +	    & ((1U << PTE_FILE_BITS2) - 1))				\ +	   << (PTE_FILE_BITS1))						\ +	+ ((((pte).pte_low >> (PTE_FILE_SHIFT3))			\ +	    & ((1U << PTE_FILE_BITS3) - 1))				\ +	   << (PTE_FILE_BITS1 + PTE_FILE_BITS2))			\ +	+ ((((pte).pte_low >> (PTE_FILE_SHIFT4)))			\ +	    << (PTE_FILE_BITS1 + PTE_FILE_BITS2 + PTE_FILE_BITS3)) + +#define pgoff_to_pte(off)						\ +	((pte_t) { .pte_low =						\ +	 ((((off)) & ((1U << PTE_FILE_BITS1) - 1)) << PTE_FILE_SHIFT1)	\ +	 + ((((off) >> PTE_FILE_BITS1)					\ +	     & ((1U << PTE_FILE_BITS2) - 1))				\ +	    << PTE_FILE_SHIFT2)						\ +	 + ((((off) >> (PTE_FILE_BITS1 + PTE_FILE_BITS2))		\ +	     & ((1U << PTE_FILE_BITS3) - 1))				\ +	    << PTE_FILE_SHIFT3)						\ +	 + ((((off) >>							\ +	      (PTE_FILE_BITS1 + PTE_FILE_BITS2 + PTE_FILE_BITS3)))	\ +	    << PTE_FILE_SHIFT4)						\ +	 + _PAGE_FILE }) + +#else /* CONFIG_MEM_SOFT_DIRTY */ +  /*   * Bits _PAGE_BIT_PRESENT, _PAGE_BIT_FILE and _PAGE_BIT_PROTNONE are taken, - * split up the 29 bits of offset into this range: + * split up the 29 bits of offset into this range.   */  #define PTE_FILE_MAX_BITS	29  #define PTE_FILE_SHIFT1		(_PAGE_BIT_PRESENT + 1) @@ -88,6 +132,8 @@ static inline pmd_t native_pmdp_get_and_clear(pmd_t *xp)  	    << PTE_FILE_SHIFT3)						\  	 + _PAGE_FILE }) +#endif /* CONFIG_MEM_SOFT_DIRTY */ +  /* Encode and de-code a swap entry */  #if _PAGE_BIT_FILE < _PAGE_BIT_PROTNONE  #define SWP_TYPE_BITS (_PAGE_BIT_FILE - _PAGE_BIT_PRESENT - 1) diff --git a/arch/x86/include/asm/pgtable-3level.h b/arch/x86/include/asm/pgtable-3level.h index 4cc9f2b7cdc3..81bb91b49a88 100644 --- a/arch/x86/include/asm/pgtable-3level.h +++ b/arch/x86/include/asm/pgtable-3level.h @@ -179,6 +179,9 @@ static inline pmd_t native_pmdp_get_and_clear(pmd_t *pmdp)  /*   * Bits 0, 6 and 7 are taken in the low part of the pte,   * put the 32 bits of offset into the high part. + * + * For soft-dirty tracking 11 bit is taken from + * the low part of pte as well.   */  #define pte_to_pgoff(pte) ((pte).pte_high)  #define pgoff_to_pte(off)						\ diff --git a/arch/x86/include/asm/pgtable.h b/arch/x86/include/asm/pgtable.h index bd0518a7f197..1c00631164c2 100644 --- a/arch/x86/include/asm/pgtable.h +++ b/arch/x86/include/asm/pgtable.h @@ -329,6 +329,21 @@ static inline pte_t pte_swp_clear_soft_dirty(pte_t pte)  	return pte_clear_flags(pte, _PAGE_SWP_SOFT_DIRTY);  } +static inline pte_t pte_file_clear_soft_dirty(pte_t pte) +{ +	return pte_clear_flags(pte, _PAGE_SOFT_DIRTY); +} + +static inline pte_t pte_file_mksoft_dirty(pte_t pte) +{ +	return pte_set_flags(pte, _PAGE_SOFT_DIRTY); +} + +static inline int pte_file_soft_dirty(pte_t pte) +{ +	return pte_flags(pte) & _PAGE_SOFT_DIRTY; +} +  /*   * Mask out unsupported bits in a present pgprot.  Non-present pgprots   * can use those bits for other purposes, so leave them be. diff --git a/arch/x86/include/asm/pgtable_types.h b/arch/x86/include/asm/pgtable_types.h index 5e8442f178f9..f4843e031131 100644 --- a/arch/x86/include/asm/pgtable_types.h +++ b/arch/x86/include/asm/pgtable_types.h @@ -61,8 +61,10 @@   * they do not conflict with each other.   */ +#define _PAGE_BIT_SOFT_DIRTY	_PAGE_BIT_HIDDEN +  #ifdef CONFIG_MEM_SOFT_DIRTY -#define _PAGE_SOFT_DIRTY	(_AT(pteval_t, 1) << _PAGE_BIT_HIDDEN) +#define _PAGE_SOFT_DIRTY	(_AT(pteval_t, 1) << _PAGE_BIT_SOFT_DIRTY)  #else  #define _PAGE_SOFT_DIRTY	(_AT(pteval_t, 0))  #endif  |