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