From: David S. Miller Date: Thu, 16 Feb 2006 05:01:31 +0000 (-0800) Subject: [SPARC64]: Fix flush_tsb_user() on SUN4V. X-Git-Tag: v2.6.17-rc1~1184^2~101 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=de635d833f61ce0f2ad0b3431e6a3323a1c4fed5;p=karo-tx-linux.git [SPARC64]: Fix flush_tsb_user() on SUN4V. Needs to use physical addressing just like cheetah_plus. Signed-off-by: David S. Miller --- diff --git a/arch/sparc64/mm/tsb.c b/arch/sparc64/mm/tsb.c index 975242ab88ee..3c1ff05038b1 100644 --- a/arch/sparc64/mm/tsb.c +++ b/arch/sparc64/mm/tsb.c @@ -58,7 +58,7 @@ void flush_tsb_user(struct mmu_gather *mp) ctx = CTX_HWBITS(mm->context); - if (tlb_type == cheetah_plus) + if (tlb_type == cheetah_plus || tlb_type == hypervisor) base = __pa(tsb); else base = (unsigned long) tsb;