Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Nov 2003 21:18:32 -0800 (PST)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 41961 for review
Message-ID:  <200311110518.hAB5IWTn001428@repoman.freebsd.org>

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

Change 41961 by jmallett@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);
 }
 



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