Home | History | Annotate | Line # | Download | only in uvm
uvm_page.h revision 1.80
      1  1.80  riastrad /*	$NetBSD: uvm_page.h,v 1.80 2015/03/23 07:59:12 riastradh Exp $	*/
      2   1.1       mrg 
      3  1.26       chs /*
      4   1.1       mrg  * Copyright (c) 1997 Charles D. Cranor and Washington University.
      5  1.26       chs  * Copyright (c) 1991, 1993, The Regents of the University of California.
      6   1.1       mrg  *
      7   1.1       mrg  * All rights reserved.
      8   1.1       mrg  *
      9   1.1       mrg  * This code is derived from software contributed to Berkeley by
     10   1.1       mrg  * The Mach Operating System project at Carnegie-Mellon University.
     11   1.1       mrg  *
     12   1.1       mrg  * Redistribution and use in source and binary forms, with or without
     13   1.1       mrg  * modification, are permitted provided that the following conditions
     14   1.1       mrg  * are met:
     15   1.1       mrg  * 1. Redistributions of source code must retain the above copyright
     16   1.1       mrg  *    notice, this list of conditions and the following disclaimer.
     17   1.1       mrg  * 2. Redistributions in binary form must reproduce the above copyright
     18   1.1       mrg  *    notice, this list of conditions and the following disclaimer in the
     19   1.1       mrg  *    documentation and/or other materials provided with the distribution.
     20  1.71     chuck  * 3. Neither the name of the University nor the names of its contributors
     21   1.1       mrg  *    may be used to endorse or promote products derived from this software
     22   1.1       mrg  *    without specific prior written permission.
     23   1.1       mrg  *
     24   1.1       mrg  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25   1.1       mrg  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26   1.1       mrg  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27   1.1       mrg  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28   1.1       mrg  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29   1.1       mrg  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30   1.1       mrg  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31   1.1       mrg  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32   1.1       mrg  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33   1.1       mrg  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34   1.1       mrg  * SUCH DAMAGE.
     35   1.1       mrg  *
     36   1.1       mrg  *	@(#)vm_page.h   7.3 (Berkeley) 4/21/91
     37   1.3       mrg  * from: Id: uvm_page.h,v 1.1.2.6 1998/02/04 02:31:42 chuck Exp
     38   1.1       mrg  *
     39   1.1       mrg  *
     40   1.1       mrg  * Copyright (c) 1987, 1990 Carnegie-Mellon University.
     41   1.1       mrg  * All rights reserved.
     42  1.26       chs  *
     43   1.1       mrg  * Permission to use, copy, modify and distribute this software and
     44   1.1       mrg  * its documentation is hereby granted, provided that both the copyright
     45   1.1       mrg  * notice and this permission notice appear in all copies of the
     46   1.1       mrg  * software, derivative works or modified versions, and any portions
     47   1.1       mrg  * thereof, and that both notices appear in supporting documentation.
     48  1.26       chs  *
     49  1.26       chs  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     50  1.26       chs  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
     51   1.1       mrg  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     52  1.26       chs  *
     53   1.1       mrg  * Carnegie Mellon requests users of this software to return to
     54   1.1       mrg  *
     55   1.1       mrg  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     56   1.1       mrg  *  School of Computer Science
     57   1.1       mrg  *  Carnegie Mellon University
     58   1.1       mrg  *  Pittsburgh PA 15213-3890
     59   1.1       mrg  *
     60   1.1       mrg  * any improvements or extensions that they make and grant Carnegie the
     61   1.1       mrg  * rights to redistribute these changes.
     62   1.1       mrg  */
     63   1.1       mrg 
     64   1.4     perry #ifndef _UVM_UVM_PAGE_H_
     65   1.4     perry #define _UVM_UVM_PAGE_H_
     66   1.4     perry 
     67  1.74     rmind #include <uvm/uvm_extern.h>
     68  1.74     rmind #include <uvm/uvm_pglist.h>
     69   1.1       mrg 
     70  1.74     rmind #include <sys/rbtree.h>
     71  1.16       mrg 
     72  1.16       mrg /*
     73  1.74     rmind  * Management of resident (logical) pages.
     74  1.16       mrg  *
     75  1.74     rmind  * Each resident page has a vm_page structure, indexed by page number.
     76  1.74     rmind  * There are several lists in the structure:
     77  1.16       mrg  *
     78  1.74     rmind  * - A red-black tree rooted with the containing object is used to
     79  1.74     rmind  *   quickly perform object+offset lookups.
     80  1.74     rmind  * - A list of all pages for a given object, for a quick deactivation
     81  1.74     rmind  *   at a time of deallocation.
     82  1.74     rmind  * - An ordered list of pages due for pageout.
     83  1.74     rmind  *
     84  1.74     rmind  * In addition, the structure contains the object and offset to which
     85  1.74     rmind  * this page belongs (for pageout) and sundry status bits.
     86  1.74     rmind  *
     87  1.74     rmind  * Note that the page structure has no lock of its own.  The page is
     88  1.74     rmind  * generally protected by its owner's lock (UVM object or amap/anon).
     89  1.74     rmind  * It should be noted that UVM has to serialize pmap(9) operations on
     90  1.74     rmind  * the managed pages, e.g. for pmap_enter() calls.  Hence, the lock
     91  1.74     rmind  * order is as follows:
     92  1.74     rmind  *
     93  1.74     rmind  *	[vmpage-owner-lock] ->
     94  1.74     rmind  *		any pmap locks (e.g. PV hash lock)
     95  1.74     rmind  *
     96  1.74     rmind  * Since the kernel is always self-consistent, no serialization is
     97  1.74     rmind  * required for unmanaged mappings, e.g. for pmap_kenter_pa() calls.
     98  1.74     rmind  *
     99  1.74     rmind  * Field markings and the corresponding locks:
    100  1.74     rmind  *
    101  1.77  riastrad  * f:	free page queue lock, uvm_fpageqlock
    102  1.77  riastrad  * o:	page owner (uvm_object::vmobjlock, vm_amap::am_lock, vm_anon::an_lock)
    103  1.77  riastrad  * p:	page queue lock, uvm_pageqlock
    104  1.77  riastrad  * o,p:	o|p for read, o&p for write
    105  1.77  riastrad  * w:	wired page queue or uvm_pglistalloc:
    106  1.77  riastrad  *	  => wired page queue: o&p to change, stable from wire to unwire
    107  1.77  riastrad  *		XXX What about concurrent or nested wire?
    108  1.77  riastrad  *	  => uvm_pglistalloc: owned by caller
    109  1.74     rmind  * ?:	locked by pmap or assumed page owner's lock
    110  1.16       mrg  *
    111  1.74     rmind  * UVM and pmap(9) may use uvm_page_locked_p() to assert whether the
    112  1.74     rmind  * page owner's lock is acquired.
    113  1.77  riastrad  *
    114  1.80  riastrad  * A page can have one of four identities:
    115  1.77  riastrad  *
    116  1.77  riastrad  * o free
    117  1.77  riastrad  *   => pageq.list is entry on global free page queue
    118  1.77  riastrad  *   => listq.list is entry on per-CPU free page queue
    119  1.77  riastrad  *   => uanon is unused (or (void *)0xdeadbeef for DEBUG)
    120  1.77  riastrad  *   => uobject is unused (or (void *)0xdeadbeef for DEBUG)
    121  1.77  riastrad  *   => PQ_FREE is set in pqflags
    122  1.77  riastrad  * o owned by a uvm_object
    123  1.77  riastrad  *   => pageq.queue is entry on wired page queue, if any
    124  1.77  riastrad  *   => listq.queue is entry on list of pages in object
    125  1.78  riastrad  *   => uanon is NULL or the vm_anon to which it has been O->A loaned
    126  1.77  riastrad  *   => uobject is owner
    127  1.77  riastrad  * o owned by a vm_anon
    128  1.77  riastrad  *   => pageq is unused (XXX correct?)
    129  1.77  riastrad  *   => listq is unused (XXX correct?)
    130  1.77  riastrad  *   => uanon is owner
    131  1.77  riastrad  *   => uobject is NULL
    132  1.77  riastrad  *   => PQ_ANON is set in pqflags
    133  1.77  riastrad  * o allocated by uvm_pglistalloc
    134  1.77  riastrad  *   => pageq.queue is entry on resulting pglist, owned by caller
    135  1.77  riastrad  *   => listq is unused (XXX correct?)
    136  1.77  riastrad  *   => uanon is unused
    137  1.77  riastrad  *   => uobject is unused
    138  1.77  riastrad  *
    139  1.77  riastrad  * The following transitions are allowed:
    140  1.77  riastrad  *
    141  1.77  riastrad  * - uvm_pagealloc: free -> owned by a uvm_object/vm_anon
    142  1.77  riastrad  * - uvm_pagefree: owned by a uvm_object/vm_anon -> free
    143  1.77  riastrad  * - uvm_pglistalloc: free -> allocated by uvm_pglistalloc
    144  1.77  riastrad  * - uvm_pglistfree: allocated by uvm_pglistalloc -> free
    145  1.16       mrg  */
    146  1.16       mrg 
    147  1.16       mrg struct vm_page {
    148  1.74     rmind 	struct rb_node		rb_node;	/* o: tree of pages in obj */
    149  1.54        ad 
    150  1.54        ad 	union {
    151  1.77  riastrad 		TAILQ_ENTRY(vm_page) queue;	/* w: wired page queue
    152  1.77  riastrad 						 * or uvm_pglistalloc output */
    153  1.77  riastrad 		LIST_ENTRY(vm_page) list;	/* f: global free page queue */
    154  1.77  riastrad 	} pageq;
    155  1.77  riastrad 
    156  1.54        ad 	union {
    157  1.77  riastrad 		TAILQ_ENTRY(vm_page) queue;	/* o: pages in same object */
    158  1.77  riastrad 		LIST_ENTRY(vm_page) list;	/* f: CPU free page queue */
    159  1.77  riastrad 	} listq;
    160  1.18       chs 
    161  1.74     rmind 	struct vm_anon		*uanon;		/* o,p: anon */
    162  1.74     rmind 	struct uvm_object	*uobject;	/* o,p: object */
    163  1.74     rmind 	voff_t			offset;		/* o,p: offset into object */
    164  1.74     rmind 	uint16_t		flags;		/* o: object flags */
    165  1.77  riastrad 	uint16_t		loan_count;	/* o,p: num. active loans */
    166  1.74     rmind 	uint16_t		wire_count;	/* p: wired down map refs */
    167  1.74     rmind 	uint16_t		pqflags;	/* p: page queue flags */
    168  1.18       chs 	paddr_t			phys_addr;	/* physical address of page */
    169  1.21   thorpej 
    170  1.22   thorpej #ifdef __HAVE_VM_PAGE_MD
    171  1.74     rmind 	struct vm_page_md	mdpage;		/* ?: pmap-specific data */
    172  1.22   thorpej #endif
    173  1.21   thorpej 
    174  1.16       mrg #if defined(UVM_PAGE_TRKOWN)
    175  1.18       chs 	/* debugging fields to track page ownership */
    176  1.18       chs 	pid_t			owner;		/* proc that set PG_BUSY */
    177  1.48  perseant 	lwpid_t			lowner;		/* lwp that set PG_BUSY */
    178  1.40       chs 	const char		*owner_tag;	/* why it was set busy */
    179  1.16       mrg #endif
    180  1.16       mrg };
    181  1.16       mrg 
    182  1.16       mrg /*
    183  1.75     rmind  * Overview of UVM page flags.
    184  1.75     rmind  *
    185  1.75     rmind  * Locking notes:
    186  1.75     rmind  *
    187  1.77  riastrad  * PG_, struct vm_page::flags	=> locked by owner
    188  1.77  riastrad  * PQ_, struct vm_page::pqflags	=> locked by uvm_pageqlock
    189  1.77  riastrad  * PQ_FREE			=> additionally locked by uvm_fpageqlock
    190  1.75     rmind  *
    191  1.75     rmind  * Flag descriptions:
    192  1.75     rmind  *
    193  1.75     rmind  * PG_BUSY:
    194  1.75     rmind  *	Page is long-term locked, usually because of I/O (transfer from the
    195  1.75     rmind  *	page memory to the backing store) is in progress.  LWP attempting
    196  1.75     rmind  *	to access the page shall set PG_WANTED and wait.
    197  1.75     rmind  *
    198  1.75     rmind  * PG_WANTED:
    199  1.75     rmind  *	Indicates that the page, which is currently PG_BUSY, is wanted by
    200  1.75     rmind  *	some other LWP.  The page owner (i.e. LWP which set PG_BUSY) is
    201  1.75     rmind  *	responsible to clear both flags and wake up any waiters once it has
    202  1.75     rmind  *	released the long-term lock (PG_BUSY).
    203  1.75     rmind  *
    204  1.75     rmind  * PG_RELEASED:
    205  1.75     rmind  *	Indicates that the page, which is currently PG_BUSY, should be freed
    206  1.75     rmind  *	after the release of long-term lock.  It is responsibility of the
    207  1.75     rmind  *	owning LWP (i.e. which set PG_BUSY) to do it.
    208  1.75     rmind  *
    209  1.75     rmind  * PG_CLEAN:
    210  1.75     rmind  *	Page has not been modified since it was loaded from the backing
    211  1.75     rmind  *	store.  If this flag is not set, page is considered "dirty".
    212  1.75     rmind  *	XXX: Currently it means that the page *might* be clean; will be
    213  1.75     rmind  *	fixed with yamt-pagecache merge.
    214  1.75     rmind  *
    215  1.75     rmind  * PG_FAKE:
    216  1.75     rmind  *	Page has been allocated, but not yet initialised.  The flag is used
    217  1.75     rmind  *	to avoid overwriting of valid data, e.g. to prevent read from the
    218  1.75     rmind  *	backing store when in-core data is newer.
    219  1.75     rmind  *
    220  1.75     rmind  * PG_TABLED:
    221  1.75     rmind  *	Indicates that the page is currently in the object's offset queue,
    222  1.75     rmind  *	and that it should be removed from it once the page is freed.  Used
    223  1.75     rmind  *	diagnostic purposes.
    224  1.75     rmind  *
    225  1.75     rmind  * PG_PAGEOUT:
    226  1.75     rmind  *	Indicates that the page is being paged-out in preparation for
    227  1.75     rmind  *	being freed.
    228  1.75     rmind  *
    229  1.75     rmind  * PG_RDONLY:
    230  1.75     rmind  *	Indicates that the page must be mapped read-only.
    231  1.75     rmind  *
    232  1.75     rmind  * PG_ZERO:
    233  1.75     rmind  *	Indicates that the page has been pre-zeroed.  This flag is only
    234  1.75     rmind  *	set when the page is not in the queues and is cleared when the
    235  1.75     rmind  *	page is placed on the free list.
    236  1.75     rmind  *
    237  1.75     rmind  * PG_MARKER:
    238  1.75     rmind  *	Dummy marker page.
    239  1.75     rmind  */
    240  1.75     rmind 
    241  1.75     rmind #define	PG_BUSY		0x0001
    242  1.75     rmind #define	PG_WANTED	0x0002
    243  1.75     rmind #define	PG_TABLED	0x0004
    244  1.75     rmind #define	PG_CLEAN	0x0008
    245  1.75     rmind #define	PG_PAGEOUT	0x0010
    246  1.75     rmind #define	PG_RELEASED	0x0020
    247  1.75     rmind #define	PG_FAKE		0x0040
    248  1.75     rmind #define	PG_RDONLY	0x0080
    249  1.75     rmind #define	PG_ZERO		0x0100
    250  1.75     rmind #define	PG_MARKER	0x0200
    251  1.18       chs 
    252  1.18       chs #define PG_PAGER1	0x1000		/* pager-specific flag */
    253  1.16       mrg 
    254  1.46      yamt #define	UVM_PGFLAGBITS \
    255  1.46      yamt 	"\20\1BUSY\2WANTED\3TABLED\4CLEAN\5PAGEOUT\6RELEASED\7FAKE\10RDONLY" \
    256  1.60   hannken 	"\11ZERO\12MARKER\15PAGER1"
    257  1.46      yamt 
    258  1.46      yamt #define PQ_FREE		0x0001		/* page is on free list */
    259  1.46      yamt #define PQ_ANON		0x0002		/* page is part of an anon, rather
    260  1.16       mrg 					   than an uvm_object */
    261  1.46      yamt #define PQ_AOBJ		0x0004		/* page is part of an anonymous
    262  1.16       mrg 					   uvm_object */
    263  1.16       mrg #define PQ_SWAPBACKED	(PQ_ANON|PQ_AOBJ)
    264  1.46      yamt #define PQ_READAHEAD	0x0008	/* read-ahead but has not been "hit" yet */
    265  1.46      yamt 
    266  1.46      yamt #define PQ_PRIVATE1	0x0100
    267  1.46      yamt #define PQ_PRIVATE2	0x0200
    268  1.46      yamt #define PQ_PRIVATE3	0x0400
    269  1.46      yamt #define PQ_PRIVATE4	0x0800
    270  1.46      yamt #define PQ_PRIVATE5	0x1000
    271  1.46      yamt #define PQ_PRIVATE6	0x2000
    272  1.46      yamt #define PQ_PRIVATE7	0x4000
    273  1.46      yamt #define PQ_PRIVATE8	0x8000
    274  1.46      yamt 
    275  1.46      yamt #define	UVM_PQFLAGBITS \
    276  1.46      yamt 	"\20\1FREE\2ANON\3AOBJ\4READAHEAD" \
    277  1.46      yamt 	"\11PRIVATE1\12PRIVATE2\13PRIVATE3\14PRIVATE4" \
    278  1.46      yamt 	"\15PRIVATE5\16PRIVATE6\17PRIVATE7\20PRIVATE8"
    279  1.16       mrg 
    280  1.16       mrg /*
    281  1.16       mrg  * physical memory layout structure
    282  1.16       mrg  *
    283  1.16       mrg  * MD vmparam.h must #define:
    284  1.16       mrg  *   VM_PHYSEG_MAX = max number of physical memory segments we support
    285  1.16       mrg  *		   (if this is "1" then we revert to a "contig" case)
    286  1.16       mrg  *   VM_PHYSSEG_STRAT: memory sort/search options (for VM_PHYSEG_MAX > 1)
    287  1.16       mrg  * 	- VM_PSTRAT_RANDOM:   linear search (random order)
    288  1.16       mrg  *	- VM_PSTRAT_BSEARCH:  binary search (sorted by address)
    289  1.16       mrg  *	- VM_PSTRAT_BIGFIRST: linear search (sorted by largest segment first)
    290  1.16       mrg  *      - others?
    291  1.17       mrg  *   XXXCDC: eventually we should purge all left-over global variables...
    292  1.16       mrg  */
    293  1.16       mrg #define VM_PSTRAT_RANDOM	1
    294  1.16       mrg #define VM_PSTRAT_BSEARCH	2
    295  1.16       mrg #define VM_PSTRAT_BIGFIRST	3
    296  1.16       mrg 
    297  1.16       mrg /*
    298  1.45  uebayasi  * vm_physseg: describes one segment of physical memory
    299  1.16       mrg  */
    300  1.16       mrg struct vm_physseg {
    301  1.16       mrg 	paddr_t	start;			/* PF# of first page in segment */
    302  1.16       mrg 	paddr_t	end;			/* (PF# of last page in segment) + 1 */
    303  1.16       mrg 	paddr_t	avail_start;		/* PF# of first free page in segment */
    304  1.16       mrg 	paddr_t	avail_end;		/* (PF# of last free page in segment) +1  */
    305  1.16       mrg 	struct	vm_page *pgs;		/* vm_page structures (from start) */
    306  1.16       mrg 	struct	vm_page *lastpg;	/* vm_page structure for end */
    307  1.70      matt 	int	free_list;		/* which free list they belong on */
    308  1.70      matt 	u_int	start_hint;		/* start looking for free pages here */
    309  1.70      matt 					/* protected by uvm_fpageqlock */
    310  1.22   thorpej #ifdef __HAVE_PMAP_PHYSSEG
    311  1.16       mrg 	struct	pmap_physseg pmseg;	/* pmap specific (MD) data */
    312  1.21   thorpej #endif
    313  1.16       mrg };
    314  1.16       mrg 
    315  1.13   thorpej #ifdef _KERNEL
    316  1.13   thorpej 
    317   1.1       mrg /*
    318  1.15   thorpej  * globals
    319  1.15   thorpej  */
    320  1.15   thorpej 
    321  1.47   thorpej extern bool vm_page_zero_enable;
    322  1.15   thorpej 
    323  1.15   thorpej /*
    324  1.16       mrg  * physical memory config is stored in vm_physmem.
    325  1.16       mrg  */
    326   1.1       mrg 
    327  1.68  uebayasi #define	VM_PHYSMEM_PTR(i)	(&vm_physmem[i])
    328  1.76    martin #if VM_PHYSSEG_MAX == 1
    329  1.76    martin #define VM_PHYSMEM_PTR_SWAP(i, j) /* impossible */
    330  1.76    martin #else
    331  1.68  uebayasi #define VM_PHYSMEM_PTR_SWAP(i, j) \
    332  1.68  uebayasi 	do { vm_physmem[(i)] = vm_physmem[(j)]; } while (0)
    333  1.76    martin #endif
    334  1.62  uebayasi 
    335  1.68  uebayasi extern struct vm_physseg vm_physmem[VM_PHYSSEG_MAX];
    336  1.68  uebayasi extern int vm_nphysseg;
    337  1.15   thorpej 
    338   1.1       mrg /*
    339   1.8     chuck  * prototypes: the following prototypes define the interface to pages
    340   1.1       mrg  */
    341   1.1       mrg 
    342  1.37  junyoung void uvm_page_init(vaddr_t *, vaddr_t *);
    343   1.1       mrg #if defined(UVM_PAGE_TRKOWN)
    344  1.40       chs void uvm_page_own(struct vm_page *, const char *);
    345   1.1       mrg #endif
    346   1.8     chuck #if !defined(PMAP_STEAL_MEMORY)
    347  1.47   thorpej bool uvm_page_physget(paddr_t *);
    348   1.8     chuck #endif
    349  1.37  junyoung void uvm_page_recolor(int);
    350  1.37  junyoung void uvm_pageidlezero(void);
    351  1.37  junyoung 
    352  1.43      yamt void uvm_pageactivate(struct vm_page *);
    353  1.37  junyoung vaddr_t uvm_pageboot_alloc(vsize_t);
    354  1.43      yamt void uvm_pagecopy(struct vm_page *, struct vm_page *);
    355  1.43      yamt void uvm_pagedeactivate(struct vm_page *);
    356  1.43      yamt void uvm_pagedequeue(struct vm_page *);
    357  1.46      yamt void uvm_pageenqueue(struct vm_page *);
    358  1.37  junyoung void uvm_pagefree(struct vm_page *);
    359  1.37  junyoung void uvm_page_unbusy(struct vm_page **, int);
    360  1.43      yamt struct vm_page *uvm_pagelookup(struct uvm_object *, voff_t);
    361  1.43      yamt void uvm_pageunwire(struct vm_page *);
    362  1.43      yamt void uvm_pagewire(struct vm_page *);
    363  1.43      yamt void uvm_pagezero(struct vm_page *);
    364  1.57   thorpej bool uvm_pageismanaged(paddr_t);
    365  1.73     rmind bool uvm_page_locked_p(struct vm_page *);
    366   1.9   thorpej 
    367  1.43      yamt int uvm_page_lookup_freelist(struct vm_page *);
    368  1.16       mrg 
    369  1.64  uebayasi int vm_physseg_find(paddr_t, int *);
    370  1.65  uebayasi struct vm_page *uvm_phys_to_vm_page(paddr_t);
    371  1.65  uebayasi paddr_t uvm_vm_page_to_phys(const struct vm_page *);
    372  1.16       mrg 
    373  1.16       mrg /*
    374  1.16       mrg  * macros
    375  1.16       mrg  */
    376  1.31       chs 
    377  1.56      yamt #define UVM_PAGE_TREE_PENALTY	4	/* XXX: a guess */
    378  1.16       mrg 
    379  1.65  uebayasi #define VM_PAGE_TO_PHYS(entry)	uvm_vm_page_to_phys(entry)
    380  1.20   thorpej 
    381  1.69  uebayasi #ifdef __HAVE_VM_PAGE_MD
    382  1.69  uebayasi #define	VM_PAGE_TO_MD(pg)	(&(pg)->mdpage)
    383  1.69  uebayasi #endif
    384  1.69  uebayasi 
    385  1.20   thorpej /*
    386  1.20   thorpej  * Compute the page color bucket for a given page.
    387  1.20   thorpej  */
    388  1.20   thorpej #define	VM_PGCOLOR_BUCKET(pg) \
    389  1.24   thorpej 	(atop(VM_PAGE_TO_PHYS((pg))) & uvmexp.colormask)
    390  1.16       mrg 
    391  1.65  uebayasi #define	PHYS_TO_VM_PAGE(pa)	uvm_phys_to_vm_page(pa)
    392  1.16       mrg 
    393  1.16       mrg #define VM_PAGE_IS_FREE(entry)  ((entry)->pqflags & PQ_FREE)
    394  1.54        ad #define	VM_FREE_PAGE_TO_CPU(pg)	((struct uvm_cpu *)((uintptr_t)pg->offset))
    395  1.35      yamt 
    396  1.35      yamt #ifdef DEBUG
    397  1.35      yamt void uvm_pagezerocheck(struct vm_page *);
    398  1.35      yamt #endif /* DEBUG */
    399  1.13   thorpej 
    400  1.13   thorpej #endif /* _KERNEL */
    401   1.1       mrg 
    402   1.4     perry #endif /* _UVM_UVM_PAGE_H_ */
    403