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