Home | History | Annotate | Line # | Download | only in uvm
uvm_page.h revision 1.73.2.11
      1  1.73.2.11      yamt /*	$NetBSD: uvm_page.h,v 1.73.2.11 2012/05/23 10:08:20 yamt 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.73.2.10      yamt #include <uvm/uvm_extern.h>
     68  1.73.2.10      yamt #include <uvm/uvm_pglist.h>
     69       1.16       mrg 
     70       1.16       mrg /*
     71  1.73.2.10      yamt  * Management of resident (logical) pages.
     72       1.16       mrg  *
     73  1.73.2.10      yamt  * Each resident page has a vm_page structure, indexed by page number.
     74  1.73.2.10      yamt  * There are several lists in the structure:
     75       1.16       mrg  *
     76  1.73.2.10      yamt  * - A radix tree rooted with the containing object is used to
     77  1.73.2.10      yamt  *   quickly perform object+offset lookups.
     78  1.73.2.10      yamt  * - An ordered list of pages due for pageout.
     79       1.16       mrg  *
     80  1.73.2.10      yamt  * In addition, the structure contains the object and offset to which
     81  1.73.2.10      yamt  * this page belongs (for pageout) and sundry status bits.
     82       1.16       mrg  *
     83  1.73.2.10      yamt  * Note that the page structure has no lock of its own.  The page is
     84  1.73.2.10      yamt  * generally protected by its owner's lock (UVM object or amap/anon).
     85  1.73.2.10      yamt  * It should be noted that UVM has to serialize pmap(9) operations on
     86  1.73.2.10      yamt  * the managed pages, e.g. for pmap_enter() calls.  Hence, the lock
     87  1.73.2.10      yamt  * order is as follows:
     88       1.16       mrg  *
     89  1.73.2.10      yamt  *	[vmpage-owner-lock] ->
     90  1.73.2.10      yamt  *		any pmap locks (e.g. PV hash lock)
     91  1.73.2.10      yamt  *
     92  1.73.2.10      yamt  * Since the kernel is always self-consistent, no serialization is
     93  1.73.2.10      yamt  * required for unmanaged mappings, e.g. for pmap_kenter_pa() calls.
     94  1.73.2.10      yamt  *
     95  1.73.2.10      yamt  * Field markings and the corresponding locks:
     96       1.16       mrg  *
     97  1.73.2.10      yamt  * o:	page owner's lock (UVM object or amap/anon)
     98  1.73.2.10      yamt  * p:	lock on the page queues
     99  1.73.2.10      yamt  * o|p:	either lock can be acquired
    100  1.73.2.10      yamt  * o&p:	both locks are required
    101  1.73.2.10      yamt  * ?:	locked by pmap or assumed page owner's lock
    102  1.73.2.10      yamt  *
    103  1.73.2.10      yamt  * UVM and pmap(9) may use uvm_page_locked_p() to assert whether the
    104  1.73.2.10      yamt  * page owner's lock is acquired.
    105       1.16       mrg  */
    106       1.16       mrg 
    107       1.16       mrg struct vm_page {
    108       1.54        ad 	union {
    109       1.54        ad 		TAILQ_ENTRY(vm_page) queue;
    110       1.54        ad 		LIST_ENTRY(vm_page) list;
    111  1.73.2.10      yamt 	} pageq;				/* p: queue info for FIFO
    112  1.73.2.10      yamt 						 * queue or free list */
    113   1.73.2.1      yamt 
    114       1.54        ad 	union {
    115   1.73.2.2      yamt 		struct {
    116  1.73.2.10      yamt 			struct vm_anon *o_anon;	/* o,p: anon */
    117  1.73.2.10      yamt 			struct uvm_object *o_object; /* o,p: object */
    118   1.73.2.2      yamt 		} owner;
    119   1.73.2.2      yamt #define uanon	u.owner.o_anon
    120   1.73.2.2      yamt #define	uobject	u.owner.o_object
    121   1.73.2.2      yamt 		LIST_ENTRY(vm_page) cpulist;
    122   1.73.2.2      yamt 	} u;
    123  1.73.2.10      yamt 	voff_t			offset;		/* o,p: offset into object */
    124  1.73.2.10      yamt 	uint16_t		flags;		/* o: object flags */
    125       1.31       chs 	uint16_t		loan_count;	/* number of active loans
    126  1.73.2.10      yamt 						 * o|p: for reading
    127  1.73.2.10      yamt 						 * o&p: for modification */
    128  1.73.2.10      yamt 	uint16_t		wire_count;	/* p: wired down map refs */
    129  1.73.2.10      yamt 	uint16_t		pqflags;	/* p: page queue flags */
    130       1.18       chs 	paddr_t			phys_addr;	/* physical address of page */
    131       1.21   thorpej 
    132       1.22   thorpej #ifdef __HAVE_VM_PAGE_MD
    133  1.73.2.10      yamt 	struct vm_page_md	mdpage;		/* ?: pmap-specific data */
    134       1.22   thorpej #endif
    135       1.21   thorpej 
    136       1.16       mrg #if defined(UVM_PAGE_TRKOWN)
    137       1.18       chs 	/* debugging fields to track page ownership */
    138       1.18       chs 	pid_t			owner;		/* proc that set PG_BUSY */
    139       1.48  perseant 	lwpid_t			lowner;		/* lwp that set PG_BUSY */
    140       1.40       chs 	const char		*owner_tag;	/* why it was set busy */
    141       1.16       mrg #endif
    142       1.16       mrg };
    143       1.16       mrg 
    144       1.16       mrg /*
    145  1.73.2.11      yamt  * Overview of UVM page flags.
    146  1.73.2.11      yamt  *
    147  1.73.2.11      yamt  * Locking notes:
    148  1.73.2.11      yamt  *
    149  1.73.2.11      yamt  * PG_, struct vm_page::flags	=> locked by the owner
    150  1.73.2.11      yamt  * PQ_, struct vm_page::pqflags	=> locked by the page-queue lock
    151  1.73.2.11      yamt  * PQ_FREE			=> additionally locked by free-queue lock
    152  1.73.2.11      yamt  *
    153  1.73.2.11      yamt  * Flag descriptions:
    154  1.73.2.11      yamt  *
    155  1.73.2.11      yamt  * PG_CLEAN:
    156  1.73.2.11      yamt  *	Page is known clean.
    157  1.73.2.11      yamt  *	The contents of the page is consistent with its backing store.
    158  1.73.2.11      yamt  *
    159  1.73.2.11      yamt  * PG_DIRTY:
    160  1.73.2.11      yamt  *	Page is known dirty.
    161  1.73.2.11      yamt  *	To avoid losing data, the contents of the page should be written
    162  1.73.2.11      yamt  *	back to the backing store before freeing the page.
    163  1.73.2.11      yamt  *
    164  1.73.2.11      yamt  * PG_BUSY:
    165  1.73.2.11      yamt  *	Page is long-term locked, usually because of I/O (transfer from the
    166  1.73.2.11      yamt  *	page memory to the backing store) is in progress.  LWP attempting
    167  1.73.2.11      yamt  *	to access the page shall set PG_WANTED and wait.
    168  1.73.2.11      yamt  *
    169  1.73.2.11      yamt  * PG_WANTED:
    170  1.73.2.11      yamt  *	Indicates that the page, which is currently PG_BUSY, is wanted by
    171  1.73.2.11      yamt  *	some other LWP.  The page owner (i.e. LWP which set PG_BUSY) is
    172  1.73.2.11      yamt  *	responsible to clear both flags and wake up any waiters once it has
    173  1.73.2.11      yamt  *	released the long-term lock (PG_BUSY).
    174  1.73.2.11      yamt  *
    175  1.73.2.11      yamt  * PG_PAGEOUT:
    176  1.73.2.11      yamt  *	Indicates that the page is being paged-out in preparation for
    177  1.73.2.11      yamt  *	being freed.
    178  1.73.2.11      yamt  *
    179  1.73.2.11      yamt  * PG_RELEASED:
    180  1.73.2.11      yamt  *	Indicates that the page, which is currently PG_BUSY, should be freed
    181  1.73.2.11      yamt  *	after the release of long-term lock.  It is responsibility of the
    182  1.73.2.11      yamt  *	owning LWP (i.e. which set PG_BUSY) to do it.
    183  1.73.2.11      yamt  *
    184  1.73.2.11      yamt  * PG_FAKE:
    185  1.73.2.11      yamt  *	Page has been allocated, but not yet initialised.  The flag is used
    186  1.73.2.11      yamt  *	to avoid overwriting of valid data, e.g. to prevent read from the
    187  1.73.2.11      yamt  *	backing store when in-core data is newer.
    188  1.73.2.11      yamt  *
    189  1.73.2.11      yamt  * PG_RDONLY:
    190  1.73.2.11      yamt  *	Indicates that the page must be mapped read-only.
    191  1.73.2.11      yamt  *
    192  1.73.2.11      yamt  * PG_ZERO:
    193  1.73.2.11      yamt  *	Indicates that the page has been pre-zeroed.  This flag is only
    194  1.73.2.11      yamt  *	set when the page is not in the queues and is cleared when the
    195  1.73.2.11      yamt  *	page is placed on the free list.
    196  1.73.2.11      yamt  *
    197  1.73.2.11      yamt  * PG_TABLED:
    198  1.73.2.11      yamt  *	Indicates that the page is currently in the object's offset queue,
    199  1.73.2.11      yamt  *	and that it should be removed from it once the page is freed.  Used
    200  1.73.2.11      yamt  *	diagnostic purposes.
    201       1.16       mrg  */
    202       1.16       mrg 
    203       1.16       mrg /*
    204   1.73.2.3      yamt  * if you want to renumber PG_CLEAN and PG_DIRTY, check __CTASSERTs in
    205   1.73.2.3      yamt  * uvm_page_status.c first.
    206       1.16       mrg  */
    207       1.18       chs 
    208   1.73.2.3      yamt #define	PG_CLEAN	0x0001		/* page is known clean */
    209   1.73.2.3      yamt #define	PG_DIRTY	0x0002		/* page is known dirty */
    210   1.73.2.3      yamt #define	PG_BUSY		0x0004		/* page is locked */
    211   1.73.2.3      yamt #define	PG_WANTED	0x0008		/* someone is waiting for page */
    212       1.31       chs #define	PG_PAGEOUT	0x0010		/* page to be freed for pagedaemon */
    213       1.31       chs #define PG_RELEASED	0x0020		/* page to be freed when unbusied */
    214       1.18       chs #define	PG_FAKE		0x0040		/* page is not yet initialized */
    215       1.31       chs #define	PG_RDONLY	0x0080		/* page must be mapped read-only */
    216       1.31       chs #define	PG_ZERO		0x0100		/* page is pre-zero'd */
    217   1.73.2.3      yamt #define	PG_TABLED	0x0200		/* page is in VP table  */
    218       1.18       chs 
    219       1.18       chs #define PG_PAGER1	0x1000		/* pager-specific flag */
    220   1.73.2.8      yamt #define PG_PAGER2	0x2000		/* pager-specific flag */
    221       1.16       mrg 
    222       1.46      yamt #define	UVM_PGFLAGBITS \
    223   1.73.2.3      yamt 	"\20\1CLEAN\2DIRTY\3BUSY\4WANTED" \
    224   1.73.2.3      yamt 	"\5PAGEOUT\6RELEASED\7FAKE\10RDONLY" \
    225   1.73.2.9      yamt 	"\11ZERO\12TABLED" \
    226   1.73.2.8      yamt 	"\15PAGER1\16PAGER2"
    227       1.46      yamt 
    228       1.46      yamt #define PQ_FREE		0x0001		/* page is on free list */
    229       1.46      yamt #define PQ_ANON		0x0002		/* page is part of an anon, rather
    230       1.16       mrg 					   than an uvm_object */
    231       1.46      yamt #define PQ_AOBJ		0x0004		/* page is part of an anonymous
    232       1.16       mrg 					   uvm_object */
    233       1.16       mrg #define PQ_SWAPBACKED	(PQ_ANON|PQ_AOBJ)
    234       1.46      yamt #define PQ_READAHEAD	0x0008	/* read-ahead but has not been "hit" yet */
    235   1.73.2.4      yamt #define	PQ_FILE		0x0010		/* file backed (non-anonymous) */
    236   1.73.2.4      yamt #define	PQ_STAT		(PQ_ANON|PQ_AOBJ|PQ_FILE)
    237       1.46      yamt 
    238       1.46      yamt #define PQ_PRIVATE1	0x0100
    239       1.46      yamt #define PQ_PRIVATE2	0x0200
    240       1.46      yamt #define PQ_PRIVATE3	0x0400
    241       1.46      yamt #define PQ_PRIVATE4	0x0800
    242       1.46      yamt #define PQ_PRIVATE5	0x1000
    243       1.46      yamt #define PQ_PRIVATE6	0x2000
    244       1.46      yamt #define PQ_PRIVATE7	0x4000
    245       1.46      yamt #define PQ_PRIVATE8	0x8000
    246       1.46      yamt 
    247       1.46      yamt #define	UVM_PQFLAGBITS \
    248   1.73.2.4      yamt 	"\20\1FREE\2ANON\3AOBJ\4READAHEAD\5FILE" \
    249       1.46      yamt 	"\11PRIVATE1\12PRIVATE2\13PRIVATE3\14PRIVATE4" \
    250       1.46      yamt 	"\15PRIVATE5\16PRIVATE6\17PRIVATE7\20PRIVATE8"
    251       1.16       mrg 
    252       1.16       mrg /*
    253       1.16       mrg  * physical memory layout structure
    254       1.16       mrg  *
    255       1.16       mrg  * MD vmparam.h must #define:
    256       1.16       mrg  *   VM_PHYSEG_MAX = max number of physical memory segments we support
    257       1.16       mrg  *		   (if this is "1" then we revert to a "contig" case)
    258       1.16       mrg  *   VM_PHYSSEG_STRAT: memory sort/search options (for VM_PHYSEG_MAX > 1)
    259       1.16       mrg  * 	- VM_PSTRAT_RANDOM:   linear search (random order)
    260       1.16       mrg  *	- VM_PSTRAT_BSEARCH:  binary search (sorted by address)
    261       1.16       mrg  *	- VM_PSTRAT_BIGFIRST: linear search (sorted by largest segment first)
    262       1.16       mrg  *      - others?
    263       1.17       mrg  *   XXXCDC: eventually we should purge all left-over global variables...
    264       1.16       mrg  */
    265       1.16       mrg #define VM_PSTRAT_RANDOM	1
    266       1.16       mrg #define VM_PSTRAT_BSEARCH	2
    267       1.16       mrg #define VM_PSTRAT_BIGFIRST	3
    268       1.16       mrg 
    269       1.16       mrg /*
    270       1.45  uebayasi  * vm_physseg: describes one segment of physical memory
    271       1.16       mrg  */
    272       1.16       mrg struct vm_physseg {
    273       1.16       mrg 	paddr_t	start;			/* PF# of first page in segment */
    274       1.16       mrg 	paddr_t	end;			/* (PF# of last page in segment) + 1 */
    275       1.16       mrg 	paddr_t	avail_start;		/* PF# of first free page in segment */
    276       1.16       mrg 	paddr_t	avail_end;		/* (PF# of last free page in segment) +1  */
    277       1.16       mrg 	struct	vm_page *pgs;		/* vm_page structures (from start) */
    278       1.16       mrg 	struct	vm_page *lastpg;	/* vm_page structure for end */
    279       1.70      matt 	int	free_list;		/* which free list they belong on */
    280       1.70      matt 	u_int	start_hint;		/* start looking for free pages here */
    281       1.70      matt 					/* protected by uvm_fpageqlock */
    282       1.22   thorpej #ifdef __HAVE_PMAP_PHYSSEG
    283       1.16       mrg 	struct	pmap_physseg pmseg;	/* pmap specific (MD) data */
    284       1.21   thorpej #endif
    285       1.16       mrg };
    286       1.16       mrg 
    287       1.13   thorpej #ifdef _KERNEL
    288       1.13   thorpej 
    289        1.1       mrg /*
    290       1.15   thorpej  * globals
    291       1.15   thorpej  */
    292       1.15   thorpej 
    293       1.47   thorpej extern bool vm_page_zero_enable;
    294       1.15   thorpej 
    295       1.15   thorpej /*
    296       1.16       mrg  * physical memory config is stored in vm_physmem.
    297       1.16       mrg  */
    298        1.1       mrg 
    299       1.68  uebayasi #define	VM_PHYSMEM_PTR(i)	(&vm_physmem[i])
    300       1.68  uebayasi #define VM_PHYSMEM_PTR_SWAP(i, j) \
    301       1.68  uebayasi 	do { vm_physmem[(i)] = vm_physmem[(j)]; } while (0)
    302       1.62  uebayasi 
    303       1.68  uebayasi extern struct vm_physseg vm_physmem[VM_PHYSSEG_MAX];
    304       1.68  uebayasi extern int vm_nphysseg;
    305       1.15   thorpej 
    306        1.1       mrg /*
    307        1.8     chuck  * prototypes: the following prototypes define the interface to pages
    308        1.1       mrg  */
    309        1.1       mrg 
    310       1.37  junyoung void uvm_page_init(vaddr_t *, vaddr_t *);
    311        1.1       mrg #if defined(UVM_PAGE_TRKOWN)
    312       1.40       chs void uvm_page_own(struct vm_page *, const char *);
    313        1.1       mrg #endif
    314        1.8     chuck #if !defined(PMAP_STEAL_MEMORY)
    315       1.47   thorpej bool uvm_page_physget(paddr_t *);
    316        1.8     chuck #endif
    317       1.37  junyoung void uvm_page_recolor(int);
    318       1.37  junyoung void uvm_pageidlezero(void);
    319       1.37  junyoung 
    320       1.43      yamt void uvm_pageactivate(struct vm_page *);
    321       1.37  junyoung vaddr_t uvm_pageboot_alloc(vsize_t);
    322       1.43      yamt void uvm_pagecopy(struct vm_page *, struct vm_page *);
    323       1.43      yamt void uvm_pagedeactivate(struct vm_page *);
    324       1.43      yamt void uvm_pagedequeue(struct vm_page *);
    325       1.46      yamt void uvm_pageenqueue(struct vm_page *);
    326       1.37  junyoung void uvm_pagefree(struct vm_page *);
    327       1.37  junyoung void uvm_page_unbusy(struct vm_page **, int);
    328       1.43      yamt struct vm_page *uvm_pagelookup(struct uvm_object *, voff_t);
    329       1.43      yamt void uvm_pageunwire(struct vm_page *);
    330       1.43      yamt void uvm_pagewire(struct vm_page *);
    331       1.43      yamt void uvm_pagezero(struct vm_page *);
    332       1.57   thorpej bool uvm_pageismanaged(paddr_t);
    333   1.73.2.1      yamt unsigned int uvm_pagegetdirty(struct vm_page *);
    334   1.73.2.1      yamt void uvm_pagemarkdirty(struct vm_page *, unsigned int);
    335   1.73.2.1      yamt bool uvm_pagecheckdirty(struct vm_page *, bool);
    336   1.73.2.1      yamt bool uvm_pagereadonly_p(struct vm_page *);
    337       1.73     rmind bool uvm_page_locked_p(struct vm_page *);
    338   1.73.2.6      yamt kmutex_t *uvm_page_getlock(struct vm_page *);
    339   1.73.2.1      yamt bool uvm_page_samelock_p(struct vm_page *, struct vm_page *);
    340   1.73.2.1      yamt 
    341   1.73.2.7      yamt struct uvm_cpu;
    342   1.73.2.7      yamt struct uvm_cpu *uvm_cpu_get(void);
    343   1.73.2.7      yamt void uvm_cpu_put(struct uvm_cpu *);
    344   1.73.2.7      yamt 
    345   1.73.2.1      yamt /*
    346   1.73.2.1      yamt  * page dirtiness status for uvm_pagegetdirty and uvm_pagemarkdirty
    347   1.73.2.1      yamt  *
    348   1.73.2.1      yamt  * UNKNOWN means that we need to consult pmap to know if the page is
    349   1.73.2.1      yamt  * dirty or not.
    350   1.73.2.1      yamt  * basically, UVM_PAGE_STATUS_CLEAN implies that the page has no writable
    351   1.73.2.1      yamt  * mapping.
    352   1.73.2.3      yamt  *
    353   1.73.2.3      yamt  * if you want to renumber these, check __CTASSERTs in
    354   1.73.2.3      yamt  * uvm_page_status.c first.
    355   1.73.2.1      yamt  */
    356   1.73.2.1      yamt #define	UVM_PAGE_STATUS_UNKNOWN	0
    357   1.73.2.3      yamt #define	UVM_PAGE_STATUS_CLEAN	1
    358   1.73.2.3      yamt #define	UVM_PAGE_STATUS_DIRTY	2
    359   1.73.2.3      yamt #define	UVM_PAGE_NUM_STATUS	3
    360        1.9   thorpej 
    361       1.43      yamt int uvm_page_lookup_freelist(struct vm_page *);
    362       1.16       mrg 
    363       1.64  uebayasi int vm_physseg_find(paddr_t, int *);
    364       1.65  uebayasi struct vm_page *uvm_phys_to_vm_page(paddr_t);
    365       1.65  uebayasi paddr_t uvm_vm_page_to_phys(const struct vm_page *);
    366       1.16       mrg 
    367       1.16       mrg /*
    368       1.16       mrg  * macros
    369       1.16       mrg  */
    370       1.31       chs 
    371       1.65  uebayasi #define VM_PAGE_TO_PHYS(entry)	uvm_vm_page_to_phys(entry)
    372       1.20   thorpej 
    373       1.69  uebayasi #ifdef __HAVE_VM_PAGE_MD
    374       1.69  uebayasi #define	VM_PAGE_TO_MD(pg)	(&(pg)->mdpage)
    375       1.69  uebayasi #endif
    376       1.69  uebayasi 
    377       1.20   thorpej /*
    378       1.20   thorpej  * Compute the page color bucket for a given page.
    379       1.20   thorpej  */
    380       1.20   thorpej #define	VM_PGCOLOR_BUCKET(pg) \
    381       1.24   thorpej 	(atop(VM_PAGE_TO_PHYS((pg))) & uvmexp.colormask)
    382       1.16       mrg 
    383       1.65  uebayasi #define	PHYS_TO_VM_PAGE(pa)	uvm_phys_to_vm_page(pa)
    384       1.16       mrg 
    385       1.16       mrg #define VM_PAGE_IS_FREE(entry)  ((entry)->pqflags & PQ_FREE)
    386       1.54        ad #define	VM_FREE_PAGE_TO_CPU(pg)	((struct uvm_cpu *)((uintptr_t)pg->offset))
    387       1.35      yamt 
    388       1.35      yamt #ifdef DEBUG
    389       1.35      yamt void uvm_pagezerocheck(struct vm_page *);
    390       1.35      yamt #endif /* DEBUG */
    391       1.13   thorpej 
    392       1.13   thorpej #endif /* _KERNEL */
    393        1.1       mrg 
    394        1.4     perry #endif /* _UVM_UVM_PAGE_H_ */
    395