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