Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 24 Jan 2003 23:47:52 -0800 (PST)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 24172 for review
Message-ID:  <200301250747.h0P7lqgF098956@repoman.freebsd.org>

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

Change 24172 by jmallett@jmallett_dalek on 2003/01/24 23:47:47

	Move PAGE_* defns to where FreeBSD expects them.

Affected files ...

.. //depot/projects/mips/sys/mips/include/param.h#3 edit
.. //depot/projects/mips/sys/mips/include/vmparam.h#2 edit

Differences ...

==== //depot/projects/mips/sys/mips/include/param.h#3 (text+ko) ====

@@ -7,6 +7,14 @@
 #include <platform/param.h>
 
 /*
+ * We use a 4K page on MIPS systems.  Override PAGE_* definitions
+ * to compile-time constants.
+ */
+#define	PAGE_SHIFT	12
+#define	PAGE_SIZE	(1 << PAGE_SHIFT)
+#define	PAGE_MASK	(PAGE_SIZE - 1)
+
+/*
  * On mips, UPAGES is fixed by sys/arch/mips/mips/locore code
  * to be the number of per-process-wired kernel-stack pages/PTES.
  */

==== //depot/projects/mips/sys/mips/include/vmparam.h#2 (text+ko) ====

@@ -51,14 +51,6 @@
 #include <platform/vmparam.h>
 
 /*
- * We use a 4K page on MIPS systems.  Override PAGE_* definitions
- * to compile-time constants.
- */
-#define	PAGE_SHIFT	12
-#define	PAGE_SIZE	(1 << PAGE_SHIFT)
-#define	PAGE_MASK	(PAGE_SIZE - 1)
-
-/*
  * USRTEXT is the start of the user text/data space, while USRSTACK
  * is the top (end) of the user stack.
  *

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




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