Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 7 Jun 2003 04:00:19 -0700 (PDT)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 32733 for review
Message-ID:  <200306071100.h57B0JYM031061@repoman.freebsd.org>

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

Change 32733 by jmallett@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:



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