PERFORCE change 41961 for review

Juli Mallett jmallett at FreeBSD.org
Mon Nov 10 21:18:35 PST 2003


http://perforce.freebsd.org/chv.cgi?CH=41961

Change 41961 by jmallett at jmallett_dalek on 2003/11/10 21:18:21

	tlb_invalidate_page is more than welcome to invalidate pages
	not currently in the tlb, remove a printf so i could know if
	i was exercising things well.

Affected files ...

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

Differences ...

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

@@ -207,9 +207,7 @@
 	mips_wr_entryhi(ehi);
 	mips_tlbp();
 	i = mips_rd_index();
-	if (i < 0)
-		printf("%s: %#lx not in tlb\n", __func__, va);
-	else
+	if (i >= 0)
 		tlb_invalidate_one(va);
 }
 


More information about the p4-projects mailing list