svn commit: r242193 - head/sys/mips/mips
Alan Cox
alc at FreeBSD.org
Sat Oct 27 22:43:31 UTC 2012
Author: alc
Date: Sat Oct 27 22:43:30 2012
New Revision: 242193
URL: http://svn.freebsd.org/changeset/base/242193
Log:
Eliminate a redundant TLB invalidation from pmap_pv_reclaim().
Modified:
head/sys/mips/mips/pmap.c
Modified: head/sys/mips/mips/pmap.c
==============================================================================
--- head/sys/mips/mips/pmap.c Sat Oct 27 22:33:23 2012 (r242192)
+++ head/sys/mips/mips/pmap.c Sat Oct 27 22:43:30 2012 (r242193)
@@ -1440,7 +1440,6 @@ pmap_pv_reclaim(pmap_t locked_pmap)
*pte = PTE_G;
else
*pte = 0;
- pmap_invalidate_page(pmap, va);
m = PHYS_TO_VM_PAGE(TLBLO_PTE_TO_PA(oldpte));
if (pte_test(&oldpte, PTE_D))
vm_page_dirty(m);
More information about the svn-src-all
mailing list