2000-06-27 20:16:43 +04:00
|
|
|
/* $NetBSD: uvm_extern.h,v 1.45 2000/06/27 16:16:43 mrg Exp $ */
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Copyright (c) 1997 Charles D. Cranor and Washington University.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Charles D. Cranor and
|
|
|
|
* Washington University.
|
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1998-02-07 14:07:38 +03:00
|
|
|
*
|
|
|
|
* from: Id: uvm_extern.h,v 1.1.2.21 1998/02/07 01:16:53 chs Exp
|
1998-02-05 09:25:08 +03:00
|
|
|
*/
|
|
|
|
|
2000-06-27 13:00:14 +04:00
|
|
|
/*-
|
2000-06-27 20:16:43 +04:00
|
|
|
* Copyright (c) 1991, 1992, 1993
|
2000-06-27 13:00:14 +04:00
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* @(#)vm_extern.h 8.5 (Berkeley) 5/3/95
|
|
|
|
*/
|
|
|
|
|
1998-02-10 05:34:17 +03:00
|
|
|
#ifndef _UVM_UVM_EXTERN_H_
|
|
|
|
#define _UVM_UVM_EXTERN_H_
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* uvm_extern.h: this file defines the external interface to the VM system.
|
|
|
|
*
|
|
|
|
* this should be the only file included by non-VM parts of the kernel
|
|
|
|
* which need access to VM services. if you want to know the interface
|
|
|
|
* to the MI VM layer without knowing the details, this is the file to
|
|
|
|
* learn.
|
|
|
|
*
|
|
|
|
* NOTE: vm system calls are prototyped in syscallargs.h
|
|
|
|
*/
|
|
|
|
|
2000-06-27 20:16:43 +04:00
|
|
|
/*
|
|
|
|
* typedefs, necessary for standard UVM headers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef unsigned int uvm_flag_t;
|
|
|
|
typedef int vm_fault_t;
|
|
|
|
|
|
|
|
typedef int vm_inherit_t; /* XXX: inheritance codes */
|
|
|
|
typedef off_t voff_t; /* XXX: offset within a uvm_object */
|
|
|
|
|
|
|
|
union vm_map_object;
|
|
|
|
typedef union vm_map_object vm_map_object_t;
|
|
|
|
|
|
|
|
struct vm_map_entry;
|
|
|
|
typedef struct vm_map_entry *vm_map_entry_t;
|
|
|
|
|
|
|
|
struct vm_map;
|
|
|
|
typedef struct vm_map *vm_map_t;
|
|
|
|
|
|
|
|
struct vm_page;
|
|
|
|
typedef struct vm_page *vm_page_t;
|
|
|
|
|
1998-02-05 09:25:08 +03:00
|
|
|
/*
|
|
|
|
* defines
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* the following defines are for uvm_map and functions which call it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* protections bits */
|
|
|
|
#define UVM_PROT_MASK 0x07 /* protection mask */
|
|
|
|
#define UVM_PROT_NONE 0x00 /* protection none */
|
|
|
|
#define UVM_PROT_ALL 0x07 /* everything */
|
|
|
|
#define UVM_PROT_READ 0x01 /* read */
|
|
|
|
#define UVM_PROT_WRITE 0x02 /* write */
|
|
|
|
#define UVM_PROT_EXEC 0x04 /* exec */
|
|
|
|
|
|
|
|
/* protection short codes */
|
|
|
|
#define UVM_PROT_R 0x01 /* read */
|
|
|
|
#define UVM_PROT_W 0x02 /* write */
|
|
|
|
#define UVM_PROT_RW 0x03 /* read-write */
|
|
|
|
#define UVM_PROT_X 0x04 /* exec */
|
|
|
|
#define UVM_PROT_RX 0x05 /* read-exec */
|
|
|
|
#define UVM_PROT_WX 0x06 /* write-exec */
|
|
|
|
#define UVM_PROT_RWX 0x07 /* read-write-exec */
|
|
|
|
|
|
|
|
/* 0x08: not used */
|
|
|
|
|
|
|
|
/* inherit codes */
|
|
|
|
#define UVM_INH_MASK 0x30 /* inherit mask */
|
|
|
|
#define UVM_INH_SHARE 0x00 /* "share" */
|
|
|
|
#define UVM_INH_COPY 0x10 /* "copy" */
|
|
|
|
#define UVM_INH_NONE 0x20 /* "none" */
|
|
|
|
#define UVM_INH_DONATE 0x30 /* "donate" << not used */
|
|
|
|
|
|
|
|
/* 0x40, 0x80: not used */
|
|
|
|
|
|
|
|
/* bits 0x700: max protection, 0x800: not used */
|
|
|
|
|
|
|
|
/* bits 0x7000: advice, 0x8000: not used */
|
|
|
|
/* advice: matches MADV_* from sys/mman.h */
|
|
|
|
#define UVM_ADV_NORMAL 0x0 /* 'normal' */
|
|
|
|
#define UVM_ADV_RANDOM 0x1 /* 'random' */
|
|
|
|
#define UVM_ADV_SEQUENTIAL 0x2 /* 'sequential' */
|
|
|
|
/* 0x3: will need, 0x4: dontneed */
|
|
|
|
#define UVM_ADV_MASK 0x7 /* mask */
|
|
|
|
|
|
|
|
/* mapping flags */
|
|
|
|
#define UVM_FLAG_FIXED 0x010000 /* find space */
|
|
|
|
#define UVM_FLAG_OVERLAY 0x020000 /* establish overlay */
|
|
|
|
#define UVM_FLAG_NOMERGE 0x040000 /* don't merge map entries */
|
|
|
|
#define UVM_FLAG_COPYONW 0x080000 /* set copy_on_write flag */
|
|
|
|
#define UVM_FLAG_AMAPPAD 0x100000 /* for bss: pad amap to reduce malloc() */
|
|
|
|
#define UVM_FLAG_TRYLOCK 0x200000 /* fail if we can not lock map */
|
|
|
|
|
|
|
|
/* macros to extract info */
|
|
|
|
#define UVM_PROTECTION(X) ((X) & UVM_PROT_MASK)
|
|
|
|
#define UVM_INHERIT(X) (((X) & UVM_INH_MASK) >> 4)
|
|
|
|
#define UVM_MAXPROTECTION(X) (((X) >> 8) & UVM_PROT_MASK)
|
|
|
|
#define UVM_ADVICE(X) (((X) >> 12) & UVM_ADV_MASK)
|
|
|
|
|
|
|
|
#define UVM_MAPFLAG(PROT,MAXPROT,INH,ADVICE,FLAGS) \
|
|
|
|
((MAXPROT << 8)|(PROT)|(INH)|((ADVICE) << 12)|(FLAGS))
|
|
|
|
|
|
|
|
/* magic offset value */
|
2000-03-27 00:54:45 +04:00
|
|
|
#define UVM_UNKNOWN_OFFSET ((voff_t) -1)
|
1998-02-05 09:25:08 +03:00
|
|
|
/* offset not known(obj) or don't care(!obj) */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* the following defines are for uvm_km_kmemalloc's flags
|
|
|
|
*/
|
|
|
|
#define UVM_KMF_NOWAIT 0x1 /* matches M_NOWAIT */
|
|
|
|
#define UVM_KMF_VALLOC 0x2 /* allocate VA only */
|
|
|
|
#define UVM_KMF_TRYLOCK UVM_FLAG_TRYLOCK /* try locking only */
|
|
|
|
|
Add support for multiple memory free lists. There is at least one
default free list, and 0 - N additional free list, in order of descending
priority.
A new page allocation function, uvm_pagealloc_strat(), has been added,
providing three page allocation strategies:
- normal: high -> low priority free list walk, taking the
page off the first free list that has one.
- only: attempt to allocate a page only from the specified free
list, failing if that free list has none available.
- fallback: if `only' fails, fall back on `normal'.
uvm_pagealloc(...) is provided for normal use (and is a synonym for
uvm_pagealloc_strat(..., UVM_PGA_STRAT_NORMAL, 0); the free list argument
is ignored for the `normal' case).
uvm_page_physload() now specified which free list the pages will be
loaded onto. This means that some platforms which have multiple physical
memory segments may define additional vm_physsegs if they wish to break
individual physical segments into differing priorities.
Machine-dependent code must define _at least_ the following constants
in <machine/vmparam.h>:
VM_NFREELIST: the number of free lists the system will have
VM_FREELIST_DEFAULT: the default freelist (should always be 0,
but is defined in machdep code so that it's with all of the
other free list-related constants).
Additional free list names may be defined by machine-dependent code, but
they will only be used by machine-dependent code (e.g. for loading the
vm_physsegs).
1998-07-08 08:28:27 +04:00
|
|
|
/*
|
|
|
|
* the following defines the strategies for uvm_pagealloc_strat()
|
|
|
|
*/
|
|
|
|
#define UVM_PGA_STRAT_NORMAL 0 /* high -> low free list walk */
|
|
|
|
#define UVM_PGA_STRAT_ONLY 1 /* only specified free list */
|
|
|
|
#define UVM_PGA_STRAT_FALLBACK 2 /* ONLY falls back on NORMAL */
|
|
|
|
|
1999-04-11 08:04:04 +04:00
|
|
|
/*
|
|
|
|
* flags for uvm_pagealloc_strat()
|
|
|
|
*/
|
2000-04-10 04:28:05 +04:00
|
|
|
#define UVM_PGA_USERESERVE 0x0001 /* ok to use reserve pages */
|
|
|
|
#define UVM_PGA_ZERO 0x0002 /* returned page must be zero'd */
|
1999-04-11 08:04:04 +04:00
|
|
|
|
1999-07-18 01:35:49 +04:00
|
|
|
/*
|
|
|
|
* lockflags that control the locking behavior of various functions.
|
|
|
|
*/
|
|
|
|
#define UVM_LK_ENTER 0x00000001 /* map locked on entry */
|
|
|
|
#define UVM_LK_EXIT 0x00000002 /* leave map locked on exit */
|
|
|
|
|
1998-02-05 09:25:08 +03:00
|
|
|
/*
|
|
|
|
* structures
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct core;
|
|
|
|
struct mount;
|
|
|
|
struct pglist;
|
|
|
|
struct proc;
|
|
|
|
struct ucred;
|
|
|
|
struct uio;
|
|
|
|
struct uvm_object;
|
|
|
|
struct vm_anon;
|
|
|
|
struct vmspace;
|
1998-03-27 04:47:06 +03:00
|
|
|
struct pmap;
|
1998-02-05 09:25:08 +03:00
|
|
|
struct vnode;
|
1999-07-23 02:58:38 +04:00
|
|
|
struct simplelock;
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* uvmexp: global data structures that are exported to parts of the kernel
|
|
|
|
* other than the vm system.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct uvmexp {
|
1998-03-09 03:58:55 +03:00
|
|
|
/* vm_page constants */
|
1998-02-05 09:25:08 +03:00
|
|
|
int pagesize; /* size of a page (PAGE_SIZE): must be power of 2 */
|
|
|
|
int pagemask; /* page mask */
|
|
|
|
int pageshift; /* page shift */
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/* vm_page counters */
|
1998-02-05 09:25:08 +03:00
|
|
|
int npages; /* number of pages we manage */
|
|
|
|
int free; /* number of free pages */
|
|
|
|
int active; /* number of active pages */
|
|
|
|
int inactive; /* number of pages that we free'd but may want back */
|
1998-02-07 05:24:02 +03:00
|
|
|
int paging; /* number of pages in the process of being paged out */
|
1998-02-05 09:25:08 +03:00
|
|
|
int wired; /* number of wired pages */
|
2000-04-24 21:12:00 +04:00
|
|
|
int zeropages; /* number of zero'd pages */
|
1998-02-07 05:24:02 +03:00
|
|
|
int reserve_pagedaemon; /* number of pages reserved for pagedaemon */
|
|
|
|
int reserve_kernel; /* number of pages reserved for kernel */
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/* pageout params */
|
|
|
|
int freemin; /* min number of free pages */
|
|
|
|
int freetarg; /* target number of free pages */
|
|
|
|
int inactarg; /* target number of inactive pages */
|
|
|
|
int wiredmax; /* max number of wired pages */
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/* swap */
|
1998-02-05 09:25:08 +03:00
|
|
|
int nswapdev; /* number of configured swap devices in system */
|
|
|
|
int swpages; /* number of PAGE_SIZE'ed swap pages */
|
1999-07-03 03:20:58 +04:00
|
|
|
int swpguniq; /* number of swap pages in use, not also in RAM */
|
1998-02-07 05:24:02 +03:00
|
|
|
int swpginuse; /* number of swap pages in use */
|
1999-03-26 20:34:15 +03:00
|
|
|
int swpgonly; /* number of swap pages in use, not also in RAM */
|
1998-02-05 09:25:08 +03:00
|
|
|
int nswget; /* number of times fault calls uvm_swap_get() */
|
|
|
|
int nanon; /* number total of anon's in system */
|
1999-07-03 03:20:58 +04:00
|
|
|
int nanonneeded;/* number of anons currently needed */
|
1998-02-05 09:25:08 +03:00
|
|
|
int nfreeanon; /* number of free anon's */
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/* stat counters */
|
1998-02-09 16:08:22 +03:00
|
|
|
int faults; /* page fault count */
|
|
|
|
int traps; /* trap count */
|
|
|
|
int intrs; /* interrupt count */
|
|
|
|
int swtch; /* context switch count */
|
|
|
|
int softs; /* software interrupt count */
|
|
|
|
int syscalls; /* system calls */
|
|
|
|
int pageins; /* pagein operation count */
|
|
|
|
/* pageouts are in pdpageouts below */
|
|
|
|
int swapins; /* swapins */
|
|
|
|
int swapouts; /* swapouts */
|
|
|
|
int pgswapin; /* pages swapped in */
|
|
|
|
int pgswapout; /* pages swapped out */
|
|
|
|
int forks; /* forks */
|
1998-02-05 09:25:08 +03:00
|
|
|
int forks_ppwait; /* forks where parent waits */
|
|
|
|
int forks_sharevm; /* forks where vmspace is shared */
|
2000-04-24 21:12:00 +04:00
|
|
|
int pga_zerohit; /* pagealloc where zero wanted and zero
|
|
|
|
was available */
|
|
|
|
int pga_zeromiss; /* pagealloc where zero wanted and zero
|
|
|
|
not available */
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/* fault subcounters */
|
1998-02-05 09:25:08 +03:00
|
|
|
int fltnoram; /* number of times fault was out of ram */
|
|
|
|
int fltnoanon; /* number of times fault was out of anons */
|
|
|
|
int fltpgwait; /* number of times fault had to wait on a page */
|
|
|
|
int fltpgrele; /* number of times fault found a released page */
|
|
|
|
int fltrelck; /* number of times fault relock called */
|
|
|
|
int fltrelckok; /* number of times fault relock is a success */
|
|
|
|
int fltanget; /* number of times fault gets anon page */
|
|
|
|
int fltanretry; /* number of times fault retrys an anon get */
|
|
|
|
int fltamcopy; /* number of times fault clears "needs copy" */
|
|
|
|
int fltnamap; /* number of times fault maps a neighbor anon page */
|
|
|
|
int fltnomap; /* number of times fault maps a neighbor obj page */
|
|
|
|
int fltlget; /* number of times fault does a locked pgo_get */
|
|
|
|
int fltget; /* number of times fault does an unlocked get */
|
|
|
|
int flt_anon; /* number of times fault anon (case 1a) */
|
|
|
|
int flt_acow; /* number of times fault anon cow (case 1b) */
|
|
|
|
int flt_obj; /* number of times fault is on object page (2a) */
|
|
|
|
int flt_prcopy; /* number of times fault promotes with copy (2b) */
|
|
|
|
int flt_przero; /* number of times fault promotes with zerofill (2b) */
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/* daemon counters */
|
1998-02-05 09:25:08 +03:00
|
|
|
int pdwoke; /* number of times daemon woke up */
|
|
|
|
int pdrevs; /* number of times daemon rev'd clock hand */
|
|
|
|
int pdswout; /* number of times daemon called for swapout */
|
|
|
|
int pdfreed; /* number of pages daemon freed since boot */
|
|
|
|
int pdscans; /* number of pages daemon scaned since boot */
|
|
|
|
int pdanscan; /* number of anonymous pages scanned by daemon */
|
|
|
|
int pdobscan; /* number of object pages scanned by daemon */
|
|
|
|
int pdreact; /* number of pages daemon reactivated since boot */
|
|
|
|
int pdbusy; /* number of times daemon found a busy page */
|
|
|
|
int pdpageouts; /* number of times daemon started a pageout */
|
|
|
|
int pdpending; /* number of times daemon got a pending pagout */
|
|
|
|
int pddeact; /* number of pages daemon deactivates */
|
|
|
|
|
1998-03-09 03:58:55 +03:00
|
|
|
/* kernel memory objects: managed by uvm_km_kmemalloc() only! */
|
1998-02-05 09:25:08 +03:00
|
|
|
struct uvm_object *kmem_object;
|
|
|
|
struct uvm_object *mb_object;
|
|
|
|
};
|
|
|
|
|
1999-06-21 21:25:11 +04:00
|
|
|
#ifdef _KERNEL
|
1998-02-05 09:25:08 +03:00
|
|
|
extern struct uvmexp uvmexp;
|
2000-06-27 20:16:43 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Finally, bring in standard UVM headers.
|
|
|
|
*/
|
|
|
|
#include <sys/vmmeter.h>
|
|
|
|
#include <sys/queue.h>
|
|
|
|
#include <uvm/uvm_param.h>
|
|
|
|
#include <sys/lock.h>
|
|
|
|
#include <uvm/uvm_prot.h>
|
|
|
|
#include <uvm/uvm_inherit.h>
|
|
|
|
#include <uvm/uvm_page.h>
|
|
|
|
#include <uvm/uvm_pmap.h>
|
|
|
|
#include <uvm/uvm_map.h>
|
|
|
|
#include <uvm/uvm_fault.h>
|
|
|
|
#include <uvm/uvm_pager.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Shareable process virtual address space.
|
|
|
|
* May eventually be merged with vm_map.
|
|
|
|
* Several fields are temporary (text, data stuff).
|
|
|
|
*/
|
|
|
|
struct vmspace {
|
|
|
|
struct vm_map vm_map; /* VM address map */
|
|
|
|
int vm_refcnt; /* number of references */
|
|
|
|
caddr_t vm_shm; /* SYS5 shared memory private data XXX */
|
|
|
|
/* we copy from vm_startcopy to the end of the structure on fork */
|
|
|
|
#define vm_startcopy vm_rssize
|
|
|
|
segsz_t vm_rssize; /* current resident set size in pages */
|
|
|
|
segsz_t vm_swrss; /* resident set size before last swap */
|
|
|
|
segsz_t vm_tsize; /* text size (pages) XXX */
|
|
|
|
segsz_t vm_dsize; /* data size (pages) XXX */
|
|
|
|
segsz_t vm_ssize; /* stack size (pages) */
|
|
|
|
caddr_t vm_taddr; /* user virtual address of text XXX */
|
|
|
|
caddr_t vm_daddr; /* user virtual address of data XXX */
|
|
|
|
caddr_t vm_maxsaddr; /* user VA at max stack growth */
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef _KERNEL
|
1998-02-05 09:25:08 +03:00
|
|
|
|
2000-06-26 18:20:25 +04:00
|
|
|
/*
|
|
|
|
* the various kernel maps, owned by MD code
|
|
|
|
*/
|
|
|
|
extern vm_map_t exec_map;
|
|
|
|
extern vm_map_t kernel_map;
|
|
|
|
extern vm_map_t kmem_map;
|
|
|
|
extern vm_map_t mb_map;
|
|
|
|
extern vm_map_t phys_map;
|
|
|
|
|
1998-02-05 09:25:08 +03:00
|
|
|
/*
|
|
|
|
* macros
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* zalloc zeros memory, alloc does not */
|
|
|
|
#define uvm_km_zalloc(MAP,SIZE) uvm_km_alloc1(MAP,SIZE,TRUE)
|
|
|
|
#define uvm_km_alloc(MAP,SIZE) uvm_km_alloc1(MAP,SIZE,FALSE)
|
|
|
|
|
1999-06-21 21:25:11 +04:00
|
|
|
#endif /* _KERNEL */
|
|
|
|
|
2000-06-27 20:16:43 +04:00
|
|
|
#ifdef pmap_resident_count
|
|
|
|
#define vm_resident_count(vm) (pmap_resident_count((vm)->vm_map.pmap))
|
|
|
|
#else
|
|
|
|
#define vm_resident_count(vm) ((vm)->vm_rssize)
|
|
|
|
#endif
|
1998-02-05 09:25:08 +03:00
|
|
|
|
2000-06-27 13:00:14 +04:00
|
|
|
/* XXX clean up later */
|
|
|
|
struct buf;
|
|
|
|
struct loadavg;
|
|
|
|
struct proc;
|
|
|
|
struct pmap;
|
|
|
|
struct vmspace;
|
|
|
|
struct vmtotal;
|
|
|
|
struct mount;
|
|
|
|
struct vnode;
|
|
|
|
struct core;
|
|
|
|
|
1999-06-21 21:25:11 +04:00
|
|
|
#ifdef _KERNEL
|
|
|
|
|
2000-06-27 13:00:14 +04:00
|
|
|
/* vm_machdep.c */
|
|
|
|
void vmapbuf __P((struct buf *, vsize_t));
|
|
|
|
void vunmapbuf __P((struct buf *, vsize_t));
|
|
|
|
void pagemove __P((caddr_t, caddr_t, size_t));
|
|
|
|
#ifndef cpu_swapin
|
|
|
|
void cpu_swapin __P((struct proc *));
|
|
|
|
#endif
|
|
|
|
#ifndef cpu_swapout
|
|
|
|
void cpu_swapout __P((struct proc *));
|
|
|
|
#endif
|
|
|
|
|
1998-02-05 09:25:08 +03:00
|
|
|
/* uvm_aobj.c */
|
1998-08-13 06:10:37 +04:00
|
|
|
struct uvm_object *uao_create __P((vsize_t, int));
|
1998-02-05 09:25:08 +03:00
|
|
|
void uao_detach __P((struct uvm_object *));
|
2000-01-11 09:57:49 +03:00
|
|
|
void uao_detach_locked __P((struct uvm_object *));
|
1998-02-05 09:25:08 +03:00
|
|
|
void uao_reference __P((struct uvm_object *));
|
2000-01-11 09:57:49 +03:00
|
|
|
void uao_reference_locked __P((struct uvm_object *));
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
/* uvm_fault.c */
|
1998-08-13 06:10:37 +04:00
|
|
|
int uvm_fault __P((vm_map_t, vaddr_t,
|
1998-03-09 03:58:55 +03:00
|
|
|
vm_fault_t, vm_prot_t));
|
1998-02-05 09:25:08 +03:00
|
|
|
/* handle a page fault */
|
|
|
|
|
|
|
|
/* uvm_glue.c */
|
|
|
|
#if defined(KGDB)
|
1998-05-09 19:04:39 +04:00
|
|
|
void uvm_chgkprot __P((caddr_t, size_t, int));
|
1998-02-05 09:25:08 +03:00
|
|
|
#endif
|
1999-05-14 01:58:32 +04:00
|
|
|
void uvm_fork __P((struct proc *, struct proc *, boolean_t,
|
2000-05-28 09:48:59 +04:00
|
|
|
void *, size_t, void (*)(void *), void *));
|
1998-09-09 03:44:21 +04:00
|
|
|
void uvm_exit __P((struct proc *));
|
1998-02-05 09:25:08 +03:00
|
|
|
void uvm_init_limits __P((struct proc *));
|
1998-05-09 19:04:39 +04:00
|
|
|
boolean_t uvm_kernacc __P((caddr_t, size_t, int));
|
1998-03-30 10:24:42 +04:00
|
|
|
__dead void uvm_scheduler __P((void)) __attribute__((noreturn));
|
1998-02-05 09:25:08 +03:00
|
|
|
void uvm_swapin __P((struct proc *));
|
1998-05-09 19:04:39 +04:00
|
|
|
boolean_t uvm_useracc __P((caddr_t, size_t, int));
|
1999-06-17 19:47:22 +04:00
|
|
|
int uvm_vslock __P((struct proc *, caddr_t, size_t,
|
1999-05-26 05:05:24 +04:00
|
|
|
vm_prot_t));
|
1998-05-09 19:04:39 +04:00
|
|
|
void uvm_vsunlock __P((struct proc *, caddr_t, size_t));
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
|
|
|
|
/* uvm_init.c */
|
|
|
|
void uvm_init __P((void));
|
|
|
|
/* init the uvm system */
|
|
|
|
|
|
|
|
/* uvm_io.c */
|
|
|
|
int uvm_io __P((vm_map_t, struct uio *));
|
|
|
|
|
|
|
|
/* uvm_km.c */
|
1998-08-13 06:10:37 +04:00
|
|
|
vaddr_t uvm_km_alloc1 __P((vm_map_t, vsize_t, boolean_t));
|
|
|
|
void uvm_km_free __P((vm_map_t, vaddr_t, vsize_t));
|
|
|
|
void uvm_km_free_wakeup __P((vm_map_t, vaddr_t,
|
|
|
|
vsize_t));
|
|
|
|
vaddr_t uvm_km_kmemalloc __P((vm_map_t, struct uvm_object *,
|
|
|
|
vsize_t, int));
|
|
|
|
struct vm_map *uvm_km_suballoc __P((vm_map_t, vaddr_t *,
|
1999-05-26 23:16:28 +04:00
|
|
|
vaddr_t *, vsize_t, int,
|
1998-02-08 09:15:53 +03:00
|
|
|
boolean_t, vm_map_t));
|
1998-08-13 06:10:37 +04:00
|
|
|
vaddr_t uvm_km_valloc __P((vm_map_t, vsize_t));
|
|
|
|
vaddr_t uvm_km_valloc_wait __P((vm_map_t, vsize_t));
|
|
|
|
vaddr_t uvm_km_alloc_poolpage1 __P((vm_map_t,
|
1998-08-29 00:05:48 +04:00
|
|
|
struct uvm_object *, boolean_t));
|
1998-08-13 06:10:37 +04:00
|
|
|
void uvm_km_free_poolpage1 __P((vm_map_t, vaddr_t));
|
1998-02-05 09:25:08 +03:00
|
|
|
|
1998-08-29 00:05:48 +04:00
|
|
|
#define uvm_km_alloc_poolpage(waitok) uvm_km_alloc_poolpage1(kmem_map, \
|
|
|
|
uvmexp.kmem_object, (waitok))
|
1998-08-01 00:46:36 +04:00
|
|
|
#define uvm_km_free_poolpage(addr) uvm_km_free_poolpage1(kmem_map, (addr))
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
/* uvm_map.c */
|
1998-08-13 06:10:37 +04:00
|
|
|
int uvm_map __P((vm_map_t, vaddr_t *, vsize_t,
|
2000-03-27 00:54:45 +04:00
|
|
|
struct uvm_object *, voff_t, uvm_flag_t));
|
1998-08-13 06:10:37 +04:00
|
|
|
int uvm_map_pageable __P((vm_map_t, vaddr_t,
|
1999-07-18 01:35:49 +04:00
|
|
|
vaddr_t, boolean_t, int));
|
1999-06-16 03:27:47 +04:00
|
|
|
int uvm_map_pageable_all __P((vm_map_t, int, vsize_t));
|
1998-08-13 06:10:37 +04:00
|
|
|
boolean_t uvm_map_checkprot __P((vm_map_t, vaddr_t,
|
|
|
|
vaddr_t, vm_prot_t));
|
|
|
|
int uvm_map_protect __P((vm_map_t, vaddr_t,
|
|
|
|
vaddr_t, vm_prot_t, boolean_t));
|
|
|
|
struct vmspace *uvmspace_alloc __P((vaddr_t, vaddr_t,
|
1998-03-27 04:47:06 +03:00
|
|
|
boolean_t));
|
|
|
|
void uvmspace_init __P((struct vmspace *, struct pmap *,
|
1998-08-13 06:10:37 +04:00
|
|
|
vaddr_t, vaddr_t, boolean_t));
|
1998-02-05 09:25:08 +03:00
|
|
|
void uvmspace_exec __P((struct proc *));
|
|
|
|
struct vmspace *uvmspace_fork __P((struct vmspace *));
|
|
|
|
void uvmspace_free __P((struct vmspace *));
|
|
|
|
void uvmspace_share __P((struct proc *, struct proc *));
|
|
|
|
void uvmspace_unshare __P((struct proc *));
|
|
|
|
|
|
|
|
|
|
|
|
/* uvm_meter.c */
|
|
|
|
void uvm_meter __P((void));
|
|
|
|
int uvm_sysctl __P((int *, u_int, void *, size_t *,
|
|
|
|
void *, size_t, struct proc *));
|
|
|
|
|
|
|
|
/* uvm_mmap.c */
|
1998-08-13 06:10:37 +04:00
|
|
|
int uvm_mmap __P((vm_map_t, vaddr_t *, vsize_t,
|
1998-02-05 09:25:08 +03:00
|
|
|
vm_prot_t, vm_prot_t, int,
|
2000-03-27 00:54:45 +04:00
|
|
|
caddr_t, voff_t, vsize_t));
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
/* uvm_page.c */
|
Add support for multiple memory free lists. There is at least one
default free list, and 0 - N additional free list, in order of descending
priority.
A new page allocation function, uvm_pagealloc_strat(), has been added,
providing three page allocation strategies:
- normal: high -> low priority free list walk, taking the
page off the first free list that has one.
- only: attempt to allocate a page only from the specified free
list, failing if that free list has none available.
- fallback: if `only' fails, fall back on `normal'.
uvm_pagealloc(...) is provided for normal use (and is a synonym for
uvm_pagealloc_strat(..., UVM_PGA_STRAT_NORMAL, 0); the free list argument
is ignored for the `normal' case).
uvm_page_physload() now specified which free list the pages will be
loaded onto. This means that some platforms which have multiple physical
memory segments may define additional vm_physsegs if they wish to break
individual physical segments into differing priorities.
Machine-dependent code must define _at least_ the following constants
in <machine/vmparam.h>:
VM_NFREELIST: the number of free lists the system will have
VM_FREELIST_DEFAULT: the default freelist (should always be 0,
but is defined in machdep code so that it's with all of the
other free list-related constants).
Additional free list names may be defined by machine-dependent code, but
they will only be used by machine-dependent code (e.g. for loading the
vm_physsegs).
1998-07-08 08:28:27 +04:00
|
|
|
struct vm_page *uvm_pagealloc_strat __P((struct uvm_object *,
|
2000-03-27 00:54:45 +04:00
|
|
|
voff_t, struct vm_anon *, int, int, int));
|
1999-04-11 08:04:04 +04:00
|
|
|
#define uvm_pagealloc(obj, off, anon, flags) \
|
|
|
|
uvm_pagealloc_strat((obj), (off), (anon), (flags), \
|
|
|
|
UVM_PGA_STRAT_NORMAL, 0)
|
1998-02-05 09:25:08 +03:00
|
|
|
void uvm_pagerealloc __P((struct vm_page *,
|
2000-03-27 00:54:45 +04:00
|
|
|
struct uvm_object *, voff_t));
|
1998-08-13 06:10:37 +04:00
|
|
|
/* Actually, uvm_page_physload takes PF#s which need their own type */
|
1999-12-30 19:09:47 +03:00
|
|
|
void uvm_page_physload __P((paddr_t, paddr_t,
|
|
|
|
paddr_t, paddr_t, int));
|
1998-02-05 09:25:08 +03:00
|
|
|
void uvm_setpagesize __P((void));
|
|
|
|
|
|
|
|
/* uvm_pdaemon.c */
|
|
|
|
void uvm_pageout __P((void));
|
|
|
|
|
|
|
|
/* uvm_pglist.c */
|
1998-08-13 06:10:37 +04:00
|
|
|
int uvm_pglistalloc __P((psize_t, paddr_t,
|
|
|
|
paddr_t, paddr_t, paddr_t,
|
1998-02-05 09:25:08 +03:00
|
|
|
struct pglist *, int, int));
|
|
|
|
void uvm_pglistfree __P((struct pglist *));
|
|
|
|
|
|
|
|
/* uvm_swap.c */
|
|
|
|
void uvm_swap_init __P((void));
|
|
|
|
|
|
|
|
/* uvm_unix.c */
|
|
|
|
int uvm_coredump __P((struct proc *, struct vnode *,
|
|
|
|
struct ucred *, struct core *));
|
1998-08-13 06:10:37 +04:00
|
|
|
int uvm_grow __P((struct proc *, vaddr_t));
|
1999-12-30 19:09:47 +03:00
|
|
|
/* should only be needed if COMPAT_NETBSD32 is defined */
|
|
|
|
struct core32;
|
|
|
|
int uvm_coredump32 __P((struct proc *, struct vnode *,
|
|
|
|
struct ucred *, struct core32 *));
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
/* uvm_user.c */
|
1998-08-13 06:10:37 +04:00
|
|
|
int uvm_deallocate __P((vm_map_t, vaddr_t, vsize_t));
|
1998-02-05 09:25:08 +03:00
|
|
|
|
|
|
|
/* uvm_vnode.c */
|
2000-03-27 00:54:45 +04:00
|
|
|
void uvm_vnp_setsize __P((struct vnode *, voff_t));
|
1998-02-05 09:25:08 +03:00
|
|
|
void uvm_vnp_sync __P((struct mount *));
|
|
|
|
void uvm_vnp_terminate __P((struct vnode *));
|
|
|
|
/* terminate a uvm/uvn object */
|
|
|
|
boolean_t uvm_vnp_uncache __P((struct vnode *));
|
|
|
|
struct uvm_object *uvn_attach __P((void *, vm_prot_t));
|
|
|
|
|
2000-02-11 22:22:52 +03:00
|
|
|
/* kern_malloc.c */
|
|
|
|
void kmeminit_nkmempages __P((void));
|
|
|
|
void kmeminit __P((void));
|
|
|
|
extern int nkmempages;
|
|
|
|
|
1999-06-21 21:25:11 +04:00
|
|
|
#endif /* _KERNEL */
|
1998-08-13 06:10:37 +04:00
|
|
|
|
1999-06-21 21:25:11 +04:00
|
|
|
#endif /* _UVM_UVM_EXTERN_H_ */
|