diff mbox

sparc64: Define pte_accessible()

Message ID 20121219.154334.335294150358192263.davem@davemloft.net
State Accepted
Delegated to: David Miller
Headers show

Commit Message

David Miller Dec. 19, 2012, 11:43 p.m. UTC
We can elide flush_tlb_*() calls when _PAGE_VALID is clear
as that is the test used to determine whether or not to
queue up a TLB flush in set_pte_at().

Signed-off-by: David S. Miller <davem@davemloft.net>
---
 arch/sparc/include/asm/pgtable_64.h | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

Comments

Sam Ravnborg Dec. 20, 2012, 6:34 a.m. UTC | #1
On Wed, Dec 19, 2012 at 03:43:34PM -0800, David Miller wrote:
> 
> We can elide flush_tlb_*() calls when _PAGE_VALID is clear
> as that is the test used to determine whether or not to
> queue up a TLB flush in set_pte_at().

I was a bit puzzeled about this change until I noticed this is an override.
And we use pte_accessible in generic code.

> 
> Signed-off-by: David S. Miller <davem@davemloft.net>
> ---
>  arch/sparc/include/asm/pgtable_64.h | 8 +++++++-
>  1 file changed, 7 insertions(+), 1 deletion(-)
> 
> diff --git a/arch/sparc/include/asm/pgtable_64.h b/arch/sparc/include/asm/pgtable_64.h
> index 95515f1..7870be0 100644
> --- a/arch/sparc/include/asm/pgtable_64.h
> +++ b/arch/sparc/include/asm/pgtable_64.h
> @@ -617,6 +617,12 @@ static inline unsigned long pte_present(pte_t pte)
>  	return val;
>  }
>  
> +#define pte_accessible pte_accessible
> +static inline unsigned long pte_accessible(pte_t a)
> +{
> +	return pte_val(a) & _PAGE_VALID;
> +}
> +
>  static inline unsigned long pte_special(pte_t pte)
>  {
>  	return pte_val(pte) & _PAGE_SPECIAL;
> @@ -802,7 +808,7 @@ static inline void __set_pte_at(struct mm_struct *mm, unsigned long addr,
>  	 * SUN4V NOTE: _PAGE_VALID is the same value in both the SUN4U
>  	 *             and SUN4V pte layout, so this inline test is fine.
>  	 */
The comment above belongs to the pte_accessible function now.

> -	if (likely(mm != &init_mm) && (pte_val(orig) & _PAGE_VALID))
> +	if (likely(mm != &init_mm) && pte_accessible(orig))
>  		tlb_batch_add(mm, addr, ptep, orig, fullmm);
>  }

	Sam
--
To unsubscribe from this list: send the line "unsubscribe sparclinux" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/arch/sparc/include/asm/pgtable_64.h b/arch/sparc/include/asm/pgtable_64.h
index 95515f1..7870be0 100644
--- a/arch/sparc/include/asm/pgtable_64.h
+++ b/arch/sparc/include/asm/pgtable_64.h
@@ -617,6 +617,12 @@  static inline unsigned long pte_present(pte_t pte)
 	return val;
 }
 
+#define pte_accessible pte_accessible
+static inline unsigned long pte_accessible(pte_t a)
+{
+	return pte_val(a) & _PAGE_VALID;
+}
+
 static inline unsigned long pte_special(pte_t pte)
 {
 	return pte_val(pte) & _PAGE_SPECIAL;
@@ -802,7 +808,7 @@  static inline void __set_pte_at(struct mm_struct *mm, unsigned long addr,
 	 * SUN4V NOTE: _PAGE_VALID is the same value in both the SUN4U
 	 *             and SUN4V pte layout, so this inline test is fine.
 	 */
-	if (likely(mm != &init_mm) && (pte_val(orig) & _PAGE_VALID))
+	if (likely(mm != &init_mm) && pte_accessible(orig))
 		tlb_batch_add(mm, addr, ptep, orig, fullmm);
 }