summaryrefslogtreecommitdiff
path: root/sys/uvm/uvm_pglist.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/uvm/uvm_pglist.h')
-rw-r--r--sys/uvm/uvm_pglist.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/sys/uvm/uvm_pglist.h b/sys/uvm/uvm_pglist.h
index 883171ebb86..3020df4d5b0 100644
--- a/sys/uvm/uvm_pglist.h
+++ b/sys/uvm/uvm_pglist.h
@@ -1,5 +1,5 @@
-/* $OpenBSD: uvm_pglist.h,v 1.4 2001/12/04 23:22:42 art Exp $ */
-/* $NetBSD: uvm_pglist.h,v 1.5 2001/08/25 20:37:46 chs Exp $ */
+/* $OpenBSD: uvm_pglist.h,v 1.5 2001/12/19 08:58:07 art Exp $ */
+/* $NetBSD: uvm_pglist.h,v 1.3 2001/05/02 01:22:20 thorpej Exp $ */
/*-
* Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
@@ -37,8 +37,8 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef _UVM_UVM_PGLIST_H_
-#define _UVM_UVM_PGLIST_H_
+#ifndef _PGLIST_H_
+#define _PGLIST_H_
/*
* This defines the type of a page queue, e.g. active list, inactive
@@ -54,12 +54,8 @@ TAILQ_HEAD(pglist, vm_page);
#define PGFL_ZEROS 1
#define PGFL_NQUEUES 2
-struct pgflbucket {
- struct pglist pgfl_queues[PGFL_NQUEUES];
-};
-
struct pgfreelist {
- struct pgflbucket *pgfl_buckets;
+ struct pglist pgfl_queues[PGFL_NQUEUES];
};
-#endif /* _UVM_UVM_PGLIST_H_ */
+#endif