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