Home | History | Annotate | Line # | Download | only in uvm
uvm.h revision 1.8
      1 /*	$NetBSD: uvm.h,v 1.8 1998/05/20 01:32:29 thorpej Exp $	*/
      2 
      3 /*
      4  * XXXCDC: "ROUGH DRAFT" QUALITY UVM PRE-RELEASE FILE!
      5  *	   >>>USE AT YOUR OWN RISK, WORK IS NOT FINISHED<<<
      6  */
      7 
      8 /*
      9  *
     10  * Copyright (c) 1997 Charles D. Cranor and Washington University.
     11  * All rights reserved.
     12  *
     13  * Redistribution and use in source and binary forms, with or without
     14  * modification, are permitted provided that the following conditions
     15  * are met:
     16  * 1. Redistributions of source code must retain the above copyright
     17  *    notice, this list of conditions and the following disclaimer.
     18  * 2. Redistributions in binary form must reproduce the above copyright
     19  *    notice, this list of conditions and the following disclaimer in the
     20  *    documentation and/or other materials provided with the distribution.
     21  * 3. All advertising materials mentioning features or use of this software
     22  *    must display the following acknowledgement:
     23  *      This product includes software developed by Charles D. Cranor and
     24  *      Washington University.
     25  * 4. The name of the author may not be used to endorse or promote products
     26  *    derived from this software without specific prior written permission.
     27  *
     28  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     29  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     30  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     31  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     32  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     33  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     34  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     35  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     36  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     37  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     38  *
     39  * from: Id: uvm.h,v 1.1.2.14 1998/02/02 20:07:19 chuck Exp
     40  */
     41 
     42 #ifndef _UVM_UVM_H_
     43 #define _UVM_UVM_H_
     44 
     45 #include "opt_lockdebug.h"
     46 #include "opt_uvmhist.h"
     47 
     48 #include <uvm/uvm_extern.h>
     49 
     50 #include <uvm/uvm_stat.h>
     51 
     52 /*
     53  * pull in prototypes
     54  */
     55 
     56 #include <uvm/uvm_amap.h>
     57 #include <uvm/uvm_aobj.h>
     58 #include <uvm/uvm_fault.h>
     59 #include <uvm/uvm_glue.h>
     60 #include <uvm/uvm_km.h>
     61 #include <uvm/uvm_loan.h>
     62 #include <uvm/uvm_map.h>
     63 #include <uvm/uvm_object.h>
     64 #include <uvm/uvm_page.h>
     65 #include <uvm/uvm_pager.h>
     66 #include <uvm/uvm_pdaemon.h>
     67 #include <uvm/uvm_swap.h>
     68 
     69 /*
     70  * uvm structure (vm global state: collected in one structure for ease
     71  * of reference...)
     72  */
     73 
     74 struct uvm {
     75 	/* vm_page related parameters */
     76 		/* vm_page queues */
     77 	struct pglist page_free;	/* unallocated pages */
     78 	struct pglist page_active;	/* allocated pages, in use */
     79 	struct pglist page_inactive_swp;/* pages inactive (reclaim or free) */
     80 	struct pglist page_inactive_obj;/* pages inactive (reclaim or free) */
     81 	simple_lock_data_t pageqlock;	/* lock for active/inactive page q */
     82 	simple_lock_data_t fpageqlock;	/* lock for free page q */
     83 		/* page daemon trigger */
     84 	int pagedaemon;			/* daemon sleeps on this */
     85 	struct proc *pagedaemon_proc;	/* daemon's pid */
     86 	simple_lock_data_t pagedaemon_lock;
     87 		/* page hash */
     88 	struct pglist *page_hash;	/* page hash table (vp/off->page) */
     89 	int page_nhash;			/* number of buckets */
     90 	int page_hashmask;		/* hash mask */
     91 	simple_lock_data_t hashlock;	/* lock on page_hash array */
     92 	/* anon stuff */
     93 	struct vm_anon *afree;		/* anon free list */
     94 	simple_lock_data_t afreelock; 	/* lock on anon free list */
     95 
     96 	/* static kernel map entry pool */
     97 	vm_map_entry_t kentry_free;	/* free page pool */
     98 	simple_lock_data_t kentry_lock;
     99 
    100 	/* aio_done is locked by uvm.pagedaemon_lock and splbio! */
    101 	struct uvm_aiohead aio_done;	/* done async i/o reqs */
    102 
    103 	/* pager VM area bounds */
    104 	vm_offset_t pager_sva;		/* start of pager VA area */
    105 	vm_offset_t pager_eva;		/* end of pager VA area */
    106 
    107 	/* kernel object: to support anonymous pageable kernel memory */
    108 	struct uvm_object *kernel_object;
    109 };
    110 
    111 extern struct uvm uvm;
    112 
    113 /*
    114  * historys
    115  */
    116 
    117 UVMHIST_DECL(maphist);
    118 UVMHIST_DECL(pdhist);
    119 
    120 /*
    121  * vm_map_entry etype bits:
    122  */
    123 
    124 #define UVM_ET_OBJ		0x01	/* it is a uvm_object */
    125 #define UVM_ET_MAP		0x02	/* it is a vm_map */
    126 #define UVM_ET_SUBMAP		0x04	/* it is a submap (MAP must be 1 too) */
    127 #define UVM_ET_COPYONWRITE 	0x08	/* copy_on_write */
    128 #define UVM_ET_NEEDSCOPY	0x10	/* needs_copy */
    129 
    130 #define UVM_ET_ISOBJ(E)		(((E)->etype & UVM_ET_OBJ) != 0)
    131 #define UVM_ET_ISMAP(E)		(((E)->etype & UVM_ET_MAP) != 0)
    132 #define UVM_ET_ISSUBMAP(E)	(((E)->etype & UVM_ET_SUBMAP) != 0)
    133 #define UVM_ET_ISCOPYONWRITE(E)	(((E)->etype & UVM_ET_COPYONWRITE) != 0)
    134 #define UVM_ET_ISNEEDSCOPY(E)	(((E)->etype & UVM_ET_NEEDSCOPY) != 0)
    135 
    136 /*
    137  * macros
    138  */
    139 
    140 /*
    141  * UVM_UNLOCK_AND_WAIT: atomic unlock+wait... front end for the
    142  * (poorly named) thread_sleep_msg function.
    143  */
    144 
    145 #if NCPU > 1 || defined(LOCKDEBUG)
    146 
    147 #define UVM_UNLOCK_AND_WAIT(event,lock,intr,msg, timo) \
    148 	thread_sleep_msg(event,lock,intr,msg, timo)
    149 
    150 #else
    151 
    152 #define UVM_UNLOCK_AND_WAIT(event,lock,intr,msg, timo) \
    153 	thread_sleep_msg(event,NULL,intr,msg, timo)
    154 
    155 #endif
    156 
    157 /*
    158  * UVM_PAGE_OWN: track page ownership (only if UVM_PAGE_TRKOWN)
    159  */
    160 
    161 #if defined(UVM_PAGE_TRKOWN)
    162 
    163 #define UVM_PAGE_OWN(PG, TAG) uvm_page_own(PG, TAG)
    164 
    165 #else /* UVM_PAGE_TRKOWN */
    166 
    167 #define UVM_PAGE_OWN(PG, TAG) /* nothing */
    168 
    169 #endif /* UVM_PAGE_TRKOWN */
    170 
    171 /*
    172  * pull in inlines
    173  */
    174 
    175 #include <uvm/uvm_amap_i.h>
    176 #include <uvm/uvm_fault_i.h>
    177 #include <uvm/uvm_map_i.h>
    178 #include <uvm/uvm_page_i.h>
    179 #include <uvm/uvm_pager_i.h>
    180 
    181 #endif /* _UVM_UVM_H_ */
    182