diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2009-06-01 19:54:03 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2009-06-01 19:54:03 +0000 |
commit | f8d7e4725bdfb323dc5095eb2d8e80a36d63a496 (patch) | |
tree | bb29916c2b175311cd9f31dc72f34dbff9affc44 /sys/uvm/uvm_pager.h | |
parent | 4e5208a438b355025e66c603943140401434cd55 (diff) |
Since we've now cleared up a lot of the PG_RELEASED setting, remove the
pgo_releasepg() hook and just free the page the "normal" way in the one
place we'll ever see PG_RELEASED and should care (uvm_page_unbusy,
called in aiodoned).
ok art@, beck@, thib@
Diffstat (limited to 'sys/uvm/uvm_pager.h')
-rw-r--r-- | sys/uvm/uvm_pager.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/uvm/uvm_pager.h b/sys/uvm/uvm_pager.h index 229303e5247..5b820ea65b3 100644 --- a/sys/uvm/uvm_pager.h +++ b/sys/uvm/uvm_pager.h @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_pager.h,v 1.23 2009/03/27 16:29:33 oga Exp $ */ +/* $OpenBSD: uvm_pager.h,v 1.24 2009/06/01 19:54:02 oga Exp $ */ /* $NetBSD: uvm_pager.h,v 1.20 2000/11/27 08:40:05 chs Exp $ */ /* @@ -109,8 +109,6 @@ struct uvm_pagerops { struct vm_page ** (*pgo_mk_pcluster)(struct uvm_object *, struct vm_page **, int *, struct vm_page *, int, voff_t, voff_t); - /* release page */ - boolean_t (*pgo_releasepg)(struct vm_page *, struct vm_page **); }; /* pager flags [mostly for flush] */ |