[eros-cvs] cvs commit: eros/src/base/sys/arch/i486/arch-kerninc PTE.hxx

shap@eros.cs.jhu.edu shap@eros.cs.jhu.edu
Mon, 12 Mar 2001 22:06:07 -0500


shap        01/03/12 22:06:07

  Modified:    src/base/sys/arch/i486/arch-kerninc PTE.hxx
  Log:
  Re-expand the SW use bits of the PTE (style nit)

Revision  Changes    Path
1.6       +3 -1      eros/src/base/sys/arch/i486/arch-kerninc/PTE.hxx

Index: PTE.hxx
===================================================================
RCS file: /cvs/eros/src/base/sys/arch/i486/arch-kerninc/PTE.hxx,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- PTE.hxx	2001/03/05 05:22:01	1.5
+++ PTE.hxx	2001/03/13 03:06:07	1.6
@@ -33,7 +33,9 @@
 #define PTE_DRTY __U(0x040)	/* dirty */
 #define PTE_PGSZ __U(0x080)	/* large page  (PDE, >=Pentium only) */
 #define PTE_GLBL __U(0x100)	/* global page (PDE,PTE, >= PPro only) */
-#define PTE_SW2  __U(0xe00)	/* SW use */
+#define PTE_SW0  __U(0x200)	/* SW use */
+#define PTE_SW1  __U(0x400)	/* SW use */
+#define PTE_SW2  __U(0x800)	/* SW use */
 
 #define PTE_FRAMEBITS __U(0xfffff000)
 #define PTE_INFOBITS  __U(0x00000fff)