diff options
author | 2009-03-27 16:29:33 +0000 | |
---|---|---|
committer | 2009-03-27 16:29:33 +0000 | |
commit | 8b7afada478cc8971c750e9d0f7a8a306c3e33da (patch) | |
tree | 570e0cbe85d3728873c8b26859aaa8130e08fba9 | |
parent | convert iopiic lockmgr to rwlock. (diff) | |
download | wireguard-openbsd-8b7afada478cc8971c750e9d0f7a8a306c3e33da.tar.xz wireguard-openbsd-8b7afada478cc8971c750e9d0f7a8a306c3e33da.zip |
remove PGO_OVERWRITE, PGO_WEAK and PGO_PASTEOF from the pager. They're all
unused.
ok art@.
-rw-r--r-- | sys/uvm/uvm_pager.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/uvm/uvm_pager.h b/sys/uvm/uvm_pager.h index 84b1e837f8d..229303e5247 100644 --- a/sys/uvm/uvm_pager.h +++ b/sys/uvm/uvm_pager.h @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_pager.h,v 1.22 2009/03/25 20:00:18 oga Exp $ */ +/* $OpenBSD: uvm_pager.h,v 1.23 2009/03/27 16:29:33 oga Exp $ */ /* $NetBSD: uvm_pager.h,v 1.20 2000/11/27 08:40:05 chs Exp $ */ /* @@ -126,9 +126,6 @@ struct uvm_pagerops { #define PGO_LOCKED 0x040 /* fault data structures are locked [get] */ #define PGO_PDFREECLUST 0x080 /* daemon's free cluster flag [uvm_pager_put] */ #define PGO_REALLOCSWAP 0x100 /* reallocate swap area [pager_dropcluster] */ -#define PGO_OVERWRITE 0x200 /* pages will be overwritten before unlocked */ -#define PGO_WEAK 0x400 /* "weak" put, for nfs */ -#define PGO_PASTEOF 0x800 /* allow allocation of pages past EOF */ /* page we are not interested in getting */ #define PGO_DONTCARE ((struct vm_page *) -1L) /* [get only] */ |