Home | History | Annotate | Line # | Download | only in uvm
uvm_page.h revision 1.13.2.1
      1  1.13.2.1   bouyer /*	$NetBSD: uvm_page.h,v 1.13.2.1 2000/11/20 18:12:04 bouyer Exp $	*/
      2       1.1      mrg 
      3       1.1      mrg /*
      4       1.1      mrg  * Copyright (c) 1997 Charles D. Cranor and Washington University.
      5       1.1      mrg  * 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.1      mrg  * 3. All advertising materials mentioning features or use of this software
     21       1.1      mrg  *    must display the following acknowledgement:
     22       1.1      mrg  *	This product includes software developed by Charles D. Cranor,
     23       1.1      mrg  *      Washington University, the University of California, Berkeley and
     24       1.1      mrg  *      its contributors.
     25       1.1      mrg  * 4. Neither the name of the University nor the names of its contributors
     26       1.1      mrg  *    may be used to endorse or promote products derived from this software
     27       1.1      mrg  *    without specific prior written permission.
     28       1.1      mrg  *
     29       1.1      mrg  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     30       1.1      mrg  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     31       1.1      mrg  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     32       1.1      mrg  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     33       1.1      mrg  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     34       1.1      mrg  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     35       1.1      mrg  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     36       1.1      mrg  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     37       1.1      mrg  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     38       1.1      mrg  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     39       1.1      mrg  * SUCH DAMAGE.
     40       1.1      mrg  *
     41       1.1      mrg  *	@(#)vm_page.h   7.3 (Berkeley) 4/21/91
     42       1.3      mrg  * from: Id: uvm_page.h,v 1.1.2.6 1998/02/04 02:31:42 chuck Exp
     43       1.1      mrg  *
     44       1.1      mrg  *
     45       1.1      mrg  * Copyright (c) 1987, 1990 Carnegie-Mellon University.
     46       1.1      mrg  * All rights reserved.
     47       1.1      mrg  *
     48       1.1      mrg  * Permission to use, copy, modify and distribute this software and
     49       1.1      mrg  * its documentation is hereby granted, provided that both the copyright
     50       1.1      mrg  * notice and this permission notice appear in all copies of the
     51       1.1      mrg  * software, derivative works or modified versions, and any portions
     52       1.1      mrg  * thereof, and that both notices appear in supporting documentation.
     53       1.1      mrg  *
     54       1.1      mrg  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     55       1.1      mrg  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
     56       1.1      mrg  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     57       1.1      mrg  *
     58       1.1      mrg  * Carnegie Mellon requests users of this software to return to
     59       1.1      mrg  *
     60       1.1      mrg  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     61       1.1      mrg  *  School of Computer Science
     62       1.1      mrg  *  Carnegie Mellon University
     63       1.1      mrg  *  Pittsburgh PA 15213-3890
     64       1.1      mrg  *
     65       1.1      mrg  * any improvements or extensions that they make and grant Carnegie the
     66       1.1      mrg  * rights to redistribute these changes.
     67       1.1      mrg  */
     68       1.1      mrg 
     69       1.4    perry #ifndef _UVM_UVM_PAGE_H_
     70       1.4    perry #define _UVM_UVM_PAGE_H_
     71       1.4    perry 
     72       1.1      mrg /*
     73       1.1      mrg  * uvm_page.h
     74       1.1      mrg  */
     75       1.1      mrg 
     76  1.13.2.1   bouyer /*
     77  1.13.2.1   bouyer  *	Resident memory system definitions.
     78  1.13.2.1   bouyer  */
     79  1.13.2.1   bouyer 
     80  1.13.2.1   bouyer /*
     81  1.13.2.1   bouyer  *	Management of resident (logical) pages.
     82  1.13.2.1   bouyer  *
     83  1.13.2.1   bouyer  *	A small structure is kept for each resident
     84  1.13.2.1   bouyer  *	page, indexed by page number.  Each structure
     85  1.13.2.1   bouyer  *	is an element of several lists:
     86  1.13.2.1   bouyer  *
     87  1.13.2.1   bouyer  *		A hash table bucket used to quickly
     88  1.13.2.1   bouyer  *		perform object/offset lookups
     89  1.13.2.1   bouyer  *
     90  1.13.2.1   bouyer  *		A list of all pages for a given object,
     91  1.13.2.1   bouyer  *		so they can be quickly deactivated at
     92  1.13.2.1   bouyer  *		time of deallocation.
     93  1.13.2.1   bouyer  *
     94  1.13.2.1   bouyer  *		An ordered list of pages due for pageout.
     95  1.13.2.1   bouyer  *
     96  1.13.2.1   bouyer  *	In addition, the structure contains the object
     97  1.13.2.1   bouyer  *	and offset to which this page belongs (for pageout),
     98  1.13.2.1   bouyer  *	and sundry status bits.
     99  1.13.2.1   bouyer  *
    100  1.13.2.1   bouyer  *	Fields in this structure are locked either by the lock on the
    101  1.13.2.1   bouyer  *	object that the page belongs to (O) or by the lock on the page
    102  1.13.2.1   bouyer  *	queues (P) [or both].
    103  1.13.2.1   bouyer  */
    104  1.13.2.1   bouyer 
    105  1.13.2.1   bouyer /*
    106  1.13.2.1   bouyer  * locking note: the mach version of this data structure had bit
    107  1.13.2.1   bouyer  * fields for the flags, and the bit fields were divided into two
    108  1.13.2.1   bouyer  * items (depending on who locked what).  some time, in BSD, the bit
    109  1.13.2.1   bouyer  * fields were dumped and all the flags were lumped into one short.
    110  1.13.2.1   bouyer  * that is fine for a single threaded uniprocessor OS, but bad if you
    111  1.13.2.1   bouyer  * want to actual make use of locking (simple_lock's).  so, we've
    112  1.13.2.1   bouyer  * seperated things back out again.
    113  1.13.2.1   bouyer  *
    114  1.13.2.1   bouyer  * note the page structure has no lock of its own.
    115  1.13.2.1   bouyer  */
    116  1.13.2.1   bouyer 
    117  1.13.2.1   bouyer #include <uvm/uvm_extern.h>
    118  1.13.2.1   bouyer #include <uvm/uvm_pglist.h>
    119  1.13.2.1   bouyer 
    120  1.13.2.1   bouyer struct vm_page {
    121  1.13.2.1   bouyer   TAILQ_ENTRY(vm_page)	pageq;		/* queue info for FIFO
    122  1.13.2.1   bouyer 					 * queue or free list (P) */
    123  1.13.2.1   bouyer   TAILQ_ENTRY(vm_page)	hashq;		/* hash table links (O)*/
    124  1.13.2.1   bouyer   TAILQ_ENTRY(vm_page)	listq;		/* pages in same object (O)*/
    125  1.13.2.1   bouyer 
    126  1.13.2.1   bouyer   struct vm_anon	*uanon;		/* anon (O,P) */
    127  1.13.2.1   bouyer   struct uvm_object	*uobject;	/* object (O,P) */
    128  1.13.2.1   bouyer   voff_t		offset;		/* offset into object (O,P) */
    129  1.13.2.1   bouyer 
    130  1.13.2.1   bouyer   u_short		flags;		/* object flags [O] */
    131  1.13.2.1   bouyer   u_short		version;	/* version count [O] */
    132  1.13.2.1   bouyer   u_short		wire_count;	/* wired down map refs [P] */
    133  1.13.2.1   bouyer   u_short 		pqflags;	/* page queue flags [P] */
    134  1.13.2.1   bouyer   u_int			loan_count;	/* number of active loans
    135  1.13.2.1   bouyer 					 * to read: [O or P]
    136  1.13.2.1   bouyer 					 * to modify: [O _and_ P] */
    137  1.13.2.1   bouyer   paddr_t		phys_addr;	/* physical address of page */
    138  1.13.2.1   bouyer #if defined(UVM_PAGE_TRKOWN)
    139  1.13.2.1   bouyer   /* debugging fields to track page ownership */
    140  1.13.2.1   bouyer   pid_t			owner;		/* proc that set PG_BUSY */
    141  1.13.2.1   bouyer   char			*owner_tag;	/* why it was set busy */
    142  1.13.2.1   bouyer #endif
    143  1.13.2.1   bouyer };
    144  1.13.2.1   bouyer 
    145  1.13.2.1   bouyer /*
    146  1.13.2.1   bouyer  * These are the flags defined for vm_page.
    147  1.13.2.1   bouyer  *
    148  1.13.2.1   bouyer  * Note: PG_FILLED and PG_DIRTY are added for the filesystems.
    149  1.13.2.1   bouyer  */
    150  1.13.2.1   bouyer 
    151  1.13.2.1   bouyer /*
    152  1.13.2.1   bouyer  * locking rules:
    153  1.13.2.1   bouyer  *   PG_ ==> locked by object lock
    154  1.13.2.1   bouyer  *   PQ_ ==> lock by page queue lock
    155  1.13.2.1   bouyer  *   PQ_FREE is locked by free queue lock and is mutex with all other PQs
    156  1.13.2.1   bouyer  *
    157  1.13.2.1   bouyer  * PG_ZERO is used to indicate that a page has been pre-zero'd.  This flag
    158  1.13.2.1   bouyer  * is only set when the page is on no queues, and is cleared when the page
    159  1.13.2.1   bouyer  * is placed on the free list.
    160  1.13.2.1   bouyer  *
    161  1.13.2.1   bouyer  * possible deadwood: PG_FAULTING, PQ_LAUNDRY
    162  1.13.2.1   bouyer  */
    163  1.13.2.1   bouyer #define	PG_CLEAN	0x0008		/* page has not been modified */
    164  1.13.2.1   bouyer #define	PG_BUSY		0x0010		/* page is in transit  */
    165  1.13.2.1   bouyer #define	PG_WANTED	0x0020		/* someone is waiting for page */
    166  1.13.2.1   bouyer #define	PG_TABLED	0x0040		/* page is in VP table  */
    167  1.13.2.1   bouyer #define	PG_ZERO		0x0100		/* page is pre-zero'd */
    168  1.13.2.1   bouyer #define	PG_FAKE		0x0200		/* page is placeholder for pagein */
    169  1.13.2.1   bouyer #define	PG_FILLED	0x0400		/* client flag to set when filled */
    170  1.13.2.1   bouyer #define	PG_DIRTY	0x0800		/* client flag to set when dirty */
    171  1.13.2.1   bouyer #define PG_RELEASED	0x1000		/* page released while paging */
    172  1.13.2.1   bouyer #define	PG_FAULTING	0x2000		/* page is being faulted in */
    173  1.13.2.1   bouyer #define PG_CLEANCHK	0x4000		/* clean bit has been checked */
    174  1.13.2.1   bouyer 
    175  1.13.2.1   bouyer #define PQ_FREE		0x0001		/* page is on free list */
    176  1.13.2.1   bouyer #define PQ_INACTIVE	0x0002		/* page is in inactive list */
    177  1.13.2.1   bouyer #define PQ_ACTIVE	0x0004		/* page is in active list */
    178  1.13.2.1   bouyer #define PQ_LAUNDRY	0x0008		/* page is being cleaned now */
    179  1.13.2.1   bouyer #define PQ_ANON		0x0010		/* page is part of an anon, rather
    180  1.13.2.1   bouyer 					   than an uvm_object */
    181  1.13.2.1   bouyer #define PQ_AOBJ		0x0020		/* page is part of an anonymous
    182  1.13.2.1   bouyer 					   uvm_object */
    183  1.13.2.1   bouyer #define PQ_SWAPBACKED	(PQ_ANON|PQ_AOBJ)
    184  1.13.2.1   bouyer 
    185  1.13.2.1   bouyer /*
    186  1.13.2.1   bouyer  * physical memory layout structure
    187  1.13.2.1   bouyer  *
    188  1.13.2.1   bouyer  * MD vmparam.h must #define:
    189  1.13.2.1   bouyer  *   VM_PHYSEG_MAX = max number of physical memory segments we support
    190  1.13.2.1   bouyer  *		   (if this is "1" then we revert to a "contig" case)
    191  1.13.2.1   bouyer  *   VM_PHYSSEG_STRAT: memory sort/search options (for VM_PHYSEG_MAX > 1)
    192  1.13.2.1   bouyer  * 	- VM_PSTRAT_RANDOM:   linear search (random order)
    193  1.13.2.1   bouyer  *	- VM_PSTRAT_BSEARCH:  binary search (sorted by address)
    194  1.13.2.1   bouyer  *	- VM_PSTRAT_BIGFIRST: linear search (sorted by largest segment first)
    195  1.13.2.1   bouyer  *      - others?
    196  1.13.2.1   bouyer  *   XXXCDC: eventually we should purge all left-over global variables...
    197  1.13.2.1   bouyer  */
    198  1.13.2.1   bouyer #define VM_PSTRAT_RANDOM	1
    199  1.13.2.1   bouyer #define VM_PSTRAT_BSEARCH	2
    200  1.13.2.1   bouyer #define VM_PSTRAT_BIGFIRST	3
    201  1.13.2.1   bouyer 
    202  1.13.2.1   bouyer /*
    203  1.13.2.1   bouyer  * vm_physmemseg: describes one segment of physical memory
    204  1.13.2.1   bouyer  */
    205  1.13.2.1   bouyer struct vm_physseg {
    206  1.13.2.1   bouyer 	paddr_t	start;			/* PF# of first page in segment */
    207  1.13.2.1   bouyer 	paddr_t	end;			/* (PF# of last page in segment) + 1 */
    208  1.13.2.1   bouyer 	paddr_t	avail_start;		/* PF# of first free page in segment */
    209  1.13.2.1   bouyer 	paddr_t	avail_end;		/* (PF# of last free page in segment) +1  */
    210  1.13.2.1   bouyer 	int	free_list;		/* which free list they belong on */
    211  1.13.2.1   bouyer 	struct	vm_page *pgs;		/* vm_page structures (from start) */
    212  1.13.2.1   bouyer 	struct	vm_page *lastpg;	/* vm_page structure for end */
    213  1.13.2.1   bouyer 	struct	pmap_physseg pmseg;	/* pmap specific (MD) data */
    214  1.13.2.1   bouyer };
    215  1.13.2.1   bouyer 
    216      1.13  thorpej #ifdef _KERNEL
    217      1.13  thorpej 
    218       1.1      mrg /*
    219  1.13.2.1   bouyer  * globals
    220       1.1      mrg  */
    221       1.1      mrg 
    222  1.13.2.1   bouyer extern boolean_t vm_page_zero_enable;
    223       1.1      mrg 
    224  1.13.2.1   bouyer /*
    225  1.13.2.1   bouyer  *	Each pageable resident page falls into one of three lists:
    226  1.13.2.1   bouyer  *
    227  1.13.2.1   bouyer  *	free
    228  1.13.2.1   bouyer  *		Available for allocation now.
    229  1.13.2.1   bouyer  *	inactive
    230  1.13.2.1   bouyer  *		Not referenced in any map, but still has an
    231  1.13.2.1   bouyer  *		object/offset-page mapping, and may be dirty.
    232  1.13.2.1   bouyer  *		This is the list of pages that should be
    233  1.13.2.1   bouyer  *		paged out next.
    234  1.13.2.1   bouyer  *	active
    235  1.13.2.1   bouyer  *		A list of pages which have been placed in
    236  1.13.2.1   bouyer  *		at least one physical map.  This list is
    237  1.13.2.1   bouyer  *		ordered, in LRU-like fashion.
    238  1.13.2.1   bouyer  */
    239  1.13.2.1   bouyer 
    240  1.13.2.1   bouyer extern
    241  1.13.2.1   bouyer struct pglist	vm_page_queue_free;	/* memory free queue */
    242  1.13.2.1   bouyer extern
    243  1.13.2.1   bouyer struct pglist	vm_page_queue_active;	/* active memory queue */
    244  1.13.2.1   bouyer extern
    245  1.13.2.1   bouyer struct pglist	vm_page_queue_inactive;	/* inactive memory queue */
    246  1.13.2.1   bouyer 
    247  1.13.2.1   bouyer /*
    248  1.13.2.1   bouyer  * physical memory config is stored in vm_physmem.
    249  1.13.2.1   bouyer  */
    250  1.13.2.1   bouyer 
    251  1.13.2.1   bouyer extern struct vm_physseg vm_physmem[VM_PHYSSEG_MAX];
    252  1.13.2.1   bouyer extern int vm_nphysseg;
    253       1.1      mrg 
    254       1.1      mrg /*
    255       1.1      mrg  * handle inline options
    256       1.1      mrg  */
    257       1.1      mrg 
    258       1.1      mrg #ifdef UVM_PAGE_INLINE
    259       1.1      mrg #define PAGE_INLINE static __inline
    260       1.1      mrg #else
    261       1.1      mrg #define PAGE_INLINE /* nothing */
    262       1.1      mrg #endif /* UVM_PAGE_INLINE */
    263       1.1      mrg 
    264       1.1      mrg /*
    265       1.8    chuck  * prototypes: the following prototypes define the interface to pages
    266       1.1      mrg  */
    267       1.1      mrg 
    268      1.10      eeh void uvm_page_init __P((vaddr_t *, vaddr_t *));
    269       1.1      mrg #if defined(UVM_PAGE_TRKOWN)
    270       1.1      mrg void uvm_page_own __P((struct vm_page *, char *));
    271       1.1      mrg #endif
    272       1.8    chuck #if !defined(PMAP_STEAL_MEMORY)
    273      1.10      eeh boolean_t uvm_page_physget __P((paddr_t *));
    274       1.8    chuck #endif
    275       1.1      mrg void uvm_page_rehash __P((void));
    276  1.13.2.1   bouyer void uvm_pageidlezero __P((void));
    277      1.12  thorpej 
    278      1.12  thorpej PAGE_INLINE int uvm_lock_fpageq __P((void));
    279      1.12  thorpej PAGE_INLINE void uvm_unlock_fpageq __P((int));
    280       1.8    chuck 
    281       1.1      mrg PAGE_INLINE void uvm_pageactivate __P((struct vm_page *));
    282      1.10      eeh vaddr_t uvm_pageboot_alloc __P((vsize_t));
    283       1.1      mrg PAGE_INLINE void uvm_pagecopy __P((struct vm_page *, struct vm_page *));
    284       1.1      mrg PAGE_INLINE void uvm_pagedeactivate __P((struct vm_page *));
    285       1.1      mrg void uvm_pagefree __P((struct vm_page *));
    286  1.13.2.1   bouyer PAGE_INLINE struct vm_page *uvm_pagelookup __P((struct uvm_object *, voff_t));
    287       1.1      mrg void uvm_pageremove __P((struct vm_page *));
    288       1.1      mrg /* uvm_pagerename: not needed */
    289       1.1      mrg PAGE_INLINE void uvm_pageunwire __P((struct vm_page *));
    290       1.1      mrg PAGE_INLINE void uvm_pagewait __P((struct vm_page *, int));
    291       1.1      mrg PAGE_INLINE void uvm_pagewake __P((struct vm_page *));
    292       1.7    chuck PAGE_INLINE void uvm_pagewire __P((struct vm_page *));
    293       1.1      mrg PAGE_INLINE void uvm_pagezero __P((struct vm_page *));
    294       1.9  thorpej 
    295       1.9  thorpej PAGE_INLINE int uvm_page_lookup_freelist __P((struct vm_page *));
    296  1.13.2.1   bouyer 
    297  1.13.2.1   bouyer static struct vm_page *PHYS_TO_VM_PAGE __P((paddr_t));
    298  1.13.2.1   bouyer static int vm_physseg_find __P((paddr_t, int *));
    299  1.13.2.1   bouyer 
    300  1.13.2.1   bouyer /*
    301  1.13.2.1   bouyer  * macros
    302  1.13.2.1   bouyer  */
    303  1.13.2.1   bouyer 
    304  1.13.2.1   bouyer #define uvm_lock_pageq()	simple_lock(&uvm.pageqlock)
    305  1.13.2.1   bouyer #define uvm_unlock_pageq()	simple_unlock(&uvm.pageqlock)
    306  1.13.2.1   bouyer 
    307  1.13.2.1   bouyer #define uvm_pagehash(obj,off) \
    308  1.13.2.1   bouyer 	(((unsigned long)obj+(unsigned long)atop(off)) & uvm.page_hashmask)
    309  1.13.2.1   bouyer 
    310  1.13.2.1   bouyer #define	UVM_PAGEZERO_TARGET	(uvmexp.free)
    311  1.13.2.1   bouyer 
    312  1.13.2.1   bouyer #define VM_PAGE_TO_PHYS(entry)	((entry)->phys_addr)
    313  1.13.2.1   bouyer 
    314  1.13.2.1   bouyer /*
    315  1.13.2.1   bouyer  * when VM_PHYSSEG_MAX is 1, we can simplify these functions
    316  1.13.2.1   bouyer  */
    317  1.13.2.1   bouyer 
    318  1.13.2.1   bouyer /*
    319  1.13.2.1   bouyer  * vm_physseg_find: find vm_physseg structure that belongs to a PA
    320  1.13.2.1   bouyer  */
    321  1.13.2.1   bouyer static __inline int
    322  1.13.2.1   bouyer vm_physseg_find(pframe, offp)
    323  1.13.2.1   bouyer 	paddr_t pframe;
    324  1.13.2.1   bouyer 	int	*offp;
    325  1.13.2.1   bouyer {
    326  1.13.2.1   bouyer #if VM_PHYSSEG_MAX == 1
    327  1.13.2.1   bouyer 
    328  1.13.2.1   bouyer 	/* 'contig' case */
    329  1.13.2.1   bouyer 	if (pframe >= vm_physmem[0].start && pframe < vm_physmem[0].end) {
    330  1.13.2.1   bouyer 		if (offp)
    331  1.13.2.1   bouyer 			*offp = pframe - vm_physmem[0].start;
    332  1.13.2.1   bouyer 		return(0);
    333  1.13.2.1   bouyer 	}
    334  1.13.2.1   bouyer 	return(-1);
    335  1.13.2.1   bouyer 
    336  1.13.2.1   bouyer #elif (VM_PHYSSEG_STRAT == VM_PSTRAT_BSEARCH)
    337  1.13.2.1   bouyer 	/* binary search for it */
    338  1.13.2.1   bouyer 	int	start, len, try;
    339  1.13.2.1   bouyer 
    340  1.13.2.1   bouyer 	/*
    341  1.13.2.1   bouyer 	 * if try is too large (thus target is less than than try) we reduce
    342  1.13.2.1   bouyer 	 * the length to trunc(len/2) [i.e. everything smaller than "try"]
    343  1.13.2.1   bouyer 	 *
    344  1.13.2.1   bouyer 	 * if the try is too small (thus target is greater than try) then
    345  1.13.2.1   bouyer 	 * we set the new start to be (try + 1).   this means we need to
    346  1.13.2.1   bouyer 	 * reduce the length to (round(len/2) - 1).
    347  1.13.2.1   bouyer 	 *
    348  1.13.2.1   bouyer 	 * note "adjust" below which takes advantage of the fact that
    349  1.13.2.1   bouyer 	 *  (round(len/2) - 1) == trunc((len - 1) / 2)
    350  1.13.2.1   bouyer 	 * for any value of len we may have
    351  1.13.2.1   bouyer 	 */
    352  1.13.2.1   bouyer 
    353  1.13.2.1   bouyer 	for (start = 0, len = vm_nphysseg ; len != 0 ; len = len / 2) {
    354  1.13.2.1   bouyer 		try = start + (len / 2);	/* try in the middle */
    355  1.13.2.1   bouyer 
    356  1.13.2.1   bouyer 		/* start past our try? */
    357  1.13.2.1   bouyer 		if (pframe >= vm_physmem[try].start) {
    358  1.13.2.1   bouyer 			/* was try correct? */
    359  1.13.2.1   bouyer 			if (pframe < vm_physmem[try].end) {
    360  1.13.2.1   bouyer 				if (offp)
    361  1.13.2.1   bouyer 					*offp = pframe - vm_physmem[try].start;
    362  1.13.2.1   bouyer 				return(try);            /* got it */
    363  1.13.2.1   bouyer 			}
    364  1.13.2.1   bouyer 			start = try + 1;	/* next time, start here */
    365  1.13.2.1   bouyer 			len--;			/* "adjust" */
    366  1.13.2.1   bouyer 		} else {
    367  1.13.2.1   bouyer 			/*
    368  1.13.2.1   bouyer 			 * pframe before try, just reduce length of
    369  1.13.2.1   bouyer 			 * region, done in "for" loop
    370  1.13.2.1   bouyer 			 */
    371  1.13.2.1   bouyer 		}
    372  1.13.2.1   bouyer 	}
    373  1.13.2.1   bouyer 	return(-1);
    374  1.13.2.1   bouyer 
    375  1.13.2.1   bouyer #else
    376  1.13.2.1   bouyer 	/* linear search for it */
    377  1.13.2.1   bouyer 	int	lcv;
    378  1.13.2.1   bouyer 
    379  1.13.2.1   bouyer 	for (lcv = 0; lcv < vm_nphysseg; lcv++) {
    380  1.13.2.1   bouyer 		if (pframe >= vm_physmem[lcv].start &&
    381  1.13.2.1   bouyer 		    pframe < vm_physmem[lcv].end) {
    382  1.13.2.1   bouyer 			if (offp)
    383  1.13.2.1   bouyer 				*offp = pframe - vm_physmem[lcv].start;
    384  1.13.2.1   bouyer 			return(lcv);		   /* got it */
    385  1.13.2.1   bouyer 		}
    386  1.13.2.1   bouyer 	}
    387  1.13.2.1   bouyer 	return(-1);
    388  1.13.2.1   bouyer 
    389  1.13.2.1   bouyer #endif
    390  1.13.2.1   bouyer }
    391  1.13.2.1   bouyer 
    392  1.13.2.1   bouyer 
    393  1.13.2.1   bouyer /*
    394  1.13.2.1   bouyer  * IS_VM_PHYSADDR: only used my mips/pmax/pica trap/pmap.
    395  1.13.2.1   bouyer  */
    396  1.13.2.1   bouyer 
    397  1.13.2.1   bouyer #define IS_VM_PHYSADDR(PA) (vm_physseg_find(atop(PA), NULL) != -1)
    398  1.13.2.1   bouyer 
    399  1.13.2.1   bouyer /*
    400  1.13.2.1   bouyer  * PHYS_TO_VM_PAGE: find vm_page for a PA.   used by MI code to get vm_pages
    401  1.13.2.1   bouyer  * back from an I/O mapping (ugh!).   used in some MD code as well.
    402  1.13.2.1   bouyer  */
    403  1.13.2.1   bouyer static __inline struct vm_page *
    404  1.13.2.1   bouyer PHYS_TO_VM_PAGE(pa)
    405  1.13.2.1   bouyer 	paddr_t pa;
    406  1.13.2.1   bouyer {
    407  1.13.2.1   bouyer 	paddr_t pf = atop(pa);
    408  1.13.2.1   bouyer 	int	off;
    409  1.13.2.1   bouyer 	int	psi;
    410  1.13.2.1   bouyer 
    411  1.13.2.1   bouyer 	psi = vm_physseg_find(pf, &off);
    412  1.13.2.1   bouyer 	if (psi != -1)
    413  1.13.2.1   bouyer 		return(&vm_physmem[psi].pgs[off]);
    414  1.13.2.1   bouyer 	return(NULL);
    415  1.13.2.1   bouyer }
    416  1.13.2.1   bouyer 
    417  1.13.2.1   bouyer #define VM_PAGE_IS_FREE(entry)  ((entry)->pqflags & PQ_FREE)
    418  1.13.2.1   bouyer 
    419  1.13.2.1   bouyer extern
    420  1.13.2.1   bouyer simple_lock_data_t	vm_page_queue_lock;	/* lock on active and inactive
    421  1.13.2.1   bouyer 						   page queues */
    422  1.13.2.1   bouyer extern						/* lock on free page queue */
    423  1.13.2.1   bouyer simple_lock_data_t	vm_page_queue_free_lock;
    424  1.13.2.1   bouyer 
    425  1.13.2.1   bouyer #define PAGE_ASSERT_WAIT(m, interruptible)	{ \
    426  1.13.2.1   bouyer 				(m)->flags |= PG_WANTED; \
    427  1.13.2.1   bouyer 				assert_wait((m), (interruptible)); \
    428  1.13.2.1   bouyer 			}
    429  1.13.2.1   bouyer 
    430  1.13.2.1   bouyer #define PAGE_WAKEUP(m)	{ \
    431  1.13.2.1   bouyer 				(m)->flags &= ~PG_BUSY; \
    432  1.13.2.1   bouyer 				if ((m)->flags & PG_WANTED) { \
    433  1.13.2.1   bouyer 					(m)->flags &= ~PG_WANTED; \
    434  1.13.2.1   bouyer 					wakeup((m)); \
    435  1.13.2.1   bouyer 				} \
    436  1.13.2.1   bouyer 			}
    437  1.13.2.1   bouyer 
    438  1.13.2.1   bouyer #define	vm_page_lock_queues()	simple_lock(&vm_page_queue_lock)
    439  1.13.2.1   bouyer #define	vm_page_unlock_queues()	simple_unlock(&vm_page_queue_lock)
    440  1.13.2.1   bouyer 
    441  1.13.2.1   bouyer #define vm_page_set_modified(m)	{ (m)->flags &= ~PG_CLEAN; }
    442  1.13.2.1   bouyer 
    443  1.13.2.1   bouyer #define	VM_PAGE_INIT(mem, obj, offset) { \
    444  1.13.2.1   bouyer 	(mem)->flags = PG_BUSY | PG_CLEAN | PG_FAKE; \
    445  1.13.2.1   bouyer 	if (obj) \
    446  1.13.2.1   bouyer 		vm_page_insert((mem), (obj), (offset)); \
    447  1.13.2.1   bouyer 	else \
    448  1.13.2.1   bouyer 		(mem)->object = NULL; \
    449  1.13.2.1   bouyer 	(mem)->wire_count = 0; \
    450  1.13.2.1   bouyer }
    451  1.13.2.1   bouyer 
    452  1.13.2.1   bouyer #if VM_PAGE_DEBUG
    453  1.13.2.1   bouyer 
    454  1.13.2.1   bouyer /*
    455  1.13.2.1   bouyer  * VM_PAGE_CHECK: debugging check of a vm_page structure
    456  1.13.2.1   bouyer  */
    457  1.13.2.1   bouyer static __inline void
    458  1.13.2.1   bouyer VM_PAGE_CHECK(mem)
    459  1.13.2.1   bouyer 	struct vm_page *mem;
    460  1.13.2.1   bouyer {
    461  1.13.2.1   bouyer 	int lcv;
    462  1.13.2.1   bouyer 
    463  1.13.2.1   bouyer 	for (lcv = 0 ; lcv < vm_nphysseg ; lcv++) {
    464  1.13.2.1   bouyer 		if ((unsigned int) mem >= (unsigned int) vm_physmem[lcv].pgs &&
    465  1.13.2.1   bouyer 		    (unsigned int) mem <= (unsigned int) vm_physmem[lcv].lastpg)
    466  1.13.2.1   bouyer 			break;
    467  1.13.2.1   bouyer 	}
    468  1.13.2.1   bouyer 	if (lcv == vm_nphysseg ||
    469  1.13.2.1   bouyer 	    (mem->flags & (PG_ACTIVE|PG_INACTIVE)) == (PG_ACTIVE|PG_INACTIVE))
    470  1.13.2.1   bouyer 		panic("vm_page_check: not valid!");
    471  1.13.2.1   bouyer 	return;
    472  1.13.2.1   bouyer }
    473  1.13.2.1   bouyer 
    474  1.13.2.1   bouyer #else /* VM_PAGE_DEBUG */
    475  1.13.2.1   bouyer #define	VM_PAGE_CHECK(mem)
    476  1.13.2.1   bouyer #endif /* VM_PAGE_DEBUG */
    477      1.13  thorpej 
    478      1.13  thorpej #endif /* _KERNEL */
    479       1.1      mrg 
    480       1.4    perry #endif /* _UVM_UVM_PAGE_H_ */
    481