Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Nov 2003 15:41:52 -0800 (PST)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 41771 for review
Message-ID:  <200311082341.hA8NfqBw018050@repoman.freebsd.org>

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

Change 41771 by jmallett@jmallett_dalek on 2003/11/08 15:41:45

	Don't specify PG_G by hand, it'll be added for pmap==kernel_pmap by
	the TLB code.

Affected files ...

.. //depot/projects/mips/sys/mips/mips/pmap.c#23 edit

Differences ...

==== //depot/projects/mips/sys/mips/mips/pmap.c#23 (text+ko) ====

@@ -646,7 +646,7 @@
 pmap_kenter(vm_offset_t va, vm_offset_t pa)
 {
 
-	tlb_enter(kernel_pmap, va, pa, PG_G | PG_V | PG_W);
+	tlb_enter(kernel_pmap, va, pa, PG_V | PG_W);
 }
 
 /*



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