diff options
Diffstat (limited to 'sys/uvm/uvm_pglist.h')
-rw-r--r-- | sys/uvm/uvm_pglist.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/sys/uvm/uvm_pglist.h b/sys/uvm/uvm_pglist.h index 665a20f994e..62d48fe7437 100644 --- a/sys/uvm/uvm_pglist.h +++ b/sys/uvm/uvm_pglist.h @@ -1,5 +1,5 @@ -/* $OpenBSD: uvm_pglist.h,v 1.2 2001/11/07 02:55:50 art Exp $ */ -/* $NetBSD: uvm_pglist.h,v 1.3 2001/05/02 01:22:20 thorpej Exp $ */ +/* $OpenBSD: uvm_pglist.h,v 1.3 2001/11/28 19:28:15 art Exp $ */ +/* $NetBSD: uvm_pglist.h,v 1.4 2001/05/25 04:06:17 chs Exp $ */ /*- * Copyright (c) 2000, 2001 The NetBSD Foundation, Inc. @@ -54,8 +54,12 @@ TAILQ_HEAD(pglist, vm_page); #define PGFL_ZEROS 1 #define PGFL_NQUEUES 2 -struct pgfreelist { +struct pgflbucket { struct pglist pgfl_queues[PGFL_NQUEUES]; }; -#endif +struct pgfreelist { + struct pgflbucket *pgfl_buckets; +}; + +#endif /* _PGLIST_H */ |