PERFORCE change 32733 for review

Juli Mallett jmallett at FreeBSD.org
Sat Jun 7 04:00:22 PDT 2003


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

Change 32733 by jmallett at jmallett_dalek on 2003/06/07 03:59:18

	Add a PG_ bit for all hardware bits.

Affected files ...

.. //depot/projects/mips/sys/mips/include/pte.h#7 edit

Differences ...

==== //depot/projects/mips/sys/mips/include/pte.h#7 (text+ko) ====

@@ -96,10 +96,12 @@
  * 	G:	Global bit.  This means that this mapping is present
  * 		in EVERY address space, and to ignore the ASID when
  * 		it is matched.
+ * 	HW:	Mask of all hardware bits.
  */
 #define	PG_D	0x04
 #define	PG_V	0x02
 #define	PG_G	0x01
+#define	PG_HW	(PG_D | PG_V | PG_G)
 
 /*
  * VM flags managed in software:


More information about the p4-projects mailing list