On Wed, Mar 02, 2011 at 06:59:32PM +0100, Peter Zijlstra wrote: > Might want to optimize the tlb_flush() function to do a full mm flush > when the range is 'large', IA64 does this too. > > Cc: Russell King <rmk@xxxxxxxxxxxxxxxx> > Signed-off-by: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx> The current version in tlb-unify blows up due to a missing tlb_add_flush() definition. I can see in this thread tlb_track_range() was factored in, but the __pte_free_tlb()/__pmd_free_tlb() semantics have changed since then. Adding a dumb tlb_add_flush() that wraps in to tlb_track_range() seems to do the right thing, but someone more familiar with LPAE and ARM's double PMDs will have to figure out whether the tlb_track_range() in asm-generic/tlb.h's pmd/pte_free_tlb() are sufficient to remove the tlb_add_flush() calls or not. Here's the dumb build fix for now though: Signed-off-by: Paul Mundt <lethal@xxxxxxxxxxxx> --- diff --git a/arch/arm/include/asm/tlb.h b/arch/arm/include/asm/tlb.h index 37dbce9..1de4b21 100644 --- a/arch/arm/include/asm/tlb.h +++ b/arch/arm/include/asm/tlb.h @@ -38,6 +38,11 @@ __pmd_free_tlb(struct mmu_gather *tlb, pmd_t *pmdp, unsigned long addr); #include <asm-generic/tlb.h> +static inline void tlb_add_flush(struct mmu_gather *tlb, unsigned long addr) +{ + tlb_track_range(tlb, addr, addr + PAGE_SIZE); +} + static inline void __pte_free_tlb(struct mmu_gather *tlb, pgtable_t pte, unsigned long addr) { -- To unsubscribe from this list: send the line "unsubscribe linux-arch" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html