summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Cox <alc@FreeBSD.org>1999-08-14 06:25:54 +0000
committerAlan Cox <alc@FreeBSD.org>1999-08-14 06:25:54 +0000
commit514bfcc440bc08a283475be4396d75a72193c59a (patch)
treecb4f095ed39a2ad1eb8dccad83f230258b507301
parent6dd671ea607cbef5787f7dcbd932bb23b0b7e5cb (diff)
Notes
-rw-r--r--sys/vm/vm_page.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/vm/vm_page.h b/sys/vm/vm_page.h
index 5e9ce246ff32..1d54a650908b 100644
--- a/sys/vm/vm_page.h
+++ b/sys/vm/vm_page.h
@@ -61,7 +61,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_page.h,v 1.64 1999/07/31 18:31:00 alc Exp $
+ * $Id: vm_page.h,v 1.65 1999/08/12 21:16:53 alc Exp $
*/
/*
@@ -193,12 +193,12 @@ struct vm_page {
#define PQ_L2_MASK (PQ_L2_SIZE - 1)
-#define PQ_NONE 0
-#define PQ_FREE 1
-#define PQ_INACTIVE (1 + 1*PQ_L2_SIZE)
-#define PQ_ACTIVE (2 + 1*PQ_L2_SIZE)
-#define PQ_CACHE (3 + 1*PQ_L2_SIZE)
-#define PQ_COUNT (3 + 2*PQ_L2_SIZE)
+#define PQ_NONE PQ_COUNT
+#define PQ_FREE 0
+#define PQ_INACTIVE PQ_L2_SIZE
+#define PQ_ACTIVE (1 + PQ_L2_SIZE)
+#define PQ_CACHE (2 + PQ_L2_SIZE)
+#define PQ_COUNT (2 + 2*PQ_L2_SIZE)
extern struct vpgqueues {
struct pglist *pl;