Home | History | Annotate | Line # | Download | only in kern
subr_pool.c revision 1.21.2.2
      1  1.21.2.2   thorpej /*	$NetBSD: subr_pool.c,v 1.21.2.2 1999/04/07 00:34:55 thorpej Exp $	*/
      2       1.1        pk 
      3       1.1        pk /*-
      4      1.20   thorpej  * Copyright (c) 1997, 1999 The NetBSD Foundation, Inc.
      5       1.1        pk  * All rights reserved.
      6       1.1        pk  *
      7       1.1        pk  * This code is derived from software contributed to The NetBSD Foundation
      8      1.20   thorpej  * by Paul Kranenburg; by Jason R. Thorpe of the Numerical Aerospace
      9      1.20   thorpej  * Simulation Facility, NASA Ames Research Center.
     10       1.1        pk  *
     11       1.1        pk  * Redistribution and use in source and binary forms, with or without
     12       1.1        pk  * modification, are permitted provided that the following conditions
     13       1.1        pk  * are met:
     14       1.1        pk  * 1. Redistributions of source code must retain the above copyright
     15       1.1        pk  *    notice, this list of conditions and the following disclaimer.
     16       1.1        pk  * 2. Redistributions in binary form must reproduce the above copyright
     17       1.1        pk  *    notice, this list of conditions and the following disclaimer in the
     18       1.1        pk  *    documentation and/or other materials provided with the distribution.
     19       1.1        pk  * 3. All advertising materials mentioning features or use of this software
     20       1.1        pk  *    must display the following acknowledgement:
     21      1.13  christos  *	This product includes software developed by the NetBSD
     22      1.13  christos  *	Foundation, Inc. and its contributors.
     23       1.1        pk  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24       1.1        pk  *    contributors may be used to endorse or promote products derived
     25       1.1        pk  *    from this software without specific prior written permission.
     26       1.1        pk  *
     27       1.1        pk  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28       1.1        pk  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29       1.1        pk  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30       1.1        pk  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31       1.1        pk  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32       1.1        pk  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33       1.1        pk  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34       1.1        pk  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35       1.1        pk  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36       1.1        pk  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37       1.1        pk  * POSSIBILITY OF SUCH DAMAGE.
     38       1.1        pk  */
     39       1.1        pk 
     40       1.1        pk #include <sys/param.h>
     41       1.1        pk #include <sys/systm.h>
     42       1.1        pk #include <sys/proc.h>
     43       1.1        pk #include <sys/errno.h>
     44       1.1        pk #include <sys/kernel.h>
     45       1.1        pk #include <sys/malloc.h>
     46       1.1        pk #include <sys/lock.h>
     47       1.1        pk #include <sys/pool.h>
     48      1.20   thorpej #include <sys/syslog.h>
     49       1.1        pk 
     50       1.3        pk #include <vm/vm.h>
     51       1.3        pk #include <vm/vm_kern.h>
     52       1.3        pk 
     53       1.3        pk #include <uvm/uvm.h>
     54       1.3        pk 
     55       1.1        pk /*
     56       1.1        pk  * Pool resource management utility.
     57       1.3        pk  *
     58       1.3        pk  * Memory is allocated in pages which are split into pieces according
     59       1.3        pk  * to the pool item size. Each page is kept on a list headed by `pr_pagelist'
     60       1.3        pk  * in the pool structure and the individual pool items are on a linked list
     61       1.3        pk  * headed by `ph_itemlist' in each page header. The memory for building
     62       1.3        pk  * the page list is either taken from the allocated pages themselves (for
     63       1.3        pk  * small pool items) or taken from an internal pool of page headers (`phpool').
     64       1.1        pk  */
     65       1.1        pk 
     66       1.3        pk /* List of all pools */
     67       1.5   thorpej TAILQ_HEAD(,pool) pool_head = TAILQ_HEAD_INITIALIZER(pool_head);
     68       1.3        pk 
     69       1.3        pk /* Private pool for page header structures */
     70       1.3        pk static struct pool phpool;
     71       1.3        pk 
     72       1.3        pk /* # of seconds to retain page after last use */
     73       1.3        pk int pool_inactive_time = 10;
     74       1.3        pk 
     75       1.3        pk /* Next candidate for drainage (see pool_drain()) */
     76  1.21.2.2   thorpej static struct pool	*drainpp;
     77  1.21.2.2   thorpej 
     78  1.21.2.2   thorpej /* This spin lock protects both pool_head and drainpp. */
     79  1.21.2.2   thorpej struct simplelock pool_head_slock = SIMPLELOCK_INITIALIZER;
     80       1.3        pk 
     81       1.3        pk struct pool_item_header {
     82       1.3        pk 	/* Page headers */
     83       1.3        pk 	TAILQ_ENTRY(pool_item_header)
     84       1.3        pk 				ph_pagelist;	/* pool page list */
     85       1.3        pk 	TAILQ_HEAD(,pool_item)	ph_itemlist;	/* chunk list for this page */
     86       1.3        pk 	LIST_ENTRY(pool_item_header)
     87       1.3        pk 				ph_hashlist;	/* Off-page page headers */
     88       1.3        pk 	int			ph_nmissing;	/* # of chunks in use */
     89       1.3        pk 	caddr_t			ph_page;	/* this page's address */
     90       1.3        pk 	struct timeval		ph_time;	/* last referenced */
     91       1.3        pk };
     92       1.3        pk 
     93       1.1        pk struct pool_item {
     94       1.3        pk #ifdef DIAGNOSTIC
     95       1.3        pk 	int pi_magic;
     96       1.3        pk #define PI_MAGIC 0xdeadbeef
     97       1.3        pk #endif
     98       1.3        pk 	/* Other entries use only this list entry */
     99       1.3        pk 	TAILQ_ENTRY(pool_item)	pi_list;
    100       1.3        pk };
    101       1.3        pk 
    102       1.3        pk 
    103       1.3        pk #define PR_HASH_INDEX(pp,addr) \
    104       1.3        pk 	(((u_long)(addr) >> (pp)->pr_pageshift) & (PR_HASHTABSIZE - 1))
    105       1.3        pk 
    106       1.3        pk 
    107       1.3        pk 
    108       1.3        pk static struct pool_item_header
    109       1.3        pk 		*pr_find_pagehead __P((struct pool *, caddr_t));
    110       1.3        pk static void	pr_rmpage __P((struct pool *, struct pool_item_header *));
    111      1.20   thorpej static int	pool_catchup __P((struct pool *));
    112      1.21   thorpej static void	pool_prime_page __P((struct pool *, caddr_t));
    113       1.3        pk static void	*pool_page_alloc __P((unsigned long, int, int));
    114       1.3        pk static void	pool_page_free __P((void *, unsigned long, int));
    115       1.3        pk 
    116      1.21   thorpej #if defined(POOL_DIAGNOSTIC) || defined(DEBUG)
    117      1.21   thorpej static void pool_print1 __P((struct pool *, const char *));
    118      1.21   thorpej #endif
    119       1.3        pk 
    120       1.3        pk #ifdef POOL_DIAGNOSTIC
    121       1.3        pk /*
    122       1.3        pk  * Pool log entry. An array of these is allocated in pool_create().
    123       1.3        pk  */
    124       1.3        pk struct pool_log {
    125       1.3        pk 	const char	*pl_file;
    126       1.3        pk 	long		pl_line;
    127       1.3        pk 	int		pl_action;
    128       1.3        pk #define PRLOG_GET	1
    129       1.3        pk #define PRLOG_PUT	2
    130       1.3        pk 	void		*pl_addr;
    131       1.1        pk };
    132       1.1        pk 
    133       1.3        pk /* Number of entries in pool log buffers */
    134      1.17   thorpej #ifndef POOL_LOGSIZE
    135      1.17   thorpej #define	POOL_LOGSIZE	10
    136      1.17   thorpej #endif
    137      1.17   thorpej 
    138      1.17   thorpej int pool_logsize = POOL_LOGSIZE;
    139       1.1        pk 
    140       1.3        pk static void	pr_log __P((struct pool *, void *, int, const char *, long));
    141       1.3        pk static void	pr_printlog __P((struct pool *));
    142       1.3        pk 
    143       1.3        pk static __inline__ void
    144       1.3        pk pr_log(pp, v, action, file, line)
    145       1.3        pk 	struct pool	*pp;
    146       1.3        pk 	void		*v;
    147       1.3        pk 	int		action;
    148       1.3        pk 	const char	*file;
    149       1.3        pk 	long		line;
    150       1.3        pk {
    151       1.3        pk 	int n = pp->pr_curlogentry;
    152       1.3        pk 	struct pool_log *pl;
    153       1.3        pk 
    154      1.20   thorpej 	if ((pp->pr_roflags & PR_LOGGING) == 0)
    155       1.3        pk 		return;
    156       1.3        pk 
    157       1.3        pk 	/*
    158       1.3        pk 	 * Fill in the current entry. Wrap around and overwrite
    159       1.3        pk 	 * the oldest entry if necessary.
    160       1.3        pk 	 */
    161       1.3        pk 	pl = &pp->pr_log[n];
    162       1.3        pk 	pl->pl_file = file;
    163       1.3        pk 	pl->pl_line = line;
    164       1.3        pk 	pl->pl_action = action;
    165       1.3        pk 	pl->pl_addr = v;
    166       1.3        pk 	if (++n >= pp->pr_logsize)
    167       1.3        pk 		n = 0;
    168       1.3        pk 	pp->pr_curlogentry = n;
    169       1.3        pk }
    170       1.3        pk 
    171       1.3        pk static void
    172       1.3        pk pr_printlog(pp)
    173       1.3        pk 	struct pool *pp;
    174       1.3        pk {
    175       1.3        pk 	int i = pp->pr_logsize;
    176       1.3        pk 	int n = pp->pr_curlogentry;
    177       1.3        pk 
    178      1.20   thorpej 	if ((pp->pr_roflags & PR_LOGGING) == 0)
    179       1.3        pk 		return;
    180       1.3        pk 
    181      1.21   thorpej 	pool_print1(pp, "printlog");
    182       1.3        pk 
    183       1.3        pk 	/*
    184       1.3        pk 	 * Print all entries in this pool's log.
    185       1.3        pk 	 */
    186       1.3        pk 	while (i-- > 0) {
    187       1.3        pk 		struct pool_log *pl = &pp->pr_log[n];
    188       1.3        pk 		if (pl->pl_action != 0) {
    189       1.3        pk 			printf("log entry %d:\n", i);
    190       1.3        pk 			printf("\taction = %s, addr = %p\n",
    191       1.3        pk 				pl->pl_action == PRLOG_GET ? "get" : "put",
    192       1.3        pk 				pl->pl_addr);
    193       1.3        pk 			printf("\tfile: %s at line %lu\n",
    194       1.3        pk 				pl->pl_file, pl->pl_line);
    195       1.3        pk 		}
    196       1.3        pk 		if (++n >= pp->pr_logsize)
    197       1.3        pk 			n = 0;
    198       1.3        pk 	}
    199       1.3        pk }
    200       1.3        pk #else
    201       1.3        pk #define pr_log(pp, v, action, file, line)
    202       1.3        pk #define pr_printlog(pp)
    203       1.3        pk #endif
    204       1.3        pk 
    205       1.3        pk 
    206       1.3        pk /*
    207       1.3        pk  * Return the pool page header based on page address.
    208       1.3        pk  */
    209       1.3        pk static __inline__ struct pool_item_header *
    210       1.3        pk pr_find_pagehead(pp, page)
    211       1.3        pk 	struct pool *pp;
    212       1.3        pk 	caddr_t page;
    213       1.3        pk {
    214       1.3        pk 	struct pool_item_header *ph;
    215       1.3        pk 
    216      1.20   thorpej 	if ((pp->pr_roflags & PR_PHINPAGE) != 0)
    217       1.3        pk 		return ((struct pool_item_header *)(page + pp->pr_phoffset));
    218       1.3        pk 
    219       1.3        pk 	for (ph = LIST_FIRST(&pp->pr_hashtab[PR_HASH_INDEX(pp, page)]);
    220       1.3        pk 	     ph != NULL;
    221       1.3        pk 	     ph = LIST_NEXT(ph, ph_hashlist)) {
    222       1.3        pk 		if (ph->ph_page == page)
    223       1.3        pk 			return (ph);
    224       1.3        pk 	}
    225       1.3        pk 	return (NULL);
    226       1.3        pk }
    227       1.3        pk 
    228       1.3        pk /*
    229       1.3        pk  * Remove a page from the pool.
    230       1.3        pk  */
    231       1.3        pk static __inline__ void
    232       1.3        pk pr_rmpage(pp, ph)
    233       1.3        pk 	struct pool *pp;
    234       1.3        pk 	struct pool_item_header *ph;
    235       1.3        pk {
    236       1.3        pk 
    237       1.3        pk 	/*
    238       1.7   thorpej 	 * If the page was idle, decrement the idle page count.
    239       1.3        pk 	 */
    240       1.6   thorpej 	if (ph->ph_nmissing == 0) {
    241       1.6   thorpej #ifdef DIAGNOSTIC
    242       1.6   thorpej 		if (pp->pr_nidle == 0)
    243       1.6   thorpej 			panic("pr_rmpage: nidle inconsistent");
    244      1.20   thorpej 		if (pp->pr_nitems < pp->pr_itemsperpage)
    245      1.20   thorpej 			panic("pr_rmpage: nitems inconsistent");
    246       1.6   thorpej #endif
    247       1.6   thorpej 		pp->pr_nidle--;
    248       1.6   thorpej 	}
    249       1.7   thorpej 
    250      1.20   thorpej 	pp->pr_nitems -= pp->pr_itemsperpage;
    251      1.20   thorpej 
    252       1.7   thorpej 	/*
    253       1.7   thorpej 	 * Unlink a page from the pool and release it.
    254       1.7   thorpej 	 */
    255       1.7   thorpej 	TAILQ_REMOVE(&pp->pr_pagelist, ph, ph_pagelist);
    256       1.7   thorpej 	(*pp->pr_free)(ph->ph_page, pp->pr_pagesz, pp->pr_mtype);
    257       1.7   thorpej 	pp->pr_npages--;
    258       1.7   thorpej 	pp->pr_npagefree++;
    259       1.6   thorpej 
    260  1.21.2.1       chs 	if ((pp->pr_roflags & PR_PHINPAGE) == 0) {
    261  1.21.2.1       chs 		LIST_REMOVE(ph, ph_hashlist);
    262  1.21.2.1       chs 		pool_put(&phpool, ph);
    263  1.21.2.1       chs 	}
    264  1.21.2.1       chs 
    265       1.3        pk 	if (pp->pr_curpage == ph) {
    266       1.3        pk 		/*
    267       1.3        pk 		 * Find a new non-empty page header, if any.
    268       1.3        pk 		 * Start search from the page head, to increase the
    269       1.3        pk 		 * chance for "high water" pages to be freed.
    270       1.3        pk 		 */
    271       1.3        pk 		for (ph = TAILQ_FIRST(&pp->pr_pagelist); ph != NULL;
    272       1.3        pk 		     ph = TAILQ_NEXT(ph, ph_pagelist))
    273       1.3        pk 			if (TAILQ_FIRST(&ph->ph_itemlist) != NULL)
    274       1.3        pk 				break;
    275       1.3        pk 
    276       1.3        pk 		pp->pr_curpage = ph;
    277      1.21   thorpej 	}
    278       1.3        pk }
    279       1.3        pk 
    280       1.3        pk /*
    281       1.3        pk  * Allocate and initialize a pool.
    282       1.3        pk  */
    283       1.1        pk struct pool *
    284       1.3        pk pool_create(size, align, ioff, nitems, wchan, pagesz, alloc, release, mtype)
    285       1.1        pk 	size_t	size;
    286       1.3        pk 	u_int	align;
    287       1.3        pk 	u_int	ioff;
    288       1.1        pk 	int	nitems;
    289      1.21   thorpej 	const char *wchan;
    290       1.3        pk 	size_t	pagesz;
    291       1.3        pk 	void	*(*alloc) __P((unsigned long, int, int));
    292       1.3        pk 	void	(*release) __P((void *, unsigned long, int));
    293       1.1        pk 	int	mtype;
    294       1.1        pk {
    295       1.1        pk 	struct pool *pp;
    296       1.3        pk 	int flags;
    297       1.1        pk 
    298       1.3        pk 	pp = (struct pool *)malloc(sizeof(*pp), M_POOL, M_NOWAIT);
    299       1.3        pk 	if (pp == NULL)
    300       1.1        pk 		return (NULL);
    301       1.3        pk 
    302       1.3        pk 	flags = PR_FREEHEADER;
    303       1.3        pk #ifdef POOL_DIAGNOSTIC
    304       1.3        pk 	if (pool_logsize != 0)
    305       1.3        pk 		flags |= PR_LOGGING;
    306       1.3        pk #endif
    307       1.3        pk 
    308       1.3        pk 	pool_init(pp, size, align, ioff, flags, wchan, pagesz,
    309       1.3        pk 		  alloc, release, mtype);
    310       1.3        pk 
    311       1.3        pk 	if (nitems != 0) {
    312       1.3        pk 		if (pool_prime(pp, nitems, NULL) != 0) {
    313       1.3        pk 			pool_destroy(pp);
    314       1.3        pk 			return (NULL);
    315       1.3        pk 		}
    316       1.1        pk 	}
    317       1.1        pk 
    318       1.3        pk 	return (pp);
    319       1.3        pk }
    320       1.3        pk 
    321       1.3        pk /*
    322       1.3        pk  * Initialize the given pool resource structure.
    323       1.3        pk  *
    324       1.3        pk  * We export this routine to allow other kernel parts to declare
    325       1.3        pk  * static pools that must be initialized before malloc() is available.
    326       1.3        pk  */
    327       1.3        pk void
    328       1.3        pk pool_init(pp, size, align, ioff, flags, wchan, pagesz, alloc, release, mtype)
    329       1.3        pk 	struct pool	*pp;
    330       1.3        pk 	size_t		size;
    331       1.3        pk 	u_int		align;
    332       1.3        pk 	u_int		ioff;
    333       1.3        pk 	int		flags;
    334      1.21   thorpej 	const char	*wchan;
    335       1.3        pk 	size_t		pagesz;
    336       1.3        pk 	void		*(*alloc) __P((unsigned long, int, int));
    337       1.3        pk 	void		(*release) __P((void *, unsigned long, int));
    338       1.3        pk 	int		mtype;
    339       1.3        pk {
    340      1.16    briggs 	int off, slack, i;
    341       1.3        pk 
    342       1.3        pk 	/*
    343       1.3        pk 	 * Check arguments and construct default values.
    344       1.3        pk 	 */
    345       1.3        pk 	if (!powerof2(pagesz) || pagesz > PAGE_SIZE)
    346       1.3        pk 		panic("pool_init: page size invalid (%lx)\n", (u_long)pagesz);
    347       1.3        pk 
    348       1.4   thorpej 	if (alloc == NULL && release == NULL) {
    349       1.3        pk 		alloc = pool_page_alloc;
    350       1.3        pk 		release = pool_page_free;
    351       1.4   thorpej 		pagesz = PAGE_SIZE;	/* Rounds to PAGE_SIZE anyhow. */
    352       1.4   thorpej 	} else if ((alloc != NULL && release != NULL) == 0) {
    353       1.4   thorpej 		/* If you specifiy one, must specify both. */
    354       1.4   thorpej 		panic("pool_init: must specify alloc and release together");
    355       1.4   thorpej 	}
    356       1.4   thorpej 
    357       1.3        pk 	if (pagesz == 0)
    358       1.3        pk 		pagesz = PAGE_SIZE;
    359       1.3        pk 
    360       1.3        pk 	if (align == 0)
    361       1.3        pk 		align = ALIGN(1);
    362      1.14   thorpej 
    363      1.14   thorpej 	if (size < sizeof(struct pool_item))
    364      1.14   thorpej 		size = sizeof(struct pool_item);
    365       1.3        pk 
    366       1.3        pk 	/*
    367       1.3        pk 	 * Initialize the pool structure.
    368       1.3        pk 	 */
    369       1.3        pk 	TAILQ_INIT(&pp->pr_pagelist);
    370       1.3        pk 	pp->pr_curpage = NULL;
    371       1.3        pk 	pp->pr_npages = 0;
    372       1.3        pk 	pp->pr_minitems = 0;
    373       1.3        pk 	pp->pr_minpages = 0;
    374       1.3        pk 	pp->pr_maxpages = UINT_MAX;
    375      1.20   thorpej 	pp->pr_roflags = flags;
    376      1.20   thorpej 	pp->pr_flags = 0;
    377       1.3        pk 	pp->pr_size = ALIGN(size);
    378       1.3        pk 	pp->pr_align = align;
    379       1.3        pk 	pp->pr_wchan = wchan;
    380       1.3        pk 	pp->pr_mtype = mtype;
    381       1.3        pk 	pp->pr_alloc = alloc;
    382       1.3        pk 	pp->pr_free = release;
    383       1.3        pk 	pp->pr_pagesz = pagesz;
    384       1.3        pk 	pp->pr_pagemask = ~(pagesz - 1);
    385       1.3        pk 	pp->pr_pageshift = ffs(pagesz) - 1;
    386      1.20   thorpej 	pp->pr_nitems = 0;
    387      1.20   thorpej 	pp->pr_nout = 0;
    388      1.20   thorpej 	pp->pr_hardlimit = UINT_MAX;
    389      1.20   thorpej 	pp->pr_hardlimit_warning = NULL;
    390      1.20   thorpej 	pp->pr_hardlimit_ratecap = 0;
    391      1.20   thorpej 	memset(&pp->pr_hardlimit_warning_last, 0,
    392      1.20   thorpej 	    sizeof(pp->pr_hardlimit_warning_last));
    393       1.3        pk 
    394       1.3        pk 	/*
    395       1.3        pk 	 * Decide whether to put the page header off page to avoid
    396       1.3        pk 	 * wasting too large a part of the page. Off-page page headers
    397       1.3        pk 	 * go on a hash table, so we can match a returned item
    398       1.3        pk 	 * with its header based on the page address.
    399       1.3        pk 	 * We use 1/16 of the page size as the threshold (XXX: tune)
    400       1.3        pk 	 */
    401       1.3        pk 	if (pp->pr_size < pagesz/16) {
    402       1.3        pk 		/* Use the end of the page for the page header */
    403      1.20   thorpej 		pp->pr_roflags |= PR_PHINPAGE;
    404       1.3        pk 		pp->pr_phoffset = off =
    405       1.3        pk 			pagesz - ALIGN(sizeof(struct pool_item_header));
    406       1.2        pk 	} else {
    407       1.3        pk 		/* The page header will be taken from our page header pool */
    408       1.3        pk 		pp->pr_phoffset = 0;
    409       1.3        pk 		off = pagesz;
    410      1.16    briggs 		for (i = 0; i < PR_HASHTABSIZE; i++) {
    411      1.16    briggs 			LIST_INIT(&pp->pr_hashtab[i]);
    412      1.16    briggs 		}
    413       1.2        pk 	}
    414       1.1        pk 
    415       1.3        pk 	/*
    416       1.3        pk 	 * Alignment is to take place at `ioff' within the item. This means
    417       1.3        pk 	 * we must reserve up to `align - 1' bytes on the page to allow
    418       1.3        pk 	 * appropriate positioning of each item.
    419       1.3        pk 	 *
    420       1.3        pk 	 * Silently enforce `0 <= ioff < align'.
    421       1.3        pk 	 */
    422       1.3        pk 	pp->pr_itemoffset = ioff = ioff % align;
    423       1.3        pk 	pp->pr_itemsperpage = (off - ((align - ioff) % align)) / pp->pr_size;
    424       1.3        pk 
    425       1.3        pk 	/*
    426       1.3        pk 	 * Use the slack between the chunks and the page header
    427       1.3        pk 	 * for "cache coloring".
    428       1.3        pk 	 */
    429       1.3        pk 	slack = off - pp->pr_itemsperpage * pp->pr_size;
    430       1.3        pk 	pp->pr_maxcolor = (slack / align) * align;
    431       1.3        pk 	pp->pr_curcolor = 0;
    432       1.3        pk 
    433       1.3        pk 	pp->pr_nget = 0;
    434       1.3        pk 	pp->pr_nfail = 0;
    435       1.3        pk 	pp->pr_nput = 0;
    436       1.3        pk 	pp->pr_npagealloc = 0;
    437       1.3        pk 	pp->pr_npagefree = 0;
    438       1.1        pk 	pp->pr_hiwat = 0;
    439       1.8   thorpej 	pp->pr_nidle = 0;
    440       1.3        pk 
    441       1.3        pk #ifdef POOL_DIAGNOSTIC
    442       1.3        pk 	if ((flags & PR_LOGGING) != 0) {
    443       1.3        pk 		pp->pr_log = malloc(pool_logsize * sizeof(struct pool_log),
    444       1.3        pk 				    M_TEMP, M_NOWAIT);
    445       1.3        pk 		if (pp->pr_log == NULL)
    446      1.20   thorpej 			pp->pr_roflags &= ~PR_LOGGING;
    447       1.3        pk 		pp->pr_curlogentry = 0;
    448       1.3        pk 		pp->pr_logsize = pool_logsize;
    449       1.3        pk 	}
    450       1.3        pk #endif
    451       1.3        pk 
    452      1.21   thorpej 	simple_lock_init(&pp->pr_slock);
    453       1.1        pk 
    454       1.3        pk 	/*
    455       1.3        pk 	 * Initialize private page header pool if we haven't done so yet.
    456  1.21.2.2   thorpej 	 * XXX LOCKING.
    457       1.3        pk 	 */
    458       1.3        pk 	if (phpool.pr_size == 0) {
    459       1.3        pk 		pool_init(&phpool, sizeof(struct pool_item_header), 0, 0,
    460       1.3        pk 			  0, "phpool", 0, 0, 0, 0);
    461       1.1        pk 	}
    462       1.1        pk 
    463  1.21.2.2   thorpej 	/* Insert into the list of all pools. */
    464  1.21.2.2   thorpej 	simple_lock(&pool_head_slock);
    465  1.21.2.2   thorpej 	TAILQ_INSERT_TAIL(&pool_head, pp, pr_poollist);
    466  1.21.2.2   thorpej 	simple_unlock(&pool_head_slock);
    467       1.1        pk }
    468       1.1        pk 
    469       1.1        pk /*
    470       1.1        pk  * De-commision a pool resource.
    471       1.1        pk  */
    472       1.1        pk void
    473       1.1        pk pool_destroy(pp)
    474       1.1        pk 	struct pool *pp;
    475       1.1        pk {
    476       1.3        pk 	struct pool_item_header *ph;
    477       1.3        pk 
    478       1.3        pk #ifdef DIAGNOSTIC
    479      1.20   thorpej 	if (pp->pr_nout != 0) {
    480       1.3        pk 		pr_printlog(pp);
    481      1.20   thorpej 		panic("pool_destroy: pool busy: still out: %u\n",
    482      1.20   thorpej 		    pp->pr_nout);
    483       1.3        pk 	}
    484       1.3        pk #endif
    485       1.1        pk 
    486       1.3        pk 	/* Remove all pages */
    487      1.20   thorpej 	if ((pp->pr_roflags & PR_STATIC) == 0)
    488       1.3        pk 		while ((ph = pp->pr_pagelist.tqh_first) != NULL)
    489       1.3        pk 			pr_rmpage(pp, ph);
    490       1.3        pk 
    491       1.3        pk 	/* Remove from global pool list */
    492  1.21.2.2   thorpej 	simple_lock(&pool_head_slock);
    493       1.3        pk 	TAILQ_REMOVE(&pool_head, pp, pr_poollist);
    494  1.21.2.2   thorpej 	/* XXX Only clear this if we were drainpp? */
    495       1.3        pk 	drainpp = NULL;
    496  1.21.2.2   thorpej 	simple_unlock(&pool_head_slock);
    497       1.3        pk 
    498       1.3        pk #ifdef POOL_DIAGNOSTIC
    499      1.20   thorpej 	if ((pp->pr_roflags & PR_LOGGING) != 0)
    500       1.3        pk 		free(pp->pr_log, M_TEMP);
    501       1.3        pk #endif
    502       1.2        pk 
    503      1.20   thorpej 	if (pp->pr_roflags & PR_FREEHEADER)
    504       1.3        pk 		free(pp, M_POOL);
    505       1.1        pk }
    506       1.1        pk 
    507       1.1        pk 
    508       1.1        pk /*
    509       1.3        pk  * Grab an item from the pool; must be called at appropriate spl level
    510       1.1        pk  */
    511       1.3        pk #ifdef POOL_DIAGNOSTIC
    512       1.3        pk void *
    513       1.3        pk _pool_get(pp, flags, file, line)
    514       1.3        pk 	struct pool *pp;
    515       1.3        pk 	int flags;
    516       1.3        pk 	const char *file;
    517       1.3        pk 	long line;
    518       1.3        pk #else
    519       1.1        pk void *
    520       1.1        pk pool_get(pp, flags)
    521       1.1        pk 	struct pool *pp;
    522       1.1        pk 	int flags;
    523       1.3        pk #endif
    524       1.1        pk {
    525       1.1        pk 	void *v;
    526       1.1        pk 	struct pool_item *pi;
    527       1.3        pk 	struct pool_item_header *ph;
    528       1.1        pk 
    529       1.2        pk #ifdef DIAGNOSTIC
    530      1.20   thorpej 	if ((pp->pr_roflags & PR_STATIC) && (flags & PR_MALLOCOK)) {
    531       1.3        pk 		pr_printlog(pp);
    532       1.2        pk 		panic("pool_get: static");
    533       1.3        pk 	}
    534       1.2        pk #endif
    535       1.2        pk 
    536       1.3        pk 	if (curproc == NULL && (flags & PR_WAITOK) != 0)
    537       1.3        pk 		panic("pool_get: must have NOWAIT");
    538       1.1        pk 
    539      1.21   thorpej 	simple_lock(&pp->pr_slock);
    540      1.20   thorpej 
    541      1.20   thorpej  startover:
    542      1.20   thorpej 	/*
    543      1.20   thorpej 	 * Check to see if we've reached the hard limit.  If we have,
    544      1.20   thorpej 	 * and we can wait, then wait until an item has been returned to
    545      1.20   thorpej 	 * the pool.
    546      1.20   thorpej 	 */
    547      1.20   thorpej #ifdef DIAGNOSTIC
    548      1.20   thorpej 	if (pp->pr_nout > pp->pr_hardlimit) {
    549      1.21   thorpej 		simple_unlock(&pp->pr_slock);
    550      1.20   thorpej 		panic("pool_get: %s: crossed hard limit", pp->pr_wchan);
    551      1.20   thorpej 	}
    552      1.20   thorpej #endif
    553      1.20   thorpej 	if (pp->pr_nout == pp->pr_hardlimit) {
    554      1.20   thorpej 		if (flags & PR_WAITOK) {
    555      1.20   thorpej 			/*
    556      1.20   thorpej 			 * XXX: A warning isn't logged in this case.  Should
    557      1.20   thorpej 			 * it be?
    558      1.20   thorpej 			 */
    559      1.20   thorpej 			pp->pr_flags |= PR_WANTED;
    560      1.21   thorpej 			simple_unlock(&pp->pr_slock);
    561      1.20   thorpej 			tsleep((caddr_t)pp, PSWP, pp->pr_wchan, 0);
    562      1.21   thorpej 			simple_lock(&pp->pr_slock);
    563      1.20   thorpej 			goto startover;
    564      1.20   thorpej 		}
    565      1.20   thorpej 		if (pp->pr_hardlimit_warning != NULL) {
    566      1.20   thorpej 			/*
    567      1.20   thorpej 			 * Log a message that the hard limit has been hit.
    568      1.20   thorpej 			 */
    569      1.20   thorpej 			struct timeval curtime, logdiff;
    570      1.20   thorpej 			int s = splclock();
    571      1.20   thorpej 			curtime = mono_time;
    572      1.20   thorpej 			splx(s);
    573      1.20   thorpej 			timersub(&curtime, &pp->pr_hardlimit_warning_last,
    574      1.20   thorpej 			    &logdiff);
    575      1.20   thorpej 			if (logdiff.tv_sec >= pp->pr_hardlimit_ratecap) {
    576      1.20   thorpej 				pp->pr_hardlimit_warning_last = curtime;
    577      1.20   thorpej 				log(LOG_ERR, "%s\n", pp->pr_hardlimit_warning);
    578      1.20   thorpej 			}
    579      1.20   thorpej 		}
    580      1.21   thorpej 
    581      1.21   thorpej 		if (flags & PR_URGENT)
    582      1.21   thorpej 			panic("pool_get: urgent");
    583      1.21   thorpej 
    584      1.21   thorpej 		pp->pr_nfail++;
    585      1.21   thorpej 
    586      1.21   thorpej 		simple_unlock(&pp->pr_slock);
    587      1.20   thorpej 		return (NULL);
    588      1.20   thorpej 	}
    589      1.20   thorpej 
    590       1.3        pk 	/*
    591       1.3        pk 	 * The convention we use is that if `curpage' is not NULL, then
    592       1.3        pk 	 * it points at a non-empty bucket. In particular, `curpage'
    593       1.3        pk 	 * never points at a page header which has PR_PHINPAGE set and
    594       1.3        pk 	 * has no items in its bucket.
    595       1.3        pk 	 */
    596      1.20   thorpej 	if ((ph = pp->pr_curpage) == NULL) {
    597      1.15        pk 		void *v;
    598      1.15        pk 
    599      1.20   thorpej #ifdef DIAGNOSTIC
    600      1.20   thorpej 		if (pp->pr_nitems != 0) {
    601      1.21   thorpej 			simple_unlock(&pp->pr_slock);
    602      1.20   thorpej 			printf("pool_get: %s: curpage NULL, nitems %u\n",
    603      1.20   thorpej 			    pp->pr_wchan, pp->pr_nitems);
    604      1.20   thorpej 			panic("pool_get: nitems inconsistent\n");
    605      1.20   thorpej 		}
    606      1.20   thorpej #endif
    607      1.20   thorpej 
    608      1.21   thorpej 		/*
    609      1.21   thorpej 		 * Call the back-end page allocator for more memory.
    610      1.21   thorpej 		 * Release the pool lock, as the back-end page allocator
    611      1.21   thorpej 		 * may block.
    612      1.21   thorpej 		 */
    613      1.21   thorpej 		simple_unlock(&pp->pr_slock);
    614      1.21   thorpej 		v = (*pp->pr_alloc)(pp->pr_pagesz, flags, pp->pr_mtype);
    615      1.21   thorpej 		simple_lock(&pp->pr_slock);
    616      1.15        pk 
    617      1.21   thorpej 		if (v == NULL) {
    618      1.21   thorpej 			/*
    619      1.21   thorpej 			 * We were unable to allocate a page, but
    620      1.21   thorpej 			 * we released the lock during allocation,
    621      1.21   thorpej 			 * so perhaps items were freed back to the
    622      1.21   thorpej 			 * pool.  Check for this case.
    623      1.21   thorpej 			 */
    624      1.21   thorpej 			if (pp->pr_curpage != NULL)
    625      1.21   thorpej 				goto startover;
    626      1.15        pk 
    627       1.3        pk 			if (flags & PR_URGENT)
    628       1.3        pk 				panic("pool_get: urgent");
    629      1.21   thorpej 
    630       1.3        pk 			if ((flags & PR_WAITOK) == 0) {
    631       1.3        pk 				pp->pr_nfail++;
    632      1.21   thorpej 				simple_unlock(&pp->pr_slock);
    633       1.1        pk 				return (NULL);
    634       1.3        pk 			}
    635       1.3        pk 
    636      1.15        pk 			/*
    637      1.15        pk 			 * Wait for items to be returned to this pool.
    638      1.21   thorpej 			 *
    639      1.15        pk 			 * XXX: we actually want to wait just until
    640      1.15        pk 			 * the page allocator has memory again. Depending
    641      1.15        pk 			 * on this pool's usage, we might get stuck here
    642      1.15        pk 			 * for a long time.
    643      1.20   thorpej 			 *
    644      1.20   thorpej 			 * XXX: maybe we should wake up once a second and
    645      1.20   thorpej 			 * try again?
    646      1.15        pk 			 */
    647       1.1        pk 			pp->pr_flags |= PR_WANTED;
    648      1.21   thorpej 			simple_unlock(&pp->pr_slock);
    649       1.1        pk 			tsleep((caddr_t)pp, PSWP, pp->pr_wchan, 0);
    650      1.21   thorpej 			simple_lock(&pp->pr_slock);
    651      1.20   thorpej 			goto startover;
    652       1.1        pk 		}
    653       1.3        pk 
    654      1.15        pk 		/* We have more memory; add it to the pool */
    655      1.15        pk 		pp->pr_npagealloc++;
    656      1.15        pk 		pool_prime_page(pp, v);
    657      1.15        pk 
    658      1.20   thorpej 		/* Start the allocation process over. */
    659      1.20   thorpej 		goto startover;
    660       1.3        pk 	}
    661       1.3        pk 
    662      1.21   thorpej 	if ((v = pi = TAILQ_FIRST(&ph->ph_itemlist)) == NULL) {
    663      1.21   thorpej 		simple_unlock(&pp->pr_slock);
    664       1.3        pk 		panic("pool_get: %s: page empty", pp->pr_wchan);
    665      1.21   thorpej 	}
    666      1.20   thorpej #ifdef DIAGNOSTIC
    667      1.20   thorpej 	if (pp->pr_nitems == 0) {
    668      1.21   thorpej 		simple_unlock(&pp->pr_slock);
    669      1.20   thorpej 		printf("pool_get: %s: items on itemlist, nitems %u\n",
    670      1.20   thorpej 		    pp->pr_wchan, pp->pr_nitems);
    671      1.20   thorpej 		panic("pool_get: nitems inconsistent\n");
    672      1.20   thorpej 	}
    673      1.20   thorpej #endif
    674       1.3        pk 	pr_log(pp, v, PRLOG_GET, file, line);
    675       1.3        pk 
    676       1.3        pk #ifdef DIAGNOSTIC
    677       1.3        pk 	if (pi->pi_magic != PI_MAGIC) {
    678       1.3        pk 		pr_printlog(pp);
    679       1.3        pk 		panic("pool_get(%s): free list modified: magic=%x; page %p;"
    680       1.3        pk 		       " item addr %p\n",
    681       1.3        pk 			pp->pr_wchan, pi->pi_magic, ph->ph_page, pi);
    682       1.3        pk 	}
    683       1.3        pk #endif
    684       1.3        pk 
    685       1.3        pk 	/*
    686       1.3        pk 	 * Remove from item list.
    687       1.3        pk 	 */
    688       1.3        pk 	TAILQ_REMOVE(&ph->ph_itemlist, pi, pi_list);
    689      1.20   thorpej 	pp->pr_nitems--;
    690      1.20   thorpej 	pp->pr_nout++;
    691       1.6   thorpej 	if (ph->ph_nmissing == 0) {
    692       1.6   thorpej #ifdef DIAGNOSTIC
    693       1.6   thorpej 		if (pp->pr_nidle == 0)
    694       1.6   thorpej 			panic("pool_get: nidle inconsistent");
    695       1.6   thorpej #endif
    696       1.6   thorpej 		pp->pr_nidle--;
    697       1.6   thorpej 	}
    698       1.3        pk 	ph->ph_nmissing++;
    699       1.3        pk 	if (TAILQ_FIRST(&ph->ph_itemlist) == NULL) {
    700      1.21   thorpej #ifdef DIAGNOSTIC
    701      1.21   thorpej 		if (ph->ph_nmissing != pp->pr_itemsperpage) {
    702      1.21   thorpej 			simple_unlock(&pp->pr_slock);
    703      1.21   thorpej 			panic("pool_get: %s: nmissing inconsistent",
    704      1.21   thorpej 			    pp->pr_wchan);
    705      1.21   thorpej 		}
    706      1.21   thorpej #endif
    707       1.3        pk 		/*
    708       1.3        pk 		 * Find a new non-empty page header, if any.
    709       1.3        pk 		 * Start search from the page head, to increase
    710       1.3        pk 		 * the chance for "high water" pages to be freed.
    711       1.3        pk 		 *
    712      1.21   thorpej 		 * Migrate empty pages to the end of the list.  This
    713      1.21   thorpej 		 * will speed the update of curpage as pages become
    714      1.21   thorpej 		 * idle.  Empty pages intermingled with idle pages
    715      1.21   thorpej 		 * is no big deal.  As soon as a page becomes un-empty,
    716      1.21   thorpej 		 * it will move back to the head of the list.
    717       1.3        pk 		 */
    718       1.3        pk 		TAILQ_REMOVE(&pp->pr_pagelist, ph, ph_pagelist);
    719      1.21   thorpej 		TAILQ_INSERT_TAIL(&pp->pr_pagelist, ph, ph_pagelist);
    720      1.21   thorpej 		for (ph = TAILQ_FIRST(&pp->pr_pagelist); ph != NULL;
    721      1.21   thorpej 		     ph = TAILQ_NEXT(ph, ph_pagelist))
    722       1.3        pk 			if (TAILQ_FIRST(&ph->ph_itemlist) != NULL)
    723       1.3        pk 				break;
    724       1.3        pk 
    725       1.3        pk 		pp->pr_curpage = ph;
    726       1.1        pk 	}
    727       1.3        pk 
    728       1.3        pk 	pp->pr_nget++;
    729      1.20   thorpej 
    730      1.20   thorpej 	/*
    731      1.20   thorpej 	 * If we have a low water mark and we are now below that low
    732      1.20   thorpej 	 * water mark, add more items to the pool.
    733      1.20   thorpej 	 */
    734      1.20   thorpej 	if (pp->pr_nitems < pp->pr_minitems && pool_catchup(pp) != 0) {
    735      1.20   thorpej 		/*
    736      1.20   thorpej 		 * XXX: Should we log a warning?  Should we set up a timeout
    737      1.20   thorpej 		 * to try again in a second or so?  The latter could break
    738      1.20   thorpej 		 * a caller's assumptions about interrupt protection, etc.
    739      1.20   thorpej 		 */
    740      1.20   thorpej 	}
    741      1.20   thorpej 
    742      1.21   thorpej 	simple_unlock(&pp->pr_slock);
    743       1.1        pk 	return (v);
    744       1.1        pk }
    745       1.1        pk 
    746       1.1        pk /*
    747       1.3        pk  * Return resource to the pool; must be called at appropriate spl level
    748       1.1        pk  */
    749       1.3        pk #ifdef POOL_DIAGNOSTIC
    750       1.3        pk void
    751       1.3        pk _pool_put(pp, v, file, line)
    752       1.3        pk 	struct pool *pp;
    753       1.3        pk 	void *v;
    754       1.3        pk 	const char *file;
    755       1.3        pk 	long line;
    756       1.3        pk #else
    757       1.1        pk void
    758       1.1        pk pool_put(pp, v)
    759       1.1        pk 	struct pool *pp;
    760       1.1        pk 	void *v;
    761       1.3        pk #endif
    762       1.1        pk {
    763       1.1        pk 	struct pool_item *pi = v;
    764       1.3        pk 	struct pool_item_header *ph;
    765       1.3        pk 	caddr_t page;
    766      1.21   thorpej 	int s;
    767       1.3        pk 
    768       1.3        pk 	page = (caddr_t)((u_long)v & pp->pr_pagemask);
    769       1.1        pk 
    770      1.21   thorpej 	simple_lock(&pp->pr_slock);
    771       1.3        pk 
    772       1.3        pk 	pr_log(pp, v, PRLOG_PUT, file, line);
    773       1.3        pk 
    774       1.3        pk 	if ((ph = pr_find_pagehead(pp, page)) == NULL) {
    775       1.3        pk 		pr_printlog(pp);
    776       1.3        pk 		panic("pool_put: %s: page header missing", pp->pr_wchan);
    777       1.3        pk 	}
    778       1.3        pk 
    779       1.3        pk 	/*
    780       1.3        pk 	 * Return to item list.
    781       1.3        pk 	 */
    782       1.2        pk #ifdef DIAGNOSTIC
    783       1.3        pk 	pi->pi_magic = PI_MAGIC;
    784       1.3        pk #endif
    785       1.3        pk 	TAILQ_INSERT_HEAD(&ph->ph_itemlist, pi, pi_list);
    786       1.3        pk 	ph->ph_nmissing--;
    787       1.3        pk 	pp->pr_nput++;
    788      1.20   thorpej 	pp->pr_nitems++;
    789      1.20   thorpej 	pp->pr_nout--;
    790       1.3        pk 
    791       1.3        pk 	/* Cancel "pool empty" condition if it exists */
    792       1.3        pk 	if (pp->pr_curpage == NULL)
    793       1.3        pk 		pp->pr_curpage = ph;
    794       1.3        pk 
    795       1.3        pk 	if (pp->pr_flags & PR_WANTED) {
    796       1.3        pk 		pp->pr_flags &= ~PR_WANTED;
    797      1.15        pk 		if (ph->ph_nmissing == 0)
    798      1.15        pk 			pp->pr_nidle++;
    799      1.21   thorpej 		simple_unlock(&pp->pr_slock);
    800       1.3        pk 		wakeup((caddr_t)pp);
    801       1.3        pk 		return;
    802       1.3        pk 	}
    803       1.3        pk 
    804       1.3        pk 	/*
    805      1.21   thorpej 	 * If this page is now complete, do one of two things:
    806      1.21   thorpej 	 *
    807      1.21   thorpej 	 *	(1) If we have more pages than the page high water
    808      1.21   thorpej 	 *	    mark, free the page back to the system.
    809      1.21   thorpej 	 *
    810      1.21   thorpej 	 *	(2) Move it to the end of the page list, so that
    811      1.21   thorpej 	 *	    we minimize our chances of fragmenting the
    812      1.21   thorpej 	 *	    pool.  Idle pages migrate to the end (along with
    813      1.21   thorpej 	 *	    completely empty pages, so that we find un-empty
    814      1.21   thorpej 	 *	    pages more quickly when we update curpage) of the
    815      1.21   thorpej 	 *	    list so they can be more easily swept up by
    816      1.21   thorpej 	 *	    the pagedaemon when pages are scarce.
    817       1.3        pk 	 */
    818       1.3        pk 	if (ph->ph_nmissing == 0) {
    819       1.6   thorpej 		pp->pr_nidle++;
    820       1.3        pk 		if (pp->pr_npages > pp->pr_maxpages) {
    821       1.3        pk 			pr_rmpage(pp, ph);
    822       1.3        pk 		} else {
    823       1.3        pk 			TAILQ_REMOVE(&pp->pr_pagelist, ph, ph_pagelist);
    824       1.3        pk 			TAILQ_INSERT_TAIL(&pp->pr_pagelist, ph, ph_pagelist);
    825       1.3        pk 
    826      1.21   thorpej 			/*
    827      1.21   thorpej 			 * Update the timestamp on the page.  A page must
    828      1.21   thorpej 			 * be idle for some period of time before it can
    829      1.21   thorpej 			 * be reclaimed by the pagedaemon.  This minimizes
    830      1.21   thorpej 			 * ping-pong'ing for memory.
    831      1.21   thorpej 			 */
    832      1.21   thorpej 			s = splclock();
    833      1.21   thorpej 			ph->ph_time = mono_time;
    834      1.21   thorpej 			splx(s);
    835      1.21   thorpej 
    836      1.21   thorpej 			/*
    837      1.21   thorpej 			 * Update the current page pointer.  Just look for
    838      1.21   thorpej 			 * the first page with any free items.
    839      1.21   thorpej 			 *
    840      1.21   thorpej 			 * XXX: Maybe we want an option to look for the
    841      1.21   thorpej 			 * page with the fewest available items, to minimize
    842      1.21   thorpej 			 * fragmentation?
    843      1.21   thorpej 			 */
    844       1.3        pk 			for (ph = TAILQ_FIRST(&pp->pr_pagelist); ph != NULL;
    845       1.3        pk 			     ph = TAILQ_NEXT(ph, ph_pagelist))
    846       1.3        pk 				if (TAILQ_FIRST(&ph->ph_itemlist) != NULL)
    847       1.3        pk 					break;
    848       1.1        pk 
    849       1.3        pk 			pp->pr_curpage = ph;
    850       1.1        pk 		}
    851       1.1        pk 	}
    852      1.21   thorpej 	/*
    853      1.21   thorpej 	 * If the page has just become un-empty, move it to the head of
    854      1.21   thorpej 	 * the list, and make it the current page.  The next allocation
    855      1.21   thorpej 	 * will get the item from this page, instead of further fragmenting
    856      1.21   thorpej 	 * the pool.
    857      1.21   thorpej 	 */
    858      1.21   thorpej 	else if (ph->ph_nmissing == (pp->pr_itemsperpage - 1)) {
    859      1.21   thorpej 		TAILQ_REMOVE(&pp->pr_pagelist, ph, ph_pagelist);
    860      1.21   thorpej 		TAILQ_INSERT_HEAD(&pp->pr_pagelist, ph, ph_pagelist);
    861      1.21   thorpej 		pp->pr_curpage = ph;
    862      1.21   thorpej 	}
    863      1.21   thorpej 
    864      1.21   thorpej 	simple_unlock(&pp->pr_slock);
    865       1.3        pk 
    866       1.1        pk }
    867       1.1        pk 
    868       1.1        pk /*
    869       1.3        pk  * Add N items to the pool.
    870       1.1        pk  */
    871       1.1        pk int
    872       1.2        pk pool_prime(pp, n, storage)
    873       1.1        pk 	struct pool *pp;
    874       1.1        pk 	int n;
    875       1.2        pk 	caddr_t storage;
    876       1.1        pk {
    877       1.3        pk 	caddr_t cp;
    878       1.3        pk 	int newnitems, newpages;
    879       1.2        pk 
    880       1.2        pk #ifdef DIAGNOSTIC
    881      1.20   thorpej 	if (storage && !(pp->pr_roflags & PR_STATIC))
    882       1.2        pk 		panic("pool_prime: static");
    883       1.2        pk 	/* !storage && static caught below */
    884       1.2        pk #endif
    885       1.1        pk 
    886      1.21   thorpej 	simple_lock(&pp->pr_slock);
    887      1.21   thorpej 
    888       1.3        pk 	newnitems = pp->pr_minitems + n;
    889       1.3        pk 	newpages =
    890      1.18   thorpej 		roundup(newnitems, pp->pr_itemsperpage) / pp->pr_itemsperpage
    891       1.3        pk 		- pp->pr_minpages;
    892       1.3        pk 
    893       1.3        pk 	while (newpages-- > 0) {
    894      1.20   thorpej 		if (pp->pr_roflags & PR_STATIC) {
    895       1.3        pk 			cp = storage;
    896       1.3        pk 			storage += pp->pr_pagesz;
    897       1.3        pk 		} else {
    898      1.21   thorpej 			simple_unlock(&pp->pr_slock);
    899       1.3        pk 			cp = (*pp->pr_alloc)(pp->pr_pagesz, 0, pp->pr_mtype);
    900      1.21   thorpej 			simple_lock(&pp->pr_slock);
    901       1.3        pk 		}
    902       1.2        pk 
    903       1.3        pk 		if (cp == NULL) {
    904      1.21   thorpej 			simple_unlock(&pp->pr_slock);
    905       1.1        pk 			return (ENOMEM);
    906       1.1        pk 		}
    907       1.1        pk 
    908       1.3        pk 		pool_prime_page(pp, cp);
    909       1.3        pk 		pp->pr_minpages++;
    910       1.1        pk 	}
    911       1.3        pk 
    912       1.3        pk 	pp->pr_minitems = newnitems;
    913       1.3        pk 
    914       1.3        pk 	if (pp->pr_minpages >= pp->pr_maxpages)
    915       1.3        pk 		pp->pr_maxpages = pp->pr_minpages + 1;	/* XXX */
    916       1.3        pk 
    917      1.21   thorpej 	simple_unlock(&pp->pr_slock);
    918       1.1        pk 	return (0);
    919       1.1        pk }
    920       1.3        pk 
    921       1.3        pk /*
    922       1.3        pk  * Add a page worth of items to the pool.
    923      1.21   thorpej  *
    924      1.21   thorpej  * Note, we must be called with the pool descriptor LOCKED.
    925       1.3        pk  */
    926      1.21   thorpej static void
    927       1.3        pk pool_prime_page(pp, storage)
    928       1.3        pk 	struct pool *pp;
    929       1.3        pk 	caddr_t storage;
    930       1.3        pk {
    931       1.3        pk 	struct pool_item *pi;
    932       1.3        pk 	struct pool_item_header *ph;
    933       1.3        pk 	caddr_t cp = storage;
    934       1.3        pk 	unsigned int align = pp->pr_align;
    935       1.3        pk 	unsigned int ioff = pp->pr_itemoffset;
    936       1.3        pk 	int n;
    937       1.3        pk 
    938      1.20   thorpej 	if ((pp->pr_roflags & PR_PHINPAGE) != 0) {
    939       1.3        pk 		ph = (struct pool_item_header *)(cp + pp->pr_phoffset);
    940       1.3        pk 	} else {
    941       1.3        pk 		ph = pool_get(&phpool, PR_URGENT);
    942       1.3        pk 		LIST_INSERT_HEAD(&pp->pr_hashtab[PR_HASH_INDEX(pp, cp)],
    943       1.3        pk 				 ph, ph_hashlist);
    944       1.3        pk 	}
    945       1.3        pk 
    946       1.3        pk 	/*
    947       1.3        pk 	 * Insert page header.
    948       1.3        pk 	 */
    949       1.3        pk 	TAILQ_INSERT_HEAD(&pp->pr_pagelist, ph, ph_pagelist);
    950       1.3        pk 	TAILQ_INIT(&ph->ph_itemlist);
    951       1.3        pk 	ph->ph_page = storage;
    952       1.3        pk 	ph->ph_nmissing = 0;
    953      1.21   thorpej 	memset(&ph->ph_time, 0, sizeof(ph->ph_time));
    954       1.3        pk 
    955       1.6   thorpej 	pp->pr_nidle++;
    956       1.6   thorpej 
    957       1.3        pk 	/*
    958       1.3        pk 	 * Color this page.
    959       1.3        pk 	 */
    960       1.3        pk 	cp = (caddr_t)(cp + pp->pr_curcolor);
    961       1.3        pk 	if ((pp->pr_curcolor += align) > pp->pr_maxcolor)
    962       1.3        pk 		pp->pr_curcolor = 0;
    963       1.3        pk 
    964       1.3        pk 	/*
    965       1.3        pk 	 * Adjust storage to apply aligment to `pr_itemoffset' in each item.
    966       1.3        pk 	 */
    967       1.3        pk 	if (ioff != 0)
    968       1.3        pk 		cp = (caddr_t)(cp + (align - ioff));
    969       1.3        pk 
    970       1.3        pk 	/*
    971       1.3        pk 	 * Insert remaining chunks on the bucket list.
    972       1.3        pk 	 */
    973       1.3        pk 	n = pp->pr_itemsperpage;
    974      1.20   thorpej 	pp->pr_nitems += n;
    975       1.3        pk 
    976       1.3        pk 	while (n--) {
    977       1.3        pk 		pi = (struct pool_item *)cp;
    978       1.3        pk 
    979       1.3        pk 		/* Insert on page list */
    980       1.3        pk 		TAILQ_INSERT_TAIL(&ph->ph_itemlist, pi, pi_list);
    981       1.3        pk #ifdef DIAGNOSTIC
    982       1.3        pk 		pi->pi_magic = PI_MAGIC;
    983       1.3        pk #endif
    984       1.3        pk 		cp = (caddr_t)(cp + pp->pr_size);
    985       1.3        pk 	}
    986       1.3        pk 
    987       1.3        pk 	/*
    988       1.3        pk 	 * If the pool was depleted, point at the new page.
    989       1.3        pk 	 */
    990       1.3        pk 	if (pp->pr_curpage == NULL)
    991       1.3        pk 		pp->pr_curpage = ph;
    992       1.3        pk 
    993       1.3        pk 	if (++pp->pr_npages > pp->pr_hiwat)
    994       1.3        pk 		pp->pr_hiwat = pp->pr_npages;
    995       1.3        pk }
    996       1.3        pk 
    997      1.20   thorpej /*
    998      1.20   thorpej  * Like pool_prime(), except this is used by pool_get() when nitems
    999      1.20   thorpej  * drops below the low water mark.  This is used to catch up nitmes
   1000      1.20   thorpej  * with the low water mark.
   1001      1.20   thorpej  *
   1002      1.21   thorpej  * Note 1, we never wait for memory here, we let the caller decide what to do.
   1003      1.20   thorpej  *
   1004      1.20   thorpej  * Note 2, this doesn't work with static pools.
   1005      1.20   thorpej  *
   1006      1.20   thorpej  * Note 3, we must be called with the pool already locked, and we return
   1007      1.20   thorpej  * with it locked.
   1008      1.20   thorpej  */
   1009      1.20   thorpej static int
   1010      1.20   thorpej pool_catchup(pp)
   1011      1.20   thorpej 	struct pool *pp;
   1012      1.20   thorpej {
   1013      1.20   thorpej 	caddr_t cp;
   1014      1.20   thorpej 	int error = 0;
   1015      1.20   thorpej 
   1016      1.20   thorpej 	if (pp->pr_roflags & PR_STATIC) {
   1017      1.20   thorpej 		/*
   1018      1.20   thorpej 		 * We dropped below the low water mark, and this is not a
   1019      1.20   thorpej 		 * good thing.  Log a warning.
   1020      1.21   thorpej 		 *
   1021      1.21   thorpej 		 * XXX: rate-limit this?
   1022      1.20   thorpej 		 */
   1023      1.20   thorpej 		printf("WARNING: static pool `%s' dropped below low water "
   1024      1.20   thorpej 		    "mark\n", pp->pr_wchan);
   1025      1.20   thorpej 		return (0);
   1026      1.20   thorpej 	}
   1027      1.20   thorpej 
   1028      1.21   thorpej 	while (pp->pr_nitems < pp->pr_minitems) {
   1029      1.20   thorpej 		/*
   1030      1.21   thorpej 		 * Call the page back-end allocator for more memory.
   1031      1.21   thorpej 		 *
   1032      1.21   thorpej 		 * XXX: We never wait, so should we bother unlocking
   1033      1.21   thorpej 		 * the pool descriptor?
   1034      1.20   thorpej 		 */
   1035      1.21   thorpej 		simple_unlock(&pp->pr_slock);
   1036      1.20   thorpej 		cp = (*pp->pr_alloc)(pp->pr_pagesz, 0, pp->pr_mtype);
   1037      1.21   thorpej 		simple_lock(&pp->pr_slock);
   1038      1.20   thorpej 		if (cp == NULL) {
   1039      1.20   thorpej 			error = ENOMEM;
   1040      1.20   thorpej 			break;
   1041      1.20   thorpej 		}
   1042      1.20   thorpej 		pool_prime_page(pp, cp);
   1043      1.20   thorpej 	}
   1044      1.20   thorpej 
   1045      1.20   thorpej 	return (error);
   1046      1.20   thorpej }
   1047      1.20   thorpej 
   1048       1.3        pk void
   1049       1.3        pk pool_setlowat(pp, n)
   1050       1.3        pk 	pool_handle_t	pp;
   1051       1.3        pk 	int n;
   1052       1.3        pk {
   1053      1.20   thorpej 	int error;
   1054      1.15        pk 
   1055      1.21   thorpej 	simple_lock(&pp->pr_slock);
   1056      1.21   thorpej 
   1057       1.3        pk 	pp->pr_minitems = n;
   1058      1.15        pk 	pp->pr_minpages = (n == 0)
   1059      1.15        pk 		? 0
   1060      1.18   thorpej 		: roundup(n, pp->pr_itemsperpage) / pp->pr_itemsperpage;
   1061      1.20   thorpej 
   1062      1.20   thorpej 	/* Make sure we're caught up with the newly-set low water mark. */
   1063      1.21   thorpej 	if ((error = pool_catchup(pp)) != 0) {
   1064      1.20   thorpej 		/*
   1065      1.20   thorpej 		 * XXX: Should we log a warning?  Should we set up a timeout
   1066      1.20   thorpej 		 * to try again in a second or so?  The latter could break
   1067      1.20   thorpej 		 * a caller's assumptions about interrupt protection, etc.
   1068      1.20   thorpej 		 */
   1069      1.20   thorpej 	}
   1070      1.21   thorpej 
   1071      1.21   thorpej 	simple_unlock(&pp->pr_slock);
   1072       1.3        pk }
   1073       1.3        pk 
   1074       1.3        pk void
   1075       1.3        pk pool_sethiwat(pp, n)
   1076       1.3        pk 	pool_handle_t	pp;
   1077       1.3        pk 	int n;
   1078       1.3        pk {
   1079      1.15        pk 
   1080      1.21   thorpej 	simple_lock(&pp->pr_slock);
   1081      1.21   thorpej 
   1082      1.15        pk 	pp->pr_maxpages = (n == 0)
   1083      1.15        pk 		? 0
   1084      1.18   thorpej 		: roundup(n, pp->pr_itemsperpage) / pp->pr_itemsperpage;
   1085      1.21   thorpej 
   1086      1.21   thorpej 	simple_unlock(&pp->pr_slock);
   1087       1.3        pk }
   1088       1.3        pk 
   1089      1.20   thorpej void
   1090      1.20   thorpej pool_sethardlimit(pp, n, warnmess, ratecap)
   1091      1.20   thorpej 	pool_handle_t pp;
   1092      1.20   thorpej 	int n;
   1093      1.20   thorpej 	const char *warnmess;
   1094      1.20   thorpej 	int ratecap;
   1095      1.20   thorpej {
   1096      1.20   thorpej 
   1097      1.21   thorpej 	simple_lock(&pp->pr_slock);
   1098      1.20   thorpej 
   1099      1.20   thorpej 	pp->pr_hardlimit = n;
   1100      1.20   thorpej 	pp->pr_hardlimit_warning = warnmess;
   1101      1.20   thorpej 	pp->pr_hardlimit_ratecap = ratecap;
   1102      1.20   thorpej 	memset(&pp->pr_hardlimit_warning_last, 0,
   1103      1.20   thorpej 	    sizeof(pp->pr_hardlimit_warning_last));
   1104      1.20   thorpej 
   1105      1.20   thorpej 	/*
   1106      1.21   thorpej 	 * In-line version of pool_sethiwat(), because we don't want to
   1107      1.21   thorpej 	 * release the lock.
   1108      1.20   thorpej 	 */
   1109      1.20   thorpej 	pp->pr_maxpages = (n == 0)
   1110      1.20   thorpej 		? 0
   1111      1.20   thorpej 		: roundup(n, pp->pr_itemsperpage) / pp->pr_itemsperpage;
   1112      1.21   thorpej 
   1113      1.21   thorpej 	simple_unlock(&pp->pr_slock);
   1114      1.20   thorpej }
   1115       1.3        pk 
   1116       1.3        pk /*
   1117       1.3        pk  * Default page allocator.
   1118       1.3        pk  */
   1119       1.3        pk static void *
   1120       1.3        pk pool_page_alloc(sz, flags, mtype)
   1121       1.3        pk 	unsigned long sz;
   1122       1.3        pk 	int flags;
   1123       1.3        pk 	int mtype;
   1124       1.3        pk {
   1125      1.11   thorpej 	boolean_t waitok = (flags & PR_WAITOK) ? TRUE : FALSE;
   1126       1.3        pk 
   1127      1.11   thorpej 	return ((void *)uvm_km_alloc_poolpage(waitok));
   1128       1.3        pk }
   1129       1.3        pk 
   1130       1.3        pk static void
   1131       1.3        pk pool_page_free(v, sz, mtype)
   1132       1.3        pk 	void *v;
   1133       1.3        pk 	unsigned long sz;
   1134       1.3        pk 	int mtype;
   1135       1.3        pk {
   1136       1.3        pk 
   1137      1.10       eeh 	uvm_km_free_poolpage((vaddr_t)v);
   1138       1.3        pk }
   1139      1.12   thorpej 
   1140      1.12   thorpej /*
   1141      1.12   thorpej  * Alternate pool page allocator for pools that know they will
   1142      1.12   thorpej  * never be accessed in interrupt context.
   1143      1.12   thorpej  */
   1144      1.12   thorpej void *
   1145      1.12   thorpej pool_page_alloc_nointr(sz, flags, mtype)
   1146      1.12   thorpej 	unsigned long sz;
   1147      1.12   thorpej 	int flags;
   1148      1.12   thorpej 	int mtype;
   1149      1.12   thorpej {
   1150      1.12   thorpej 	boolean_t waitok = (flags & PR_WAITOK) ? TRUE : FALSE;
   1151      1.12   thorpej 
   1152      1.12   thorpej 	return ((void *)uvm_km_alloc_poolpage1(kernel_map, uvm.kernel_object,
   1153      1.12   thorpej 	    waitok));
   1154      1.12   thorpej }
   1155      1.12   thorpej 
   1156      1.12   thorpej void
   1157      1.12   thorpej pool_page_free_nointr(v, sz, mtype)
   1158      1.12   thorpej 	void *v;
   1159      1.12   thorpej 	unsigned long sz;
   1160      1.12   thorpej 	int mtype;
   1161      1.12   thorpej {
   1162      1.12   thorpej 
   1163      1.12   thorpej 	uvm_km_free_poolpage1(kernel_map, (vaddr_t)v);
   1164      1.12   thorpej }
   1165      1.12   thorpej 
   1166       1.3        pk 
   1167       1.3        pk /*
   1168       1.3        pk  * Release all complete pages that have not been used recently.
   1169       1.3        pk  */
   1170       1.3        pk void
   1171      1.21   thorpej pool_reclaim(pp)
   1172       1.3        pk 	pool_handle_t pp;
   1173       1.3        pk {
   1174       1.3        pk 	struct pool_item_header *ph, *phnext;
   1175      1.21   thorpej 	struct timeval curtime;
   1176      1.21   thorpej 	int s;
   1177       1.3        pk 
   1178      1.20   thorpej 	if (pp->pr_roflags & PR_STATIC)
   1179       1.3        pk 		return;
   1180       1.3        pk 
   1181      1.21   thorpej 	if (simple_lock_try(&pp->pr_slock) == 0)
   1182       1.3        pk 		return;
   1183       1.3        pk 
   1184      1.21   thorpej 	s = splclock();
   1185      1.21   thorpej 	curtime = mono_time;
   1186      1.21   thorpej 	splx(s);
   1187      1.21   thorpej 
   1188       1.3        pk 	for (ph = TAILQ_FIRST(&pp->pr_pagelist); ph != NULL; ph = phnext) {
   1189       1.3        pk 		phnext = TAILQ_NEXT(ph, ph_pagelist);
   1190       1.3        pk 
   1191       1.3        pk 		/* Check our minimum page claim */
   1192       1.3        pk 		if (pp->pr_npages <= pp->pr_minpages)
   1193       1.3        pk 			break;
   1194       1.3        pk 
   1195       1.3        pk 		if (ph->ph_nmissing == 0) {
   1196       1.3        pk 			struct timeval diff;
   1197       1.3        pk 			timersub(&curtime, &ph->ph_time, &diff);
   1198       1.3        pk 			if (diff.tv_sec < pool_inactive_time)
   1199       1.3        pk 				continue;
   1200      1.21   thorpej 
   1201      1.21   thorpej 			/*
   1202      1.21   thorpej 			 * If freeing this page would put us below
   1203      1.21   thorpej 			 * the low water mark, stop now.
   1204      1.21   thorpej 			 */
   1205      1.21   thorpej 			if ((pp->pr_nitems - pp->pr_itemsperpage) <
   1206      1.21   thorpej 			    pp->pr_minitems)
   1207      1.21   thorpej 				break;
   1208      1.21   thorpej 
   1209       1.3        pk 			pr_rmpage(pp, ph);
   1210       1.3        pk 		}
   1211       1.3        pk 	}
   1212       1.3        pk 
   1213      1.21   thorpej 	simple_unlock(&pp->pr_slock);
   1214       1.3        pk }
   1215       1.3        pk 
   1216       1.3        pk 
   1217       1.3        pk /*
   1218       1.3        pk  * Drain pools, one at a time.
   1219      1.21   thorpej  *
   1220      1.21   thorpej  * Note, we must never be called from an interrupt context.
   1221       1.3        pk  */
   1222       1.3        pk void
   1223       1.3        pk pool_drain(arg)
   1224       1.3        pk 	void *arg;
   1225       1.3        pk {
   1226       1.3        pk 	struct pool *pp;
   1227  1.21.2.2   thorpej 	int s;
   1228       1.3        pk 
   1229  1.21.2.2   thorpej 	s = splimp();
   1230  1.21.2.2   thorpej 	simple_lock(&pool_head_slock);
   1231  1.21.2.2   thorpej 
   1232  1.21.2.2   thorpej 	if (drainpp == NULL && (drainpp = TAILQ_FIRST(&pool_head)) == NULL)
   1233  1.21.2.2   thorpej 		goto out;
   1234       1.3        pk 
   1235       1.3        pk 	pp = drainpp;
   1236       1.3        pk 	drainpp = TAILQ_NEXT(pp, pr_poollist);
   1237       1.3        pk 
   1238       1.3        pk 	pool_reclaim(pp);
   1239  1.21.2.2   thorpej 
   1240  1.21.2.2   thorpej  out:
   1241  1.21.2.2   thorpej 	simple_unlock(&pool_head_slock);
   1242       1.3        pk 	splx(s);
   1243       1.3        pk }
   1244       1.3        pk 
   1245       1.3        pk 
   1246      1.17   thorpej #if defined(POOL_DIAGNOSTIC) || defined(DEBUG)
   1247       1.3        pk /*
   1248       1.3        pk  * Diagnostic helpers.
   1249       1.3        pk  */
   1250       1.3        pk void
   1251       1.3        pk pool_print(pp, label)
   1252       1.3        pk 	struct pool *pp;
   1253      1.21   thorpej 	const char *label;
   1254      1.21   thorpej {
   1255      1.21   thorpej 	int s;
   1256      1.21   thorpej 
   1257      1.21   thorpej 	s = splimp();
   1258      1.21   thorpej 	simple_lock(&pp->pr_slock);
   1259      1.21   thorpej 	pool_print1(pp, label);
   1260      1.21   thorpej 	simple_unlock(&pp->pr_slock);
   1261      1.21   thorpej 	splx(s);
   1262      1.21   thorpej }
   1263      1.21   thorpej 
   1264      1.21   thorpej static void
   1265      1.21   thorpej pool_print1(pp, label)
   1266      1.21   thorpej 	struct pool *pp;
   1267      1.21   thorpej 	const char *label;
   1268       1.3        pk {
   1269       1.3        pk 
   1270       1.3        pk 	if (label != NULL)
   1271       1.3        pk 		printf("%s: ", label);
   1272       1.3        pk 
   1273       1.3        pk 	printf("pool %s: nalloc %lu nfree %lu npagealloc %lu npagefree %lu\n"
   1274       1.6   thorpej 	       "         npages %u minitems %u itemsperpage %u itemoffset %u\n"
   1275       1.6   thorpej 	       "         nidle %lu\n",
   1276       1.3        pk 		pp->pr_wchan,
   1277       1.3        pk 		pp->pr_nget,
   1278       1.3        pk 		pp->pr_nput,
   1279       1.3        pk 		pp->pr_npagealloc,
   1280       1.3        pk 		pp->pr_npagefree,
   1281       1.3        pk 		pp->pr_npages,
   1282       1.3        pk 		pp->pr_minitems,
   1283       1.3        pk 		pp->pr_itemsperpage,
   1284       1.6   thorpej 		pp->pr_itemoffset,
   1285       1.6   thorpej 		pp->pr_nidle);
   1286       1.3        pk }
   1287       1.3        pk 
   1288       1.3        pk int
   1289       1.3        pk pool_chk(pp, label)
   1290       1.3        pk 	struct pool *pp;
   1291       1.3        pk 	char *label;
   1292       1.3        pk {
   1293       1.3        pk 	struct pool_item_header *ph;
   1294       1.3        pk 	int r = 0;
   1295       1.3        pk 
   1296      1.21   thorpej 	simple_lock(&pp->pr_slock);
   1297       1.3        pk 
   1298       1.3        pk 	for (ph = TAILQ_FIRST(&pp->pr_pagelist); ph != NULL;
   1299       1.3        pk 	     ph = TAILQ_NEXT(ph, ph_pagelist)) {
   1300       1.3        pk 
   1301       1.3        pk 		struct pool_item *pi;
   1302       1.3        pk 		int n;
   1303       1.3        pk 		caddr_t page;
   1304       1.3        pk 
   1305       1.3        pk 		page = (caddr_t)((u_long)ph & pp->pr_pagemask);
   1306      1.20   thorpej 		if (page != ph->ph_page &&
   1307      1.20   thorpej 		    (pp->pr_roflags & PR_PHINPAGE) != 0) {
   1308       1.3        pk 			if (label != NULL)
   1309       1.3        pk 				printf("%s: ", label);
   1310      1.16    briggs 			printf("pool(%p:%s): page inconsistency: page %p;"
   1311      1.16    briggs 			       " at page head addr %p (p %p)\n", pp,
   1312       1.3        pk 				pp->pr_wchan, ph->ph_page,
   1313       1.3        pk 				ph, page);
   1314       1.3        pk 			r++;
   1315       1.3        pk 			goto out;
   1316       1.3        pk 		}
   1317       1.3        pk 
   1318       1.3        pk 		for (pi = TAILQ_FIRST(&ph->ph_itemlist), n = 0;
   1319       1.3        pk 		     pi != NULL;
   1320       1.3        pk 		     pi = TAILQ_NEXT(pi,pi_list), n++) {
   1321       1.3        pk 
   1322       1.3        pk #ifdef DIAGNOSTIC
   1323       1.3        pk 			if (pi->pi_magic != PI_MAGIC) {
   1324       1.3        pk 				if (label != NULL)
   1325       1.3        pk 					printf("%s: ", label);
   1326       1.3        pk 				printf("pool(%s): free list modified: magic=%x;"
   1327       1.3        pk 				       " page %p; item ordinal %d;"
   1328       1.3        pk 				       " addr %p (p %p)\n",
   1329       1.3        pk 					pp->pr_wchan, pi->pi_magic, ph->ph_page,
   1330       1.3        pk 					n, pi, page);
   1331       1.3        pk 				panic("pool");
   1332       1.3        pk 			}
   1333       1.3        pk #endif
   1334       1.3        pk 			page = (caddr_t)((u_long)pi & pp->pr_pagemask);
   1335       1.3        pk 			if (page == ph->ph_page)
   1336       1.3        pk 				continue;
   1337       1.3        pk 
   1338       1.3        pk 			if (label != NULL)
   1339       1.3        pk 				printf("%s: ", label);
   1340      1.16    briggs 			printf("pool(%p:%s): page inconsistency: page %p;"
   1341      1.16    briggs 			       " item ordinal %d; addr %p (p %p)\n", pp,
   1342       1.3        pk 				pp->pr_wchan, ph->ph_page,
   1343       1.3        pk 				n, pi, page);
   1344       1.3        pk 			r++;
   1345       1.3        pk 			goto out;
   1346       1.3        pk 		}
   1347       1.3        pk 	}
   1348       1.3        pk out:
   1349      1.21   thorpej 	simple_unlock(&pp->pr_slock);
   1350       1.3        pk 	return (r);
   1351       1.3        pk }
   1352      1.17   thorpej #endif /* POOL_DIAGNOSTIC || DEBUG */
   1353