diff options
Diffstat (limited to 'sys/arch/hppa64/include/vmparam.h')
-rw-r--r-- | sys/arch/hppa64/include/vmparam.h | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/sys/arch/hppa64/include/vmparam.h b/sys/arch/hppa64/include/vmparam.h index a8d4a6329c8..c8fcd21d183 100644 --- a/sys/arch/hppa64/include/vmparam.h +++ b/sys/arch/hppa64/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.9 2014/01/24 05:21:19 miod Exp $ */ +/* $OpenBSD: vmparam.h,v 1.10 2014/01/30 18:16:41 miod Exp $ */ /* * Copyright (c) 1988-1994, The University of Utah and @@ -92,22 +92,4 @@ #define VM_PHYSSEG_NOADD /* XXX until uvm code is fixed */ -#if !defined(_LOCORE) - -#include <sys/lock.h> - -struct pv_entry; -struct vm_page_md { - struct simplelock pvh_lock; /* locks every pv on this list */ - struct pv_entry *pvh_list; /* head of list (locked by pvh_lock) */ - u_int pvh_attrs; /* to preserve ref/mod */ -}; - -#define VM_MDPAGE_INIT(pg) do { \ - simple_lock_init(&(pg)->mdpage.pvh_lock); \ - (pg)->mdpage.pvh_list = NULL; \ - (pg)->mdpage.pvh_attrs = 0; \ -} while (0) -#endif - #endif /* _MACHINE_VMPARAM_H_ */ |