From: Michal Simek Date: Mon, 22 Mar 2010 13:54:35 +0000 (+0100) Subject: microblaze: Fix TLB macros X-Git-Tag: v2.6.34-rc4~89^2~7 X-Git-Url: http://bbs.cooldavid.org/git/?a=commitdiff_plain;h=e84452dd9ff517bd3028f6444d000727cd39e783;p=net-next-2.6.git microblaze: Fix TLB macros To be able to do trace TLB operations. Signed-off-by: Michal Simek --- diff --git a/arch/microblaze/include/asm/tlbflush.h b/arch/microblaze/include/asm/tlbflush.h index bcb8b41d55a..2e1353c2d18 100644 --- a/arch/microblaze/include/asm/tlbflush.h +++ b/arch/microblaze/include/asm/tlbflush.h @@ -24,6 +24,7 @@ extern void _tlbie(unsigned long address); extern void _tlbia(void); #define __tlbia() { preempt_disable(); _tlbia(); preempt_enable(); } +#define __tlbie(x) { _tlbie(x); } static inline void local_flush_tlb_all(void) { __tlbia(); } @@ -31,7 +32,7 @@ static inline void local_flush_tlb_mm(struct mm_struct *mm) { __tlbia(); } static inline void local_flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr) - { _tlbie(vmaddr); } + { __tlbie(vmaddr); } static inline void local_flush_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned long end) { __tlbia(); }