diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2011-04-15 21:30:03 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2011-04-15 21:30:03 +0000 |
commit | cb3d7d732eb032fd0f48f31a92c3db0acd7c0663 (patch) | |
tree | edcb9581ae73e13cda2acd09b6d89270c46bff7d /sys/uvm/uvm.h | |
parent | 62106b0b2072837cb16ef80f9ce1d816218db92d (diff) |
When I switched uvm objects to use a per-object page tree instead of the
global hash I forgot to remove the has declarations from struct uvm. So
remove them now.
pointed out by blambert@, ok beck@
Diffstat (limited to 'sys/uvm/uvm.h')
-rw-r--r-- | sys/uvm/uvm.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/uvm/uvm.h b/sys/uvm/uvm.h index 51c8a88b821..dfb97287a8f 100644 --- a/sys/uvm/uvm.h +++ b/sys/uvm/uvm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm.h,v 1.41 2010/06/29 20:39:27 thib Exp $ */ +/* $OpenBSD: uvm.h,v 1.42 2011/04/15 21:30:02 oga Exp $ */ /* $NetBSD: uvm.h,v 1.24 2000/11/27 08:40:02 chs Exp $ */ /* @@ -120,12 +120,6 @@ struct uvm { struct proc *aiodoned_proc; /* daemon's pid */ struct mutex aiodoned_lock; - /* page hash */ - struct pglist *page_hash; /* page hash table (vp/off->page) */ - int page_nhash; /* number of buckets */ - int page_hashmask; /* hash mask */ - struct mutex hashlock; /* lock on page_hash array */ - /* static kernel map entry pool */ vm_map_entry_t kentry_free; /* free page pool */ simple_lock_data_t kentry_lock; |