Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 11 Mar 2004 19:08:33 -0800 (PST)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 48754 for review
Message-ID:  <200403120308.i2C38XPK019567@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=48754

Change 48754 by jmallett@jmallett_oingo on 2004/03/11 19:07:56

	Don't cache.

Affected files ...

.. //depot/projects/mips/sys/mips/mips/tlb.c#22 edit

Differences ...

==== //depot/projects/mips/sys/mips/mips/tlb.c#22 (text+ko) ====

@@ -117,10 +117,7 @@
 		       pmap, (u_long)va, (u_long)pa, (u_long)bits);
 	*pte &= PG_G;
 	*pte |= MIPS_PA_TO_PFN(pa) | bits;
-	if (0)
-		*pte |= PG_C(3);
-	else
-		*pte |= PG_C_UNCACHED;
+	*pte |= PG_C_UNCACHED;
 }
 
 void



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200403120308.i2C38XPK019567>