Home | History | Annotate | Line # | Download | only in kern
subr_pool.c revision 1.128.2.2
      1  1.128.2.2        ad /*	$NetBSD: subr_pool.c,v 1.128.2.2 2007/03/13 17:50:58 ad Exp $	*/
      2        1.1        pk 
      3        1.1        pk /*-
      4  1.128.2.2        ad  * Copyright (c) 1997, 1999, 2000, 2002, 2007 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.64     lukem 
     40       1.64     lukem #include <sys/cdefs.h>
     41  1.128.2.2        ad __KERNEL_RCSID(0, "$NetBSD: subr_pool.c,v 1.128.2.2 2007/03/13 17:50:58 ad Exp $");
     42       1.24    scottr 
     43       1.25   thorpej #include "opt_pool.h"
     44       1.24    scottr #include "opt_poollog.h"
     45       1.28   thorpej #include "opt_lockdebug.h"
     46        1.1        pk 
     47        1.1        pk #include <sys/param.h>
     48        1.1        pk #include <sys/systm.h>
     49        1.1        pk #include <sys/proc.h>
     50        1.1        pk #include <sys/errno.h>
     51        1.1        pk #include <sys/kernel.h>
     52        1.1        pk #include <sys/malloc.h>
     53        1.1        pk #include <sys/lock.h>
     54        1.1        pk #include <sys/pool.h>
     55       1.20   thorpej #include <sys/syslog.h>
     56      1.125        ad #include <sys/debug.h>
     57        1.3        pk 
     58        1.3        pk #include <uvm/uvm.h>
     59        1.3        pk 
     60        1.1        pk /*
     61        1.1        pk  * Pool resource management utility.
     62        1.3        pk  *
     63       1.88       chs  * Memory is allocated in pages which are split into pieces according to
     64       1.88       chs  * the pool item size. Each page is kept on one of three lists in the
     65       1.88       chs  * pool structure: `pr_emptypages', `pr_fullpages' and `pr_partpages',
     66       1.88       chs  * for empty, full and partially-full pages respectively. The individual
     67       1.88       chs  * pool items are on a linked list headed by `ph_itemlist' in each page
     68       1.88       chs  * header. The memory for building the page list is either taken from
     69       1.88       chs  * the allocated pages themselves (for small pool items) or taken from
     70       1.88       chs  * an internal pool of page headers (`phpool').
     71        1.1        pk  */
     72        1.1        pk 
     73        1.3        pk /* List of all pools */
     74      1.102       chs LIST_HEAD(,pool) pool_head = LIST_HEAD_INITIALIZER(pool_head);
     75        1.3        pk 
     76        1.3        pk /* Private pool for page header structures */
     77       1.97      yamt #define	PHPOOL_MAX	8
     78       1.97      yamt static struct pool phpool[PHPOOL_MAX];
     79       1.97      yamt #define	PHPOOL_FREELIST_NELEM(idx)	(((idx) == 0) ? 0 : (1 << (idx)))
     80        1.3        pk 
     81       1.62     bjh21 #ifdef POOL_SUBPAGE
     82       1.62     bjh21 /* Pool of subpages for use by normal pools. */
     83       1.62     bjh21 static struct pool psppool;
     84       1.62     bjh21 #endif
     85       1.62     bjh21 
     86      1.117      yamt static SLIST_HEAD(, pool_allocator) pa_deferinitq =
     87      1.117      yamt     SLIST_HEAD_INITIALIZER(pa_deferinitq);
     88      1.117      yamt 
     89       1.98      yamt static void *pool_page_alloc_meta(struct pool *, int);
     90       1.98      yamt static void pool_page_free_meta(struct pool *, void *);
     91       1.98      yamt 
     92       1.98      yamt /* allocator for pool metadata */
     93       1.98      yamt static struct pool_allocator pool_allocator_meta = {
     94      1.117      yamt 	pool_page_alloc_meta, pool_page_free_meta,
     95      1.117      yamt 	.pa_backingmapptr = &kmem_map,
     96       1.98      yamt };
     97       1.98      yamt 
     98        1.3        pk /* # of seconds to retain page after last use */
     99        1.3        pk int pool_inactive_time = 10;
    100        1.3        pk 
    101        1.3        pk /* Next candidate for drainage (see pool_drain()) */
    102       1.23   thorpej static struct pool	*drainpp;
    103       1.23   thorpej 
    104  1.128.2.2        ad /* This lock protects both pool_head and drainpp. */
    105  1.128.2.2        ad static kmutex_t pool_head_lock;
    106        1.3        pk 
    107       1.99      yamt typedef uint8_t pool_item_freelist_t;
    108       1.99      yamt 
    109        1.3        pk struct pool_item_header {
    110        1.3        pk 	/* Page headers */
    111       1.88       chs 	LIST_ENTRY(pool_item_header)
    112        1.3        pk 				ph_pagelist;	/* pool page list */
    113       1.88       chs 	SPLAY_ENTRY(pool_item_header)
    114       1.88       chs 				ph_node;	/* Off-page page headers */
    115      1.128  christos 	void *			ph_page;	/* this page's address */
    116        1.3        pk 	struct timeval		ph_time;	/* last referenced */
    117       1.97      yamt 	union {
    118       1.97      yamt 		/* !PR_NOTOUCH */
    119       1.97      yamt 		struct {
    120      1.102       chs 			LIST_HEAD(, pool_item)
    121       1.97      yamt 				phu_itemlist;	/* chunk list for this page */
    122       1.97      yamt 		} phu_normal;
    123       1.97      yamt 		/* PR_NOTOUCH */
    124       1.97      yamt 		struct {
    125       1.97      yamt 			uint16_t
    126       1.97      yamt 				phu_off;	/* start offset in page */
    127       1.99      yamt 			pool_item_freelist_t
    128       1.97      yamt 				phu_firstfree;	/* first free item */
    129       1.99      yamt 			/*
    130       1.99      yamt 			 * XXX it might be better to use
    131       1.99      yamt 			 * a simple bitmap and ffs(3)
    132       1.99      yamt 			 */
    133       1.97      yamt 		} phu_notouch;
    134       1.97      yamt 	} ph_u;
    135       1.97      yamt 	uint16_t		ph_nmissing;	/* # of chunks in use */
    136        1.3        pk };
    137       1.97      yamt #define	ph_itemlist	ph_u.phu_normal.phu_itemlist
    138       1.97      yamt #define	ph_off		ph_u.phu_notouch.phu_off
    139       1.97      yamt #define	ph_firstfree	ph_u.phu_notouch.phu_firstfree
    140        1.3        pk 
    141        1.1        pk struct pool_item {
    142        1.3        pk #ifdef DIAGNOSTIC
    143       1.82   thorpej 	u_int pi_magic;
    144       1.33       chs #endif
    145       1.82   thorpej #define	PI_MAGIC 0xdeadbeefU
    146        1.3        pk 	/* Other entries use only this list entry */
    147      1.102       chs 	LIST_ENTRY(pool_item)	pi_list;
    148        1.3        pk };
    149        1.3        pk 
    150       1.53   thorpej #define	POOL_NEEDS_CATCHUP(pp)						\
    151       1.53   thorpej 	((pp)->pr_nitems < (pp)->pr_minitems)
    152       1.53   thorpej 
    153       1.43   thorpej /*
    154       1.43   thorpej  * Pool cache management.
    155       1.43   thorpej  *
    156       1.43   thorpej  * Pool caches provide a way for constructed objects to be cached by the
    157       1.43   thorpej  * pool subsystem.  This can lead to performance improvements by avoiding
    158       1.43   thorpej  * needless object construction/destruction; it is deferred until absolutely
    159       1.43   thorpej  * necessary.
    160       1.43   thorpej  *
    161       1.43   thorpej  * Caches are grouped into cache groups.  Each cache group references
    162       1.43   thorpej  * up to 16 constructed objects.  When a cache allocates an object
    163       1.43   thorpej  * from the pool, it calls the object's constructor and places it into
    164       1.43   thorpej  * a cache group.  When a cache group frees an object back to the pool,
    165       1.43   thorpej  * it first calls the object's destructor.  This allows the object to
    166       1.43   thorpej  * persist in constructed form while freed to the cache.
    167       1.43   thorpej  *
    168       1.43   thorpej  * Multiple caches may exist for each pool.  This allows a single
    169       1.43   thorpej  * object type to have multiple constructed forms.  The pool references
    170       1.43   thorpej  * each cache, so that when a pool is drained by the pagedaemon, it can
    171       1.43   thorpej  * drain each individual cache as well.  Each time a cache is drained,
    172       1.43   thorpej  * the most idle cache group is freed to the pool in its entirety.
    173       1.43   thorpej  *
    174       1.43   thorpej  * Pool caches are layed on top of pools.  By layering them, we can avoid
    175       1.43   thorpej  * the complexity of cache management for pools which would not benefit
    176       1.43   thorpej  * from it.
    177       1.43   thorpej  */
    178       1.43   thorpej 
    179       1.43   thorpej /* The cache group pool. */
    180       1.43   thorpej static struct pool pcgpool;
    181        1.3        pk 
    182      1.102       chs static void	pool_cache_reclaim(struct pool_cache *, struct pool_pagelist *,
    183      1.102       chs 				   struct pool_cache_grouplist *);
    184      1.102       chs static void	pcg_grouplist_free(struct pool_cache_grouplist *);
    185        1.3        pk 
    186       1.42   thorpej static int	pool_catchup(struct pool *);
    187      1.128  christos static void	pool_prime_page(struct pool *, void *,
    188       1.55   thorpej 		    struct pool_item_header *);
    189       1.88       chs static void	pool_update_curpage(struct pool *);
    190       1.66   thorpej 
    191      1.113      yamt static int	pool_grow(struct pool *, int);
    192      1.117      yamt static void	*pool_allocator_alloc(struct pool *, int);
    193      1.117      yamt static void	pool_allocator_free(struct pool *, void *);
    194        1.3        pk 
    195       1.97      yamt static void pool_print_pagelist(struct pool *, struct pool_pagelist *,
    196       1.88       chs 	void (*)(const char *, ...));
    197       1.42   thorpej static void pool_print1(struct pool *, const char *,
    198       1.42   thorpej 	void (*)(const char *, ...));
    199        1.3        pk 
    200       1.88       chs static int pool_chk_page(struct pool *, const char *,
    201       1.88       chs 			 struct pool_item_header *);
    202       1.88       chs 
    203        1.3        pk /*
    204       1.52   thorpej  * Pool log entry. An array of these is allocated in pool_init().
    205        1.3        pk  */
    206        1.3        pk struct pool_log {
    207        1.3        pk 	const char	*pl_file;
    208        1.3        pk 	long		pl_line;
    209        1.3        pk 	int		pl_action;
    210       1.25   thorpej #define	PRLOG_GET	1
    211       1.25   thorpej #define	PRLOG_PUT	2
    212        1.3        pk 	void		*pl_addr;
    213        1.1        pk };
    214        1.1        pk 
    215       1.86      matt #ifdef POOL_DIAGNOSTIC
    216        1.3        pk /* Number of entries in pool log buffers */
    217       1.17   thorpej #ifndef POOL_LOGSIZE
    218       1.17   thorpej #define	POOL_LOGSIZE	10
    219       1.17   thorpej #endif
    220       1.17   thorpej 
    221       1.17   thorpej int pool_logsize = POOL_LOGSIZE;
    222        1.1        pk 
    223      1.110     perry static inline void
    224       1.42   thorpej pr_log(struct pool *pp, void *v, int action, const char *file, long line)
    225        1.3        pk {
    226        1.3        pk 	int n = pp->pr_curlogentry;
    227        1.3        pk 	struct pool_log *pl;
    228        1.3        pk 
    229       1.20   thorpej 	if ((pp->pr_roflags & PR_LOGGING) == 0)
    230        1.3        pk 		return;
    231        1.3        pk 
    232        1.3        pk 	/*
    233        1.3        pk 	 * Fill in the current entry. Wrap around and overwrite
    234        1.3        pk 	 * the oldest entry if necessary.
    235        1.3        pk 	 */
    236        1.3        pk 	pl = &pp->pr_log[n];
    237        1.3        pk 	pl->pl_file = file;
    238        1.3        pk 	pl->pl_line = line;
    239        1.3        pk 	pl->pl_action = action;
    240        1.3        pk 	pl->pl_addr = v;
    241        1.3        pk 	if (++n >= pp->pr_logsize)
    242        1.3        pk 		n = 0;
    243        1.3        pk 	pp->pr_curlogentry = n;
    244        1.3        pk }
    245        1.3        pk 
    246        1.3        pk static void
    247       1.42   thorpej pr_printlog(struct pool *pp, struct pool_item *pi,
    248       1.42   thorpej     void (*pr)(const char *, ...))
    249        1.3        pk {
    250        1.3        pk 	int i = pp->pr_logsize;
    251        1.3        pk 	int n = pp->pr_curlogentry;
    252        1.3        pk 
    253       1.20   thorpej 	if ((pp->pr_roflags & PR_LOGGING) == 0)
    254        1.3        pk 		return;
    255        1.3        pk 
    256        1.3        pk 	/*
    257        1.3        pk 	 * Print all entries in this pool's log.
    258        1.3        pk 	 */
    259        1.3        pk 	while (i-- > 0) {
    260        1.3        pk 		struct pool_log *pl = &pp->pr_log[n];
    261        1.3        pk 		if (pl->pl_action != 0) {
    262       1.25   thorpej 			if (pi == NULL || pi == pl->pl_addr) {
    263       1.25   thorpej 				(*pr)("\tlog entry %d:\n", i);
    264       1.25   thorpej 				(*pr)("\t\taction = %s, addr = %p\n",
    265       1.25   thorpej 				    pl->pl_action == PRLOG_GET ? "get" : "put",
    266       1.25   thorpej 				    pl->pl_addr);
    267       1.25   thorpej 				(*pr)("\t\tfile: %s at line %lu\n",
    268       1.25   thorpej 				    pl->pl_file, pl->pl_line);
    269       1.25   thorpej 			}
    270        1.3        pk 		}
    271        1.3        pk 		if (++n >= pp->pr_logsize)
    272        1.3        pk 			n = 0;
    273        1.3        pk 	}
    274        1.3        pk }
    275       1.25   thorpej 
    276      1.110     perry static inline void
    277       1.42   thorpej pr_enter(struct pool *pp, const char *file, long line)
    278       1.25   thorpej {
    279       1.25   thorpej 
    280       1.34   thorpej 	if (__predict_false(pp->pr_entered_file != NULL)) {
    281       1.25   thorpej 		printf("pool %s: reentrancy at file %s line %ld\n",
    282       1.25   thorpej 		    pp->pr_wchan, file, line);
    283       1.25   thorpej 		printf("         previous entry at file %s line %ld\n",
    284       1.25   thorpej 		    pp->pr_entered_file, pp->pr_entered_line);
    285       1.25   thorpej 		panic("pr_enter");
    286       1.25   thorpej 	}
    287       1.25   thorpej 
    288       1.25   thorpej 	pp->pr_entered_file = file;
    289       1.25   thorpej 	pp->pr_entered_line = line;
    290       1.25   thorpej }
    291       1.25   thorpej 
    292      1.110     perry static inline void
    293       1.42   thorpej pr_leave(struct pool *pp)
    294       1.25   thorpej {
    295       1.25   thorpej 
    296       1.34   thorpej 	if (__predict_false(pp->pr_entered_file == NULL)) {
    297       1.25   thorpej 		printf("pool %s not entered?\n", pp->pr_wchan);
    298       1.25   thorpej 		panic("pr_leave");
    299       1.25   thorpej 	}
    300       1.25   thorpej 
    301       1.25   thorpej 	pp->pr_entered_file = NULL;
    302       1.25   thorpej 	pp->pr_entered_line = 0;
    303       1.25   thorpej }
    304       1.25   thorpej 
    305      1.110     perry static inline void
    306       1.42   thorpej pr_enter_check(struct pool *pp, void (*pr)(const char *, ...))
    307       1.25   thorpej {
    308       1.25   thorpej 
    309       1.25   thorpej 	if (pp->pr_entered_file != NULL)
    310       1.25   thorpej 		(*pr)("\n\tcurrently entered from file %s line %ld\n",
    311       1.25   thorpej 		    pp->pr_entered_file, pp->pr_entered_line);
    312       1.25   thorpej }
    313        1.3        pk #else
    314       1.25   thorpej #define	pr_log(pp, v, action, file, line)
    315       1.25   thorpej #define	pr_printlog(pp, pi, pr)
    316       1.25   thorpej #define	pr_enter(pp, file, line)
    317       1.25   thorpej #define	pr_leave(pp)
    318       1.25   thorpej #define	pr_enter_check(pp, pr)
    319       1.59   thorpej #endif /* POOL_DIAGNOSTIC */
    320        1.3        pk 
    321      1.110     perry static inline int
    322       1.97      yamt pr_item_notouch_index(const struct pool *pp, const struct pool_item_header *ph,
    323       1.97      yamt     const void *v)
    324       1.97      yamt {
    325       1.97      yamt 	const char *cp = v;
    326       1.97      yamt 	int idx;
    327       1.97      yamt 
    328       1.97      yamt 	KASSERT(pp->pr_roflags & PR_NOTOUCH);
    329      1.128  christos 	idx = (cp - (char *)ph->ph_page - ph->ph_off) / pp->pr_size;
    330       1.97      yamt 	KASSERT(idx < pp->pr_itemsperpage);
    331       1.97      yamt 	return idx;
    332       1.97      yamt }
    333       1.97      yamt 
    334       1.99      yamt #define	PR_FREELIST_ALIGN(p) \
    335       1.99      yamt 	roundup((uintptr_t)(p), sizeof(pool_item_freelist_t))
    336       1.99      yamt #define	PR_FREELIST(ph)	((pool_item_freelist_t *)PR_FREELIST_ALIGN((ph) + 1))
    337       1.99      yamt #define	PR_INDEX_USED	((pool_item_freelist_t)-1)
    338       1.99      yamt #define	PR_INDEX_EOL	((pool_item_freelist_t)-2)
    339       1.97      yamt 
    340      1.110     perry static inline void
    341       1.97      yamt pr_item_notouch_put(const struct pool *pp, struct pool_item_header *ph,
    342       1.97      yamt     void *obj)
    343       1.97      yamt {
    344       1.97      yamt 	int idx = pr_item_notouch_index(pp, ph, obj);
    345       1.99      yamt 	pool_item_freelist_t *freelist = PR_FREELIST(ph);
    346       1.97      yamt 
    347       1.97      yamt 	KASSERT(freelist[idx] == PR_INDEX_USED);
    348       1.97      yamt 	freelist[idx] = ph->ph_firstfree;
    349       1.97      yamt 	ph->ph_firstfree = idx;
    350       1.97      yamt }
    351       1.97      yamt 
    352      1.110     perry static inline void *
    353       1.97      yamt pr_item_notouch_get(const struct pool *pp, struct pool_item_header *ph)
    354       1.97      yamt {
    355       1.97      yamt 	int idx = ph->ph_firstfree;
    356       1.99      yamt 	pool_item_freelist_t *freelist = PR_FREELIST(ph);
    357       1.97      yamt 
    358       1.97      yamt 	KASSERT(freelist[idx] != PR_INDEX_USED);
    359       1.97      yamt 	ph->ph_firstfree = freelist[idx];
    360       1.97      yamt 	freelist[idx] = PR_INDEX_USED;
    361       1.97      yamt 
    362      1.128  christos 	return (char *)ph->ph_page + ph->ph_off + idx * pp->pr_size;
    363       1.97      yamt }
    364       1.97      yamt 
    365      1.110     perry static inline int
    366       1.88       chs phtree_compare(struct pool_item_header *a, struct pool_item_header *b)
    367       1.88       chs {
    368      1.121      yamt 
    369      1.121      yamt 	/*
    370      1.121      yamt 	 * we consider pool_item_header with smaller ph_page bigger.
    371      1.121      yamt 	 * (this unnatural ordering is for the benefit of pr_find_pagehead.)
    372      1.121      yamt 	 */
    373      1.121      yamt 
    374       1.88       chs 	if (a->ph_page < b->ph_page)
    375      1.121      yamt 		return (1);
    376      1.121      yamt 	else if (a->ph_page > b->ph_page)
    377       1.88       chs 		return (-1);
    378       1.88       chs 	else
    379       1.88       chs 		return (0);
    380       1.88       chs }
    381       1.88       chs 
    382       1.88       chs SPLAY_PROTOTYPE(phtree, pool_item_header, ph_node, phtree_compare);
    383       1.88       chs SPLAY_GENERATE(phtree, pool_item_header, ph_node, phtree_compare);
    384       1.88       chs 
    385        1.3        pk /*
    386      1.121      yamt  * Return the pool page header based on item address.
    387        1.3        pk  */
    388      1.110     perry static inline struct pool_item_header *
    389      1.121      yamt pr_find_pagehead(struct pool *pp, void *v)
    390        1.3        pk {
    391       1.88       chs 	struct pool_item_header *ph, tmp;
    392        1.3        pk 
    393      1.121      yamt 	if ((pp->pr_roflags & PR_NOALIGN) != 0) {
    394      1.128  christos 		tmp.ph_page = (void *)(uintptr_t)v;
    395      1.121      yamt 		ph = SPLAY_FIND(phtree, &pp->pr_phtree, &tmp);
    396      1.121      yamt 		if (ph == NULL) {
    397      1.121      yamt 			ph = SPLAY_ROOT(&pp->pr_phtree);
    398      1.121      yamt 			if (ph != NULL && phtree_compare(&tmp, ph) >= 0) {
    399      1.121      yamt 				ph = SPLAY_NEXT(phtree, &pp->pr_phtree, ph);
    400      1.121      yamt 			}
    401      1.121      yamt 			KASSERT(ph == NULL || phtree_compare(&tmp, ph) < 0);
    402      1.121      yamt 		}
    403      1.121      yamt 	} else {
    404      1.128  christos 		void *page =
    405      1.128  christos 		    (void *)((uintptr_t)v & pp->pr_alloc->pa_pagemask);
    406      1.121      yamt 
    407      1.121      yamt 		if ((pp->pr_roflags & PR_PHINPAGE) != 0) {
    408      1.128  christos 			ph = (struct pool_item_header *)((char *)page + pp->pr_phoffset);
    409      1.121      yamt 		} else {
    410      1.121      yamt 			tmp.ph_page = page;
    411      1.121      yamt 			ph = SPLAY_FIND(phtree, &pp->pr_phtree, &tmp);
    412      1.121      yamt 		}
    413      1.121      yamt 	}
    414        1.3        pk 
    415      1.121      yamt 	KASSERT(ph == NULL || ((pp->pr_roflags & PR_PHINPAGE) != 0) ||
    416      1.128  christos 	    ((char *)ph->ph_page <= (char *)v &&
    417      1.128  christos 	    (char *)v < (char *)ph->ph_page + pp->pr_alloc->pa_pagesz));
    418       1.88       chs 	return ph;
    419        1.3        pk }
    420        1.3        pk 
    421      1.101   thorpej static void
    422      1.101   thorpej pr_pagelist_free(struct pool *pp, struct pool_pagelist *pq)
    423      1.101   thorpej {
    424      1.101   thorpej 	struct pool_item_header *ph;
    425      1.101   thorpej 
    426      1.101   thorpej 	while ((ph = LIST_FIRST(pq)) != NULL) {
    427      1.101   thorpej 		LIST_REMOVE(ph, ph_pagelist);
    428      1.101   thorpej 		pool_allocator_free(pp, ph->ph_page);
    429  1.128.2.2        ad 		if ((pp->pr_roflags & PR_PHINPAGE) == 0)
    430      1.101   thorpej 			pool_put(pp->pr_phpool, ph);
    431      1.101   thorpej 	}
    432      1.101   thorpej }
    433      1.101   thorpej 
    434        1.3        pk /*
    435        1.3        pk  * Remove a page from the pool.
    436        1.3        pk  */
    437      1.110     perry static inline void
    438       1.61       chs pr_rmpage(struct pool *pp, struct pool_item_header *ph,
    439       1.61       chs      struct pool_pagelist *pq)
    440        1.3        pk {
    441        1.3        pk 
    442  1.128.2.2        ad 	KASSERT(mutex_owned(&pp->pr_lock));
    443       1.91      yamt 
    444        1.3        pk 	/*
    445        1.7   thorpej 	 * If the page was idle, decrement the idle page count.
    446        1.3        pk 	 */
    447        1.6   thorpej 	if (ph->ph_nmissing == 0) {
    448        1.6   thorpej #ifdef DIAGNOSTIC
    449        1.6   thorpej 		if (pp->pr_nidle == 0)
    450        1.6   thorpej 			panic("pr_rmpage: nidle inconsistent");
    451       1.20   thorpej 		if (pp->pr_nitems < pp->pr_itemsperpage)
    452       1.20   thorpej 			panic("pr_rmpage: nitems inconsistent");
    453        1.6   thorpej #endif
    454        1.6   thorpej 		pp->pr_nidle--;
    455        1.6   thorpej 	}
    456        1.7   thorpej 
    457       1.20   thorpej 	pp->pr_nitems -= pp->pr_itemsperpage;
    458       1.20   thorpej 
    459        1.7   thorpej 	/*
    460      1.101   thorpej 	 * Unlink the page from the pool and queue it for release.
    461        1.7   thorpej 	 */
    462       1.88       chs 	LIST_REMOVE(ph, ph_pagelist);
    463       1.91      yamt 	if ((pp->pr_roflags & PR_PHINPAGE) == 0)
    464       1.91      yamt 		SPLAY_REMOVE(phtree, &pp->pr_phtree, ph);
    465      1.101   thorpej 	LIST_INSERT_HEAD(pq, ph, ph_pagelist);
    466      1.101   thorpej 
    467        1.7   thorpej 	pp->pr_npages--;
    468        1.7   thorpej 	pp->pr_npagefree++;
    469        1.6   thorpej 
    470       1.88       chs 	pool_update_curpage(pp);
    471        1.3        pk }
    472        1.3        pk 
    473      1.126   thorpej static bool
    474      1.117      yamt pa_starved_p(struct pool_allocator *pa)
    475      1.117      yamt {
    476      1.117      yamt 
    477      1.117      yamt 	if (pa->pa_backingmap != NULL) {
    478      1.117      yamt 		return vm_map_starved_p(pa->pa_backingmap);
    479      1.117      yamt 	}
    480      1.127   thorpej 	return false;
    481      1.117      yamt }
    482      1.117      yamt 
    483      1.117      yamt static int
    484      1.124      yamt pool_reclaim_callback(struct callback_entry *ce, void *obj, void *arg)
    485      1.117      yamt {
    486      1.117      yamt 	struct pool *pp = obj;
    487      1.117      yamt 	struct pool_allocator *pa = pp->pr_alloc;
    488      1.117      yamt 
    489      1.117      yamt 	KASSERT(&pp->pr_reclaimerentry == ce);
    490      1.117      yamt 	pool_reclaim(pp);
    491      1.117      yamt 	if (!pa_starved_p(pa)) {
    492      1.117      yamt 		return CALLBACK_CHAIN_ABORT;
    493      1.117      yamt 	}
    494      1.117      yamt 	return CALLBACK_CHAIN_CONTINUE;
    495      1.117      yamt }
    496      1.117      yamt 
    497      1.117      yamt static void
    498      1.117      yamt pool_reclaim_register(struct pool *pp)
    499      1.117      yamt {
    500      1.117      yamt 	struct vm_map *map = pp->pr_alloc->pa_backingmap;
    501      1.117      yamt 	int s;
    502      1.117      yamt 
    503      1.117      yamt 	if (map == NULL) {
    504      1.117      yamt 		return;
    505      1.117      yamt 	}
    506      1.117      yamt 
    507      1.117      yamt 	s = splvm(); /* not necessary for INTRSAFE maps, but don't care. */
    508      1.117      yamt 	callback_register(&vm_map_to_kernel(map)->vmk_reclaim_callback,
    509      1.117      yamt 	    &pp->pr_reclaimerentry, pp, pool_reclaim_callback);
    510      1.117      yamt 	splx(s);
    511      1.117      yamt }
    512      1.117      yamt 
    513      1.117      yamt static void
    514      1.117      yamt pool_reclaim_unregister(struct pool *pp)
    515      1.117      yamt {
    516      1.117      yamt 	struct vm_map *map = pp->pr_alloc->pa_backingmap;
    517      1.117      yamt 	int s;
    518      1.117      yamt 
    519      1.117      yamt 	if (map == NULL) {
    520      1.117      yamt 		return;
    521      1.117      yamt 	}
    522      1.117      yamt 
    523      1.117      yamt 	s = splvm(); /* not necessary for INTRSAFE maps, but don't care. */
    524      1.117      yamt 	callback_unregister(&vm_map_to_kernel(map)->vmk_reclaim_callback,
    525      1.117      yamt 	    &pp->pr_reclaimerentry);
    526      1.117      yamt 	splx(s);
    527      1.117      yamt }
    528      1.117      yamt 
    529      1.117      yamt static void
    530      1.117      yamt pa_reclaim_register(struct pool_allocator *pa)
    531      1.117      yamt {
    532      1.117      yamt 	struct vm_map *map = *pa->pa_backingmapptr;
    533      1.117      yamt 	struct pool *pp;
    534      1.117      yamt 
    535      1.117      yamt 	KASSERT(pa->pa_backingmap == NULL);
    536      1.117      yamt 	if (map == NULL) {
    537      1.117      yamt 		SLIST_INSERT_HEAD(&pa_deferinitq, pa, pa_q);
    538      1.117      yamt 		return;
    539      1.117      yamt 	}
    540      1.117      yamt 	pa->pa_backingmap = map;
    541      1.117      yamt 	TAILQ_FOREACH(pp, &pa->pa_list, pr_alloc_list) {
    542      1.117      yamt 		pool_reclaim_register(pp);
    543      1.117      yamt 	}
    544      1.117      yamt }
    545      1.117      yamt 
    546        1.3        pk /*
    547       1.94    simonb  * Initialize all the pools listed in the "pools" link set.
    548       1.94    simonb  */
    549       1.94    simonb void
    550      1.117      yamt pool_subsystem_init(void)
    551       1.94    simonb {
    552      1.117      yamt 	struct pool_allocator *pa;
    553       1.94    simonb 	__link_set_decl(pools, struct link_pool_init);
    554       1.94    simonb 	struct link_pool_init * const *pi;
    555       1.94    simonb 
    556  1.128.2.2        ad 	mutex_init(&pool_head_lock, MUTEX_DEFAULT, IPL_NONE);
    557  1.128.2.2        ad 
    558       1.94    simonb 	__link_set_foreach(pi, pools)
    559       1.94    simonb 		pool_init((*pi)->pp, (*pi)->size, (*pi)->align,
    560       1.94    simonb 		    (*pi)->align_offset, (*pi)->flags, (*pi)->wchan,
    561  1.128.2.1        ad 		    (*pi)->palloc, (*pi)->ipl);
    562      1.117      yamt 
    563      1.117      yamt 	while ((pa = SLIST_FIRST(&pa_deferinitq)) != NULL) {
    564      1.117      yamt 		KASSERT(pa->pa_backingmapptr != NULL);
    565      1.117      yamt 		KASSERT(*pa->pa_backingmapptr != NULL);
    566      1.117      yamt 		SLIST_REMOVE_HEAD(&pa_deferinitq, pa_q);
    567      1.117      yamt 		pa_reclaim_register(pa);
    568      1.117      yamt 	}
    569       1.94    simonb }
    570       1.94    simonb 
    571       1.94    simonb /*
    572        1.3        pk  * Initialize the given pool resource structure.
    573        1.3        pk  *
    574        1.3        pk  * We export this routine to allow other kernel parts to declare
    575        1.3        pk  * static pools that must be initialized before malloc() is available.
    576        1.3        pk  */
    577        1.3        pk void
    578       1.42   thorpej pool_init(struct pool *pp, size_t size, u_int align, u_int ioff, int flags,
    579  1.128.2.1        ad     const char *wchan, struct pool_allocator *palloc, int ipl)
    580        1.3        pk {
    581      1.116    simonb #ifdef DEBUG
    582      1.116    simonb 	struct pool *pp1;
    583      1.116    simonb #endif
    584       1.92     enami 	size_t trysize, phsize;
    585  1.128.2.2        ad 	int off, slack;
    586        1.3        pk 
    587       1.99      yamt 	KASSERT((1UL << (CHAR_BIT * sizeof(pool_item_freelist_t))) - 2 >=
    588       1.99      yamt 	    PHPOOL_FREELIST_NELEM(PHPOOL_MAX - 1));
    589       1.99      yamt 
    590      1.116    simonb #ifdef DEBUG
    591      1.116    simonb 	/*
    592      1.116    simonb 	 * Check that the pool hasn't already been initialised and
    593      1.116    simonb 	 * added to the list of all pools.
    594      1.116    simonb 	 */
    595      1.116    simonb 	LIST_FOREACH(pp1, &pool_head, pr_poollist) {
    596      1.116    simonb 		if (pp == pp1)
    597      1.116    simonb 			panic("pool_init: pool %s already initialised",
    598      1.116    simonb 			    wchan);
    599      1.116    simonb 	}
    600      1.116    simonb #endif
    601      1.116    simonb 
    602       1.25   thorpej #ifdef POOL_DIAGNOSTIC
    603       1.25   thorpej 	/*
    604       1.25   thorpej 	 * Always log if POOL_DIAGNOSTIC is defined.
    605       1.25   thorpej 	 */
    606       1.25   thorpej 	if (pool_logsize != 0)
    607       1.25   thorpej 		flags |= PR_LOGGING;
    608       1.25   thorpej #endif
    609       1.25   thorpej 
    610       1.66   thorpej 	if (palloc == NULL)
    611       1.66   thorpej 		palloc = &pool_allocator_kmem;
    612      1.112     bjh21 #ifdef POOL_SUBPAGE
    613      1.112     bjh21 	if (size > palloc->pa_pagesz) {
    614      1.112     bjh21 		if (palloc == &pool_allocator_kmem)
    615      1.112     bjh21 			palloc = &pool_allocator_kmem_fullpage;
    616      1.112     bjh21 		else if (palloc == &pool_allocator_nointr)
    617      1.112     bjh21 			palloc = &pool_allocator_nointr_fullpage;
    618      1.112     bjh21 	}
    619       1.66   thorpej #endif /* POOL_SUBPAGE */
    620       1.66   thorpej 	if ((palloc->pa_flags & PA_INITIALIZED) == 0) {
    621      1.112     bjh21 		if (palloc->pa_pagesz == 0)
    622       1.66   thorpej 			palloc->pa_pagesz = PAGE_SIZE;
    623       1.66   thorpej 
    624       1.66   thorpej 		TAILQ_INIT(&palloc->pa_list);
    625       1.66   thorpej 
    626  1.128.2.2        ad 		mutex_init(&palloc->pa_lock, MUTEX_DRIVER, IPL_VM);
    627       1.66   thorpej 		palloc->pa_pagemask = ~(palloc->pa_pagesz - 1);
    628       1.66   thorpej 		palloc->pa_pageshift = ffs(palloc->pa_pagesz) - 1;
    629      1.117      yamt 
    630      1.117      yamt 		if (palloc->pa_backingmapptr != NULL) {
    631      1.117      yamt 			pa_reclaim_register(palloc);
    632      1.117      yamt 		}
    633       1.66   thorpej 		palloc->pa_flags |= PA_INITIALIZED;
    634        1.4   thorpej 	}
    635        1.3        pk 
    636        1.3        pk 	if (align == 0)
    637        1.3        pk 		align = ALIGN(1);
    638       1.14   thorpej 
    639      1.120      yamt 	if ((flags & PR_NOTOUCH) == 0 && size < sizeof(struct pool_item))
    640       1.14   thorpej 		size = sizeof(struct pool_item);
    641        1.3        pk 
    642       1.78   thorpej 	size = roundup(size, align);
    643       1.66   thorpej #ifdef DIAGNOSTIC
    644       1.66   thorpej 	if (size > palloc->pa_pagesz)
    645      1.121      yamt 		panic("pool_init: pool item size (%zu) too large", size);
    646       1.66   thorpej #endif
    647       1.35        pk 
    648        1.3        pk 	/*
    649        1.3        pk 	 * Initialize the pool structure.
    650        1.3        pk 	 */
    651       1.88       chs 	LIST_INIT(&pp->pr_emptypages);
    652       1.88       chs 	LIST_INIT(&pp->pr_fullpages);
    653       1.88       chs 	LIST_INIT(&pp->pr_partpages);
    654      1.102       chs 	LIST_INIT(&pp->pr_cachelist);
    655        1.3        pk 	pp->pr_curpage = NULL;
    656        1.3        pk 	pp->pr_npages = 0;
    657        1.3        pk 	pp->pr_minitems = 0;
    658        1.3        pk 	pp->pr_minpages = 0;
    659        1.3        pk 	pp->pr_maxpages = UINT_MAX;
    660       1.20   thorpej 	pp->pr_roflags = flags;
    661       1.20   thorpej 	pp->pr_flags = 0;
    662       1.35        pk 	pp->pr_size = size;
    663        1.3        pk 	pp->pr_align = align;
    664        1.3        pk 	pp->pr_wchan = wchan;
    665       1.66   thorpej 	pp->pr_alloc = palloc;
    666       1.20   thorpej 	pp->pr_nitems = 0;
    667       1.20   thorpej 	pp->pr_nout = 0;
    668       1.20   thorpej 	pp->pr_hardlimit = UINT_MAX;
    669       1.20   thorpej 	pp->pr_hardlimit_warning = NULL;
    670       1.31   thorpej 	pp->pr_hardlimit_ratecap.tv_sec = 0;
    671       1.31   thorpej 	pp->pr_hardlimit_ratecap.tv_usec = 0;
    672       1.31   thorpej 	pp->pr_hardlimit_warning_last.tv_sec = 0;
    673       1.31   thorpej 	pp->pr_hardlimit_warning_last.tv_usec = 0;
    674       1.68   thorpej 	pp->pr_drain_hook = NULL;
    675       1.68   thorpej 	pp->pr_drain_hook_arg = NULL;
    676      1.125        ad 	pp->pr_freecheck = NULL;
    677        1.3        pk 
    678        1.3        pk 	/*
    679        1.3        pk 	 * Decide whether to put the page header off page to avoid
    680       1.92     enami 	 * wasting too large a part of the page or too big item.
    681       1.92     enami 	 * Off-page page headers go on a hash table, so we can match
    682       1.92     enami 	 * a returned item with its header based on the page address.
    683       1.92     enami 	 * We use 1/16 of the page size and about 8 times of the item
    684       1.92     enami 	 * size as the threshold (XXX: tune)
    685       1.92     enami 	 *
    686       1.92     enami 	 * However, we'll put the header into the page if we can put
    687       1.92     enami 	 * it without wasting any items.
    688       1.92     enami 	 *
    689       1.92     enami 	 * Silently enforce `0 <= ioff < align'.
    690        1.3        pk 	 */
    691       1.92     enami 	pp->pr_itemoffset = ioff %= align;
    692       1.92     enami 	/* See the comment below about reserved bytes. */
    693       1.92     enami 	trysize = palloc->pa_pagesz - ((align - ioff) % align);
    694       1.92     enami 	phsize = ALIGN(sizeof(struct pool_item_header));
    695      1.121      yamt 	if ((pp->pr_roflags & (PR_NOTOUCH | PR_NOALIGN)) == 0 &&
    696       1.97      yamt 	    (pp->pr_size < MIN(palloc->pa_pagesz / 16, phsize << 3) ||
    697       1.97      yamt 	    trysize / pp->pr_size == (trysize - phsize) / pp->pr_size)) {
    698        1.3        pk 		/* Use the end of the page for the page header */
    699       1.20   thorpej 		pp->pr_roflags |= PR_PHINPAGE;
    700       1.92     enami 		pp->pr_phoffset = off = palloc->pa_pagesz - phsize;
    701        1.2        pk 	} else {
    702        1.3        pk 		/* The page header will be taken from our page header pool */
    703        1.3        pk 		pp->pr_phoffset = 0;
    704       1.66   thorpej 		off = palloc->pa_pagesz;
    705       1.88       chs 		SPLAY_INIT(&pp->pr_phtree);
    706        1.2        pk 	}
    707        1.1        pk 
    708        1.3        pk 	/*
    709        1.3        pk 	 * Alignment is to take place at `ioff' within the item. This means
    710        1.3        pk 	 * we must reserve up to `align - 1' bytes on the page to allow
    711        1.3        pk 	 * appropriate positioning of each item.
    712        1.3        pk 	 */
    713        1.3        pk 	pp->pr_itemsperpage = (off - ((align - ioff) % align)) / pp->pr_size;
    714       1.43   thorpej 	KASSERT(pp->pr_itemsperpage != 0);
    715       1.97      yamt 	if ((pp->pr_roflags & PR_NOTOUCH)) {
    716       1.97      yamt 		int idx;
    717       1.97      yamt 
    718       1.97      yamt 		for (idx = 0; pp->pr_itemsperpage > PHPOOL_FREELIST_NELEM(idx);
    719       1.97      yamt 		    idx++) {
    720       1.97      yamt 			/* nothing */
    721       1.97      yamt 		}
    722       1.97      yamt 		if (idx >= PHPOOL_MAX) {
    723       1.97      yamt 			/*
    724       1.97      yamt 			 * if you see this panic, consider to tweak
    725       1.97      yamt 			 * PHPOOL_MAX and PHPOOL_FREELIST_NELEM.
    726       1.97      yamt 			 */
    727       1.97      yamt 			panic("%s: too large itemsperpage(%d) for PR_NOTOUCH",
    728       1.97      yamt 			    pp->pr_wchan, pp->pr_itemsperpage);
    729       1.97      yamt 		}
    730       1.97      yamt 		pp->pr_phpool = &phpool[idx];
    731       1.97      yamt 	} else if ((pp->pr_roflags & PR_PHINPAGE) == 0) {
    732       1.97      yamt 		pp->pr_phpool = &phpool[0];
    733       1.97      yamt 	}
    734       1.97      yamt #if defined(DIAGNOSTIC)
    735       1.97      yamt 	else {
    736       1.97      yamt 		pp->pr_phpool = NULL;
    737       1.97      yamt 	}
    738       1.97      yamt #endif
    739        1.3        pk 
    740        1.3        pk 	/*
    741        1.3        pk 	 * Use the slack between the chunks and the page header
    742        1.3        pk 	 * for "cache coloring".
    743        1.3        pk 	 */
    744        1.3        pk 	slack = off - pp->pr_itemsperpage * pp->pr_size;
    745        1.3        pk 	pp->pr_maxcolor = (slack / align) * align;
    746        1.3        pk 	pp->pr_curcolor = 0;
    747        1.3        pk 
    748        1.3        pk 	pp->pr_nget = 0;
    749        1.3        pk 	pp->pr_nfail = 0;
    750        1.3        pk 	pp->pr_nput = 0;
    751        1.3        pk 	pp->pr_npagealloc = 0;
    752        1.3        pk 	pp->pr_npagefree = 0;
    753        1.1        pk 	pp->pr_hiwat = 0;
    754        1.8   thorpej 	pp->pr_nidle = 0;
    755        1.3        pk 
    756       1.59   thorpej #ifdef POOL_DIAGNOSTIC
    757       1.25   thorpej 	if (flags & PR_LOGGING) {
    758       1.25   thorpej 		if (kmem_map == NULL ||
    759       1.25   thorpej 		    (pp->pr_log = malloc(pool_logsize * sizeof(struct pool_log),
    760       1.25   thorpej 		     M_TEMP, M_NOWAIT)) == NULL)
    761       1.20   thorpej 			pp->pr_roflags &= ~PR_LOGGING;
    762        1.3        pk 		pp->pr_curlogentry = 0;
    763        1.3        pk 		pp->pr_logsize = pool_logsize;
    764        1.3        pk 	}
    765       1.59   thorpej #endif
    766       1.25   thorpej 
    767       1.25   thorpej 	pp->pr_entered_file = NULL;
    768       1.25   thorpej 	pp->pr_entered_line = 0;
    769        1.3        pk 
    770  1.128.2.2        ad 	mutex_init(&pp->pr_lock, MUTEX_DRIVER, ipl);
    771  1.128.2.2        ad 	cv_init(&pp->pr_cv, wchan);
    772  1.128.2.2        ad 	pp->pr_ipl = ipl;
    773  1.128.2.2        ad 
    774  1.128.2.2        ad 	if (strcmp(wchan, "kmem-52") == 0) {
    775  1.128.2.2        ad 		printf("kmem-52 initted, mutex @ %p\n", &pp->pr_lock);
    776  1.128.2.2        ad 		printf("=> %x %x %x %x\n",
    777  1.128.2.2        ad 		    ((uint32_t *)&pp->pr_lock)[0],
    778  1.128.2.2        ad 		    ((uint32_t *)&pp->pr_lock)[1],
    779  1.128.2.2        ad 		    ((uint32_t *)&pp->pr_lock)[2],
    780  1.128.2.2        ad 		    ((uint32_t *)&pp->pr_lock)[3]);
    781  1.128.2.2        ad 	}
    782        1.1        pk 
    783        1.3        pk 	/*
    784       1.43   thorpej 	 * Initialize private page header pool and cache magazine pool if we
    785       1.43   thorpej 	 * haven't done so yet.
    786       1.23   thorpej 	 * XXX LOCKING.
    787        1.3        pk 	 */
    788       1.97      yamt 	if (phpool[0].pr_size == 0) {
    789       1.97      yamt 		int idx;
    790       1.97      yamt 		for (idx = 0; idx < PHPOOL_MAX; idx++) {
    791       1.97      yamt 			static char phpool_names[PHPOOL_MAX][6+1+6+1];
    792       1.97      yamt 			int nelem;
    793       1.97      yamt 			size_t sz;
    794       1.97      yamt 
    795       1.97      yamt 			nelem = PHPOOL_FREELIST_NELEM(idx);
    796       1.97      yamt 			snprintf(phpool_names[idx], sizeof(phpool_names[idx]),
    797       1.97      yamt 			    "phpool-%d", nelem);
    798       1.97      yamt 			sz = sizeof(struct pool_item_header);
    799       1.97      yamt 			if (nelem) {
    800       1.97      yamt 				sz = PR_FREELIST_ALIGN(sz)
    801       1.99      yamt 				    + nelem * sizeof(pool_item_freelist_t);
    802       1.97      yamt 			}
    803       1.97      yamt 			pool_init(&phpool[idx], sz, 0, 0, 0,
    804  1.128.2.1        ad 			    phpool_names[idx], &pool_allocator_meta, IPL_VM);
    805       1.97      yamt 		}
    806       1.62     bjh21 #ifdef POOL_SUBPAGE
    807       1.62     bjh21 		pool_init(&psppool, POOL_SUBPAGE, POOL_SUBPAGE, 0,
    808  1.128.2.1        ad 		    PR_RECURSIVE, "psppool", &pool_allocator_meta, IPL_VM);
    809       1.62     bjh21 #endif
    810       1.43   thorpej 		pool_init(&pcgpool, sizeof(struct pool_cache_group), 0, 0,
    811  1.128.2.1        ad 		    0, "pcgpool", &pool_allocator_meta, IPL_VM);
    812        1.1        pk 	}
    813        1.1        pk 
    814  1.128.2.2        ad 	if (__predict_true(!cold)) {
    815  1.128.2.2        ad 		/* Insert into the list of all pools. */
    816  1.128.2.2        ad 		mutex_enter(&pool_head_lock);
    817  1.128.2.2        ad 		LIST_INSERT_HEAD(&pool_head, pp, pr_poollist);
    818  1.128.2.2        ad 		mutex_exit(&pool_head_lock);
    819  1.128.2.2        ad 
    820  1.128.2.2        ad 		/* Insert this into the list of pools using this allocator. */
    821  1.128.2.2        ad 		mutex_enter(&palloc->pa_lock);
    822  1.128.2.2        ad 		TAILQ_INSERT_TAIL(&palloc->pa_list, pp, pr_alloc_list);
    823  1.128.2.2        ad 		mutex_exit(&palloc->pa_lock);
    824  1.128.2.2        ad 	} else {
    825  1.128.2.2        ad 		LIST_INSERT_HEAD(&pool_head, pp, pr_poollist);
    826  1.128.2.2        ad 		TAILQ_INSERT_TAIL(&palloc->pa_list, pp, pr_alloc_list);
    827  1.128.2.2        ad 	}
    828  1.128.2.2        ad 
    829      1.117      yamt 	pool_reclaim_register(pp);
    830        1.1        pk }
    831        1.1        pk 
    832        1.1        pk /*
    833        1.1        pk  * De-commision a pool resource.
    834        1.1        pk  */
    835        1.1        pk void
    836       1.42   thorpej pool_destroy(struct pool *pp)
    837        1.1        pk {
    838      1.101   thorpej 	struct pool_pagelist pq;
    839        1.3        pk 	struct pool_item_header *ph;
    840       1.43   thorpej 
    841      1.101   thorpej 	/* Remove from global pool list */
    842  1.128.2.2        ad 	mutex_enter(&pool_head_lock);
    843      1.102       chs 	LIST_REMOVE(pp, pr_poollist);
    844      1.101   thorpej 	if (drainpp == pp)
    845      1.101   thorpej 		drainpp = NULL;
    846  1.128.2.2        ad 	mutex_exit(&pool_head_lock);
    847      1.101   thorpej 
    848      1.101   thorpej 	/* Remove this pool from its allocator's list of pools. */
    849      1.117      yamt 	pool_reclaim_unregister(pp);
    850  1.128.2.2        ad 	mutex_enter(&pp->pr_alloc->pa_lock);
    851       1.66   thorpej 	TAILQ_REMOVE(&pp->pr_alloc->pa_list, pp, pr_alloc_list);
    852  1.128.2.2        ad 	mutex_exit(&pp->pr_alloc->pa_lock);
    853       1.66   thorpej 
    854  1.128.2.2        ad 	mutex_enter(&pp->pr_lock);
    855      1.101   thorpej 
    856      1.102       chs 	KASSERT(LIST_EMPTY(&pp->pr_cachelist));
    857        1.3        pk 
    858        1.3        pk #ifdef DIAGNOSTIC
    859       1.20   thorpej 	if (pp->pr_nout != 0) {
    860       1.25   thorpej 		pr_printlog(pp, NULL, printf);
    861       1.80    provos 		panic("pool_destroy: pool busy: still out: %u",
    862       1.20   thorpej 		    pp->pr_nout);
    863        1.3        pk 	}
    864        1.3        pk #endif
    865        1.1        pk 
    866      1.101   thorpej 	KASSERT(LIST_EMPTY(&pp->pr_fullpages));
    867      1.101   thorpej 	KASSERT(LIST_EMPTY(&pp->pr_partpages));
    868      1.101   thorpej 
    869        1.3        pk 	/* Remove all pages */
    870      1.101   thorpej 	LIST_INIT(&pq);
    871       1.88       chs 	while ((ph = LIST_FIRST(&pp->pr_emptypages)) != NULL)
    872      1.101   thorpej 		pr_rmpage(pp, ph, &pq);
    873      1.101   thorpej 
    874  1.128.2.2        ad 	mutex_exit(&pp->pr_lock);
    875        1.3        pk 
    876      1.101   thorpej 	pr_pagelist_free(pp, &pq);
    877        1.3        pk 
    878       1.59   thorpej #ifdef POOL_DIAGNOSTIC
    879       1.20   thorpej 	if ((pp->pr_roflags & PR_LOGGING) != 0)
    880        1.3        pk 		free(pp->pr_log, M_TEMP);
    881       1.59   thorpej #endif
    882  1.128.2.2        ad 
    883  1.128.2.2        ad 	cv_destroy(&pp->pr_cv);
    884  1.128.2.2        ad 	mutex_destroy(&pp->pr_lock);
    885        1.1        pk }
    886        1.1        pk 
    887       1.68   thorpej void
    888       1.68   thorpej pool_set_drain_hook(struct pool *pp, void (*fn)(void *, int), void *arg)
    889       1.68   thorpej {
    890       1.68   thorpej 
    891       1.68   thorpej 	/* XXX no locking -- must be used just after pool_init() */
    892       1.68   thorpej #ifdef DIAGNOSTIC
    893       1.68   thorpej 	if (pp->pr_drain_hook != NULL)
    894       1.68   thorpej 		panic("pool_set_drain_hook(%s): already set", pp->pr_wchan);
    895       1.68   thorpej #endif
    896       1.68   thorpej 	pp->pr_drain_hook = fn;
    897       1.68   thorpej 	pp->pr_drain_hook_arg = arg;
    898       1.68   thorpej }
    899       1.68   thorpej 
    900       1.88       chs static struct pool_item_header *
    901      1.128  christos pool_alloc_item_header(struct pool *pp, void *storage, int flags)
    902       1.55   thorpej {
    903       1.55   thorpej 	struct pool_item_header *ph;
    904       1.55   thorpej 
    905       1.55   thorpej 	if ((pp->pr_roflags & PR_PHINPAGE) != 0)
    906      1.128  christos 		ph = (struct pool_item_header *) ((char *)storage + pp->pr_phoffset);
    907  1.128.2.2        ad 	else
    908       1.97      yamt 		ph = pool_get(pp->pr_phpool, flags);
    909       1.55   thorpej 
    910       1.55   thorpej 	return (ph);
    911       1.55   thorpej }
    912        1.1        pk 
    913        1.1        pk /*
    914        1.3        pk  * Grab an item from the pool; must be called at appropriate spl level
    915        1.1        pk  */
    916        1.3        pk void *
    917       1.59   thorpej #ifdef POOL_DIAGNOSTIC
    918       1.42   thorpej _pool_get(struct pool *pp, int flags, const char *file, long line)
    919       1.56  sommerfe #else
    920       1.56  sommerfe pool_get(struct pool *pp, int flags)
    921       1.56  sommerfe #endif
    922        1.1        pk {
    923        1.1        pk 	struct pool_item *pi;
    924        1.3        pk 	struct pool_item_header *ph;
    925       1.55   thorpej 	void *v;
    926        1.1        pk 
    927        1.2        pk #ifdef DIAGNOSTIC
    928       1.95    atatat 	if (__predict_false(pp->pr_itemsperpage == 0))
    929       1.95    atatat 		panic("pool_get: pool %p: pr_itemsperpage is zero, "
    930       1.95    atatat 		    "pool not initialized?", pp);
    931       1.84   thorpej 	if (__predict_false(curlwp == NULL && doing_shutdown == 0 &&
    932       1.37  sommerfe 			    (flags & PR_WAITOK) != 0))
    933       1.77      matt 		panic("pool_get: %s: must have NOWAIT", pp->pr_wchan);
    934       1.58   thorpej 
    935      1.102       chs #endif /* DIAGNOSTIC */
    936       1.58   thorpej #ifdef LOCKDEBUG
    937       1.58   thorpej 	if (flags & PR_WAITOK)
    938      1.119      yamt 		ASSERT_SLEEPABLE(NULL, "pool_get(PR_WAITOK)");
    939       1.56  sommerfe #endif
    940        1.1        pk 
    941  1.128.2.2        ad 	mutex_enter(&pp->pr_lock);
    942       1.25   thorpej 	pr_enter(pp, file, line);
    943       1.20   thorpej 
    944       1.20   thorpej  startover:
    945       1.20   thorpej 	/*
    946       1.20   thorpej 	 * Check to see if we've reached the hard limit.  If we have,
    947       1.20   thorpej 	 * and we can wait, then wait until an item has been returned to
    948       1.20   thorpej 	 * the pool.
    949       1.20   thorpej 	 */
    950       1.20   thorpej #ifdef DIAGNOSTIC
    951       1.34   thorpej 	if (__predict_false(pp->pr_nout > pp->pr_hardlimit)) {
    952       1.25   thorpej 		pr_leave(pp);
    953  1.128.2.2        ad 		mutex_exit(&pp->pr_lock);
    954       1.20   thorpej 		panic("pool_get: %s: crossed hard limit", pp->pr_wchan);
    955       1.20   thorpej 	}
    956       1.20   thorpej #endif
    957       1.34   thorpej 	if (__predict_false(pp->pr_nout == pp->pr_hardlimit)) {
    958       1.68   thorpej 		if (pp->pr_drain_hook != NULL) {
    959       1.68   thorpej 			/*
    960       1.68   thorpej 			 * Since the drain hook is going to free things
    961       1.68   thorpej 			 * back to the pool, unlock, call the hook, re-lock,
    962       1.68   thorpej 			 * and check the hardlimit condition again.
    963       1.68   thorpej 			 */
    964       1.68   thorpej 			pr_leave(pp);
    965  1.128.2.2        ad 			mutex_exit(&pp->pr_lock);
    966       1.68   thorpej 			(*pp->pr_drain_hook)(pp->pr_drain_hook_arg, flags);
    967  1.128.2.2        ad 			mutex_enter(&pp->pr_lock);
    968       1.68   thorpej 			pr_enter(pp, file, line);
    969       1.68   thorpej 			if (pp->pr_nout < pp->pr_hardlimit)
    970       1.68   thorpej 				goto startover;
    971       1.68   thorpej 		}
    972       1.68   thorpej 
    973       1.29  sommerfe 		if ((flags & PR_WAITOK) && !(flags & PR_LIMITFAIL)) {
    974       1.20   thorpej 			/*
    975       1.20   thorpej 			 * XXX: A warning isn't logged in this case.  Should
    976       1.20   thorpej 			 * it be?
    977       1.20   thorpej 			 */
    978       1.20   thorpej 			pp->pr_flags |= PR_WANTED;
    979       1.25   thorpej 			pr_leave(pp);
    980  1.128.2.2        ad 			cv_wait(&pp->pr_cv, &pp->pr_lock);
    981       1.25   thorpej 			pr_enter(pp, file, line);
    982       1.20   thorpej 			goto startover;
    983       1.20   thorpej 		}
    984       1.31   thorpej 
    985       1.31   thorpej 		/*
    986       1.31   thorpej 		 * Log a message that the hard limit has been hit.
    987       1.31   thorpej 		 */
    988       1.31   thorpej 		if (pp->pr_hardlimit_warning != NULL &&
    989       1.31   thorpej 		    ratecheck(&pp->pr_hardlimit_warning_last,
    990       1.31   thorpej 			      &pp->pr_hardlimit_ratecap))
    991       1.31   thorpej 			log(LOG_ERR, "%s\n", pp->pr_hardlimit_warning);
    992       1.21   thorpej 
    993       1.21   thorpej 		pp->pr_nfail++;
    994       1.21   thorpej 
    995       1.25   thorpej 		pr_leave(pp);
    996  1.128.2.2        ad 		mutex_exit(&pp->pr_lock);
    997       1.20   thorpej 		return (NULL);
    998       1.20   thorpej 	}
    999       1.20   thorpej 
   1000        1.3        pk 	/*
   1001        1.3        pk 	 * The convention we use is that if `curpage' is not NULL, then
   1002        1.3        pk 	 * it points at a non-empty bucket. In particular, `curpage'
   1003        1.3        pk 	 * never points at a page header which has PR_PHINPAGE set and
   1004        1.3        pk 	 * has no items in its bucket.
   1005        1.3        pk 	 */
   1006       1.20   thorpej 	if ((ph = pp->pr_curpage) == NULL) {
   1007      1.113      yamt 		int error;
   1008      1.113      yamt 
   1009       1.20   thorpej #ifdef DIAGNOSTIC
   1010       1.20   thorpej 		if (pp->pr_nitems != 0) {
   1011  1.128.2.2        ad 			mutex_exit(&pp->pr_lock);
   1012       1.20   thorpej 			printf("pool_get: %s: curpage NULL, nitems %u\n",
   1013       1.20   thorpej 			    pp->pr_wchan, pp->pr_nitems);
   1014       1.80    provos 			panic("pool_get: nitems inconsistent");
   1015       1.20   thorpej 		}
   1016       1.20   thorpej #endif
   1017       1.20   thorpej 
   1018       1.21   thorpej 		/*
   1019       1.21   thorpej 		 * Call the back-end page allocator for more memory.
   1020       1.21   thorpej 		 * Release the pool lock, as the back-end page allocator
   1021       1.21   thorpej 		 * may block.
   1022       1.21   thorpej 		 */
   1023       1.25   thorpej 		pr_leave(pp);
   1024      1.113      yamt 		error = pool_grow(pp, flags);
   1025      1.113      yamt 		pr_enter(pp, file, line);
   1026      1.113      yamt 		if (error != 0) {
   1027       1.21   thorpej 			/*
   1028       1.55   thorpej 			 * We were unable to allocate a page or item
   1029       1.55   thorpej 			 * header, but we released the lock during
   1030       1.55   thorpej 			 * allocation, so perhaps items were freed
   1031       1.55   thorpej 			 * back to the pool.  Check for this case.
   1032       1.21   thorpej 			 */
   1033       1.21   thorpej 			if (pp->pr_curpage != NULL)
   1034       1.21   thorpej 				goto startover;
   1035       1.15        pk 
   1036      1.117      yamt 			pp->pr_nfail++;
   1037       1.25   thorpej 			pr_leave(pp);
   1038  1.128.2.2        ad 			mutex_exit(&pp->pr_lock);
   1039      1.117      yamt 			return (NULL);
   1040        1.1        pk 		}
   1041        1.3        pk 
   1042       1.20   thorpej 		/* Start the allocation process over. */
   1043       1.20   thorpej 		goto startover;
   1044        1.3        pk 	}
   1045       1.97      yamt 	if (pp->pr_roflags & PR_NOTOUCH) {
   1046       1.97      yamt #ifdef DIAGNOSTIC
   1047       1.97      yamt 		if (__predict_false(ph->ph_nmissing == pp->pr_itemsperpage)) {
   1048       1.97      yamt 			pr_leave(pp);
   1049  1.128.2.2        ad 			mutex_exit(&pp->pr_lock);
   1050       1.97      yamt 			panic("pool_get: %s: page empty", pp->pr_wchan);
   1051       1.97      yamt 		}
   1052       1.97      yamt #endif
   1053       1.97      yamt 		v = pr_item_notouch_get(pp, ph);
   1054       1.97      yamt #ifdef POOL_DIAGNOSTIC
   1055       1.97      yamt 		pr_log(pp, v, PRLOG_GET, file, line);
   1056       1.97      yamt #endif
   1057       1.97      yamt 	} else {
   1058      1.102       chs 		v = pi = LIST_FIRST(&ph->ph_itemlist);
   1059       1.97      yamt 		if (__predict_false(v == NULL)) {
   1060       1.97      yamt 			pr_leave(pp);
   1061  1.128.2.2        ad 			mutex_exit(&pp->pr_lock);
   1062       1.97      yamt 			panic("pool_get: %s: page empty", pp->pr_wchan);
   1063       1.97      yamt 		}
   1064       1.20   thorpej #ifdef DIAGNOSTIC
   1065       1.97      yamt 		if (__predict_false(pp->pr_nitems == 0)) {
   1066       1.97      yamt 			pr_leave(pp);
   1067  1.128.2.2        ad 			mutex_exit(&pp->pr_lock);
   1068       1.97      yamt 			printf("pool_get: %s: items on itemlist, nitems %u\n",
   1069       1.97      yamt 			    pp->pr_wchan, pp->pr_nitems);
   1070       1.97      yamt 			panic("pool_get: nitems inconsistent");
   1071       1.97      yamt 		}
   1072       1.65     enami #endif
   1073       1.56  sommerfe 
   1074       1.65     enami #ifdef POOL_DIAGNOSTIC
   1075       1.97      yamt 		pr_log(pp, v, PRLOG_GET, file, line);
   1076       1.65     enami #endif
   1077        1.3        pk 
   1078       1.65     enami #ifdef DIAGNOSTIC
   1079       1.97      yamt 		if (__predict_false(pi->pi_magic != PI_MAGIC)) {
   1080       1.97      yamt 			pr_printlog(pp, pi, printf);
   1081       1.97      yamt 			panic("pool_get(%s): free list modified: "
   1082       1.97      yamt 			    "magic=%x; page %p; item addr %p\n",
   1083       1.97      yamt 			    pp->pr_wchan, pi->pi_magic, ph->ph_page, pi);
   1084       1.97      yamt 		}
   1085        1.3        pk #endif
   1086        1.3        pk 
   1087       1.97      yamt 		/*
   1088       1.97      yamt 		 * Remove from item list.
   1089       1.97      yamt 		 */
   1090      1.102       chs 		LIST_REMOVE(pi, pi_list);
   1091       1.97      yamt 	}
   1092       1.20   thorpej 	pp->pr_nitems--;
   1093       1.20   thorpej 	pp->pr_nout++;
   1094        1.6   thorpej 	if (ph->ph_nmissing == 0) {
   1095        1.6   thorpej #ifdef DIAGNOSTIC
   1096       1.34   thorpej 		if (__predict_false(pp->pr_nidle == 0))
   1097        1.6   thorpej 			panic("pool_get: nidle inconsistent");
   1098        1.6   thorpej #endif
   1099        1.6   thorpej 		pp->pr_nidle--;
   1100       1.88       chs 
   1101       1.88       chs 		/*
   1102       1.88       chs 		 * This page was previously empty.  Move it to the list of
   1103       1.88       chs 		 * partially-full pages.  This page is already curpage.
   1104       1.88       chs 		 */
   1105       1.88       chs 		LIST_REMOVE(ph, ph_pagelist);
   1106       1.88       chs 		LIST_INSERT_HEAD(&pp->pr_partpages, ph, ph_pagelist);
   1107        1.6   thorpej 	}
   1108        1.3        pk 	ph->ph_nmissing++;
   1109       1.97      yamt 	if (ph->ph_nmissing == pp->pr_itemsperpage) {
   1110       1.21   thorpej #ifdef DIAGNOSTIC
   1111       1.97      yamt 		if (__predict_false((pp->pr_roflags & PR_NOTOUCH) == 0 &&
   1112      1.102       chs 		    !LIST_EMPTY(&ph->ph_itemlist))) {
   1113       1.25   thorpej 			pr_leave(pp);
   1114  1.128.2.2        ad 			mutex_exit(&pp->pr_lock);
   1115       1.21   thorpej 			panic("pool_get: %s: nmissing inconsistent",
   1116       1.21   thorpej 			    pp->pr_wchan);
   1117       1.21   thorpej 		}
   1118       1.21   thorpej #endif
   1119        1.3        pk 		/*
   1120       1.88       chs 		 * This page is now full.  Move it to the full list
   1121       1.88       chs 		 * and select a new current page.
   1122        1.3        pk 		 */
   1123       1.88       chs 		LIST_REMOVE(ph, ph_pagelist);
   1124       1.88       chs 		LIST_INSERT_HEAD(&pp->pr_fullpages, ph, ph_pagelist);
   1125       1.88       chs 		pool_update_curpage(pp);
   1126        1.1        pk 	}
   1127        1.3        pk 
   1128        1.3        pk 	pp->pr_nget++;
   1129      1.111  christos 	pr_leave(pp);
   1130       1.20   thorpej 
   1131       1.20   thorpej 	/*
   1132       1.20   thorpej 	 * If we have a low water mark and we are now below that low
   1133       1.20   thorpej 	 * water mark, add more items to the pool.
   1134       1.20   thorpej 	 */
   1135       1.53   thorpej 	if (POOL_NEEDS_CATCHUP(pp) && pool_catchup(pp) != 0) {
   1136       1.20   thorpej 		/*
   1137       1.20   thorpej 		 * XXX: Should we log a warning?  Should we set up a timeout
   1138       1.20   thorpej 		 * to try again in a second or so?  The latter could break
   1139       1.20   thorpej 		 * a caller's assumptions about interrupt protection, etc.
   1140       1.20   thorpej 		 */
   1141       1.20   thorpej 	}
   1142       1.20   thorpej 
   1143  1.128.2.2        ad 	mutex_exit(&pp->pr_lock);
   1144      1.125        ad 	KASSERT((((vaddr_t)v + pp->pr_itemoffset) & (pp->pr_align - 1)) == 0);
   1145      1.125        ad 	FREECHECK_OUT(&pp->pr_freecheck, v);
   1146        1.1        pk 	return (v);
   1147        1.1        pk }
   1148        1.1        pk 
   1149        1.1        pk /*
   1150       1.43   thorpej  * Internal version of pool_put().  Pool is already locked/entered.
   1151        1.1        pk  */
   1152       1.43   thorpej static void
   1153      1.101   thorpej pool_do_put(struct pool *pp, void *v, struct pool_pagelist *pq)
   1154        1.1        pk {
   1155        1.1        pk 	struct pool_item *pi = v;
   1156        1.3        pk 	struct pool_item_header *ph;
   1157        1.3        pk 
   1158  1.128.2.2        ad 	KASSERT(mutex_owned(&pp->pr_lock));
   1159      1.125        ad 	FREECHECK_IN(&pp->pr_freecheck, v);
   1160       1.61       chs 
   1161       1.30   thorpej #ifdef DIAGNOSTIC
   1162       1.34   thorpej 	if (__predict_false(pp->pr_nout == 0)) {
   1163       1.30   thorpej 		printf("pool %s: putting with none out\n",
   1164       1.30   thorpej 		    pp->pr_wchan);
   1165       1.30   thorpej 		panic("pool_put");
   1166       1.30   thorpej 	}
   1167       1.30   thorpej #endif
   1168        1.3        pk 
   1169      1.121      yamt 	if (__predict_false((ph = pr_find_pagehead(pp, v)) == NULL)) {
   1170       1.25   thorpej 		pr_printlog(pp, NULL, printf);
   1171        1.3        pk 		panic("pool_put: %s: page header missing", pp->pr_wchan);
   1172        1.3        pk 	}
   1173       1.28   thorpej 
   1174       1.28   thorpej #ifdef LOCKDEBUG
   1175       1.28   thorpej 	/*
   1176       1.28   thorpej 	 * Check if we're freeing a locked simple lock.
   1177       1.28   thorpej 	 */
   1178      1.128  christos 	simple_lock_freecheck(pi, (char *)pi + pp->pr_size);
   1179       1.28   thorpej #endif
   1180        1.3        pk 
   1181        1.3        pk 	/*
   1182        1.3        pk 	 * Return to item list.
   1183        1.3        pk 	 */
   1184       1.97      yamt 	if (pp->pr_roflags & PR_NOTOUCH) {
   1185       1.97      yamt 		pr_item_notouch_put(pp, ph, v);
   1186       1.97      yamt 	} else {
   1187        1.2        pk #ifdef DIAGNOSTIC
   1188       1.97      yamt 		pi->pi_magic = PI_MAGIC;
   1189        1.3        pk #endif
   1190       1.32       chs #ifdef DEBUG
   1191       1.97      yamt 		{
   1192       1.97      yamt 			int i, *ip = v;
   1193       1.32       chs 
   1194       1.97      yamt 			for (i = 0; i < pp->pr_size / sizeof(int); i++) {
   1195       1.97      yamt 				*ip++ = PI_MAGIC;
   1196       1.97      yamt 			}
   1197       1.32       chs 		}
   1198       1.32       chs #endif
   1199       1.32       chs 
   1200      1.102       chs 		LIST_INSERT_HEAD(&ph->ph_itemlist, pi, pi_list);
   1201       1.97      yamt 	}
   1202       1.79   thorpej 	KDASSERT(ph->ph_nmissing != 0);
   1203        1.3        pk 	ph->ph_nmissing--;
   1204        1.3        pk 	pp->pr_nput++;
   1205       1.20   thorpej 	pp->pr_nitems++;
   1206       1.20   thorpej 	pp->pr_nout--;
   1207        1.3        pk 
   1208        1.3        pk 	/* Cancel "pool empty" condition if it exists */
   1209        1.3        pk 	if (pp->pr_curpage == NULL)
   1210        1.3        pk 		pp->pr_curpage = ph;
   1211        1.3        pk 
   1212        1.3        pk 	if (pp->pr_flags & PR_WANTED) {
   1213        1.3        pk 		pp->pr_flags &= ~PR_WANTED;
   1214       1.15        pk 		if (ph->ph_nmissing == 0)
   1215       1.15        pk 			pp->pr_nidle++;
   1216      1.128  christos 		wakeup((void *)pp);
   1217        1.3        pk 		return;
   1218        1.3        pk 	}
   1219        1.3        pk 
   1220        1.3        pk 	/*
   1221       1.88       chs 	 * If this page is now empty, do one of two things:
   1222       1.21   thorpej 	 *
   1223       1.88       chs 	 *	(1) If we have more pages than the page high water mark,
   1224       1.96   thorpej 	 *	    free the page back to the system.  ONLY CONSIDER
   1225       1.90   thorpej 	 *	    FREEING BACK A PAGE IF WE HAVE MORE THAN OUR MINIMUM PAGE
   1226       1.90   thorpej 	 *	    CLAIM.
   1227       1.21   thorpej 	 *
   1228       1.88       chs 	 *	(2) Otherwise, move the page to the empty page list.
   1229       1.88       chs 	 *
   1230       1.88       chs 	 * Either way, select a new current page (so we use a partially-full
   1231       1.88       chs 	 * page if one is available).
   1232        1.3        pk 	 */
   1233        1.3        pk 	if (ph->ph_nmissing == 0) {
   1234        1.6   thorpej 		pp->pr_nidle++;
   1235       1.90   thorpej 		if (pp->pr_npages > pp->pr_minpages &&
   1236       1.90   thorpej 		    (pp->pr_npages > pp->pr_maxpages ||
   1237      1.117      yamt 		     pa_starved_p(pp->pr_alloc))) {
   1238      1.101   thorpej 			pr_rmpage(pp, ph, pq);
   1239        1.3        pk 		} else {
   1240       1.88       chs 			LIST_REMOVE(ph, ph_pagelist);
   1241       1.88       chs 			LIST_INSERT_HEAD(&pp->pr_emptypages, ph, ph_pagelist);
   1242        1.3        pk 
   1243       1.21   thorpej 			/*
   1244       1.21   thorpej 			 * Update the timestamp on the page.  A page must
   1245       1.21   thorpej 			 * be idle for some period of time before it can
   1246       1.21   thorpej 			 * be reclaimed by the pagedaemon.  This minimizes
   1247       1.21   thorpej 			 * ping-pong'ing for memory.
   1248       1.21   thorpej 			 */
   1249      1.118    kardel 			getmicrotime(&ph->ph_time);
   1250        1.1        pk 		}
   1251       1.88       chs 		pool_update_curpage(pp);
   1252        1.1        pk 	}
   1253       1.88       chs 
   1254       1.21   thorpej 	/*
   1255       1.88       chs 	 * If the page was previously completely full, move it to the
   1256       1.88       chs 	 * partially-full list and make it the current page.  The next
   1257       1.88       chs 	 * allocation will get the item from this page, instead of
   1258       1.88       chs 	 * further fragmenting the pool.
   1259       1.21   thorpej 	 */
   1260       1.21   thorpej 	else if (ph->ph_nmissing == (pp->pr_itemsperpage - 1)) {
   1261       1.88       chs 		LIST_REMOVE(ph, ph_pagelist);
   1262       1.88       chs 		LIST_INSERT_HEAD(&pp->pr_partpages, ph, ph_pagelist);
   1263       1.21   thorpej 		pp->pr_curpage = ph;
   1264       1.21   thorpej 	}
   1265       1.43   thorpej }
   1266       1.43   thorpej 
   1267       1.43   thorpej /*
   1268       1.43   thorpej  * Return resource to the pool; must be called at appropriate spl level
   1269       1.43   thorpej  */
   1270       1.59   thorpej #ifdef POOL_DIAGNOSTIC
   1271       1.43   thorpej void
   1272       1.43   thorpej _pool_put(struct pool *pp, void *v, const char *file, long line)
   1273       1.43   thorpej {
   1274      1.101   thorpej 	struct pool_pagelist pq;
   1275      1.101   thorpej 
   1276      1.101   thorpej 	LIST_INIT(&pq);
   1277       1.43   thorpej 
   1278  1.128.2.2        ad 	mutex_enter(&pp->pr_lock);
   1279       1.43   thorpej 	pr_enter(pp, file, line);
   1280       1.43   thorpej 
   1281       1.56  sommerfe 	pr_log(pp, v, PRLOG_PUT, file, line);
   1282       1.56  sommerfe 
   1283      1.101   thorpej 	pool_do_put(pp, v, &pq);
   1284       1.21   thorpej 
   1285       1.25   thorpej 	pr_leave(pp);
   1286  1.128.2.2        ad 	mutex_exit(&pp->pr_lock);
   1287      1.101   thorpej 
   1288      1.102       chs 	pr_pagelist_free(pp, &pq);
   1289        1.1        pk }
   1290       1.57  sommerfe #undef pool_put
   1291       1.59   thorpej #endif /* POOL_DIAGNOSTIC */
   1292        1.1        pk 
   1293       1.56  sommerfe void
   1294       1.56  sommerfe pool_put(struct pool *pp, void *v)
   1295       1.56  sommerfe {
   1296      1.101   thorpej 	struct pool_pagelist pq;
   1297      1.101   thorpej 
   1298      1.101   thorpej 	LIST_INIT(&pq);
   1299       1.56  sommerfe 
   1300  1.128.2.2        ad 	mutex_enter(&pp->pr_lock);
   1301      1.101   thorpej 	pool_do_put(pp, v, &pq);
   1302  1.128.2.2        ad 	mutex_exit(&pp->pr_lock);
   1303       1.56  sommerfe 
   1304      1.102       chs 	pr_pagelist_free(pp, &pq);
   1305       1.56  sommerfe }
   1306       1.57  sommerfe 
   1307       1.59   thorpej #ifdef POOL_DIAGNOSTIC
   1308       1.57  sommerfe #define		pool_put(h, v)	_pool_put((h), (v), __FILE__, __LINE__)
   1309       1.56  sommerfe #endif
   1310       1.74   thorpej 
   1311       1.74   thorpej /*
   1312      1.113      yamt  * pool_grow: grow a pool by a page.
   1313      1.113      yamt  *
   1314      1.113      yamt  * => called with pool locked.
   1315      1.113      yamt  * => unlock and relock the pool.
   1316      1.113      yamt  * => return with pool locked.
   1317      1.113      yamt  */
   1318      1.113      yamt 
   1319      1.113      yamt static int
   1320      1.113      yamt pool_grow(struct pool *pp, int flags)
   1321      1.113      yamt {
   1322      1.113      yamt 	struct pool_item_header *ph = NULL;
   1323      1.113      yamt 	char *cp;
   1324      1.113      yamt 
   1325  1.128.2.2        ad 	mutex_exit(&pp->pr_lock);
   1326      1.113      yamt 	cp = pool_allocator_alloc(pp, flags);
   1327      1.113      yamt 	if (__predict_true(cp != NULL)) {
   1328      1.113      yamt 		ph = pool_alloc_item_header(pp, cp, flags);
   1329      1.113      yamt 	}
   1330      1.113      yamt 	if (__predict_false(cp == NULL || ph == NULL)) {
   1331      1.113      yamt 		if (cp != NULL) {
   1332      1.113      yamt 			pool_allocator_free(pp, cp);
   1333      1.113      yamt 		}
   1334  1.128.2.2        ad 		mutex_enter(&pp->pr_lock);
   1335      1.113      yamt 		return ENOMEM;
   1336      1.113      yamt 	}
   1337      1.113      yamt 
   1338  1.128.2.2        ad 	mutex_enter(&pp->pr_lock);
   1339      1.113      yamt 	pool_prime_page(pp, cp, ph);
   1340      1.113      yamt 	pp->pr_npagealloc++;
   1341      1.113      yamt 	return 0;
   1342      1.113      yamt }
   1343      1.113      yamt 
   1344      1.113      yamt /*
   1345       1.74   thorpej  * Add N items to the pool.
   1346       1.74   thorpej  */
   1347       1.74   thorpej int
   1348       1.74   thorpej pool_prime(struct pool *pp, int n)
   1349       1.74   thorpej {
   1350       1.75    simonb 	int newpages;
   1351      1.113      yamt 	int error = 0;
   1352       1.74   thorpej 
   1353  1.128.2.2        ad 	mutex_enter(&pp->pr_lock);
   1354       1.74   thorpej 
   1355       1.74   thorpej 	newpages = roundup(n, pp->pr_itemsperpage) / pp->pr_itemsperpage;
   1356       1.74   thorpej 
   1357       1.74   thorpej 	while (newpages-- > 0) {
   1358      1.113      yamt 		error = pool_grow(pp, PR_NOWAIT);
   1359      1.113      yamt 		if (error) {
   1360       1.74   thorpej 			break;
   1361       1.74   thorpej 		}
   1362       1.74   thorpej 		pp->pr_minpages++;
   1363       1.74   thorpej 	}
   1364       1.74   thorpej 
   1365       1.74   thorpej 	if (pp->pr_minpages >= pp->pr_maxpages)
   1366       1.74   thorpej 		pp->pr_maxpages = pp->pr_minpages + 1;	/* XXX */
   1367       1.74   thorpej 
   1368  1.128.2.2        ad 	mutex_exit(&pp->pr_lock);
   1369      1.113      yamt 	return error;
   1370       1.74   thorpej }
   1371       1.55   thorpej 
   1372       1.55   thorpej /*
   1373        1.3        pk  * Add a page worth of items to the pool.
   1374       1.21   thorpej  *
   1375       1.21   thorpej  * Note, we must be called with the pool descriptor LOCKED.
   1376        1.3        pk  */
   1377       1.55   thorpej static void
   1378      1.128  christos pool_prime_page(struct pool *pp, void *storage, struct pool_item_header *ph)
   1379        1.3        pk {
   1380        1.3        pk 	struct pool_item *pi;
   1381      1.128  christos 	void *cp = storage;
   1382      1.125        ad 	const unsigned int align = pp->pr_align;
   1383      1.125        ad 	const unsigned int ioff = pp->pr_itemoffset;
   1384       1.55   thorpej 	int n;
   1385       1.36        pk 
   1386  1.128.2.2        ad 	KASSERT(mutex_owned(&pp->pr_lock));
   1387       1.91      yamt 
   1388       1.66   thorpej #ifdef DIAGNOSTIC
   1389      1.121      yamt 	if ((pp->pr_roflags & PR_NOALIGN) == 0 &&
   1390      1.121      yamt 	    ((uintptr_t)cp & (pp->pr_alloc->pa_pagesz - 1)) != 0)
   1391       1.36        pk 		panic("pool_prime_page: %s: unaligned page", pp->pr_wchan);
   1392       1.66   thorpej #endif
   1393        1.3        pk 
   1394        1.3        pk 	/*
   1395        1.3        pk 	 * Insert page header.
   1396        1.3        pk 	 */
   1397       1.88       chs 	LIST_INSERT_HEAD(&pp->pr_emptypages, ph, ph_pagelist);
   1398      1.102       chs 	LIST_INIT(&ph->ph_itemlist);
   1399        1.3        pk 	ph->ph_page = storage;
   1400        1.3        pk 	ph->ph_nmissing = 0;
   1401      1.118    kardel 	getmicrotime(&ph->ph_time);
   1402       1.88       chs 	if ((pp->pr_roflags & PR_PHINPAGE) == 0)
   1403       1.88       chs 		SPLAY_INSERT(phtree, &pp->pr_phtree, ph);
   1404        1.3        pk 
   1405        1.6   thorpej 	pp->pr_nidle++;
   1406        1.6   thorpej 
   1407        1.3        pk 	/*
   1408        1.3        pk 	 * Color this page.
   1409        1.3        pk 	 */
   1410      1.128  christos 	cp = (char *)cp + pp->pr_curcolor;
   1411        1.3        pk 	if ((pp->pr_curcolor += align) > pp->pr_maxcolor)
   1412        1.3        pk 		pp->pr_curcolor = 0;
   1413        1.3        pk 
   1414        1.3        pk 	/*
   1415        1.3        pk 	 * Adjust storage to apply aligment to `pr_itemoffset' in each item.
   1416        1.3        pk 	 */
   1417        1.3        pk 	if (ioff != 0)
   1418      1.128  christos 		cp = (char *)cp + align - ioff;
   1419        1.3        pk 
   1420      1.125        ad 	KASSERT((((vaddr_t)cp + ioff) & (align - 1)) == 0);
   1421      1.125        ad 
   1422        1.3        pk 	/*
   1423        1.3        pk 	 * Insert remaining chunks on the bucket list.
   1424        1.3        pk 	 */
   1425        1.3        pk 	n = pp->pr_itemsperpage;
   1426       1.20   thorpej 	pp->pr_nitems += n;
   1427        1.3        pk 
   1428       1.97      yamt 	if (pp->pr_roflags & PR_NOTOUCH) {
   1429       1.99      yamt 		pool_item_freelist_t *freelist = PR_FREELIST(ph);
   1430       1.97      yamt 		int i;
   1431       1.97      yamt 
   1432      1.128  christos 		ph->ph_off = (char *)cp - (char *)storage;
   1433       1.97      yamt 		ph->ph_firstfree = 0;
   1434       1.97      yamt 		for (i = 0; i < n - 1; i++)
   1435       1.97      yamt 			freelist[i] = i + 1;
   1436       1.97      yamt 		freelist[n - 1] = PR_INDEX_EOL;
   1437       1.97      yamt 	} else {
   1438       1.97      yamt 		while (n--) {
   1439       1.97      yamt 			pi = (struct pool_item *)cp;
   1440       1.78   thorpej 
   1441       1.97      yamt 			KASSERT(((((vaddr_t)pi) + ioff) & (align - 1)) == 0);
   1442        1.3        pk 
   1443       1.97      yamt 			/* Insert on page list */
   1444      1.102       chs 			LIST_INSERT_HEAD(&ph->ph_itemlist, pi, pi_list);
   1445        1.3        pk #ifdef DIAGNOSTIC
   1446       1.97      yamt 			pi->pi_magic = PI_MAGIC;
   1447        1.3        pk #endif
   1448      1.128  christos 			cp = (char *)cp + pp->pr_size;
   1449      1.125        ad 
   1450      1.125        ad 			KASSERT((((vaddr_t)cp + ioff) & (align - 1)) == 0);
   1451       1.97      yamt 		}
   1452        1.3        pk 	}
   1453        1.3        pk 
   1454        1.3        pk 	/*
   1455        1.3        pk 	 * If the pool was depleted, point at the new page.
   1456        1.3        pk 	 */
   1457        1.3        pk 	if (pp->pr_curpage == NULL)
   1458        1.3        pk 		pp->pr_curpage = ph;
   1459        1.3        pk 
   1460        1.3        pk 	if (++pp->pr_npages > pp->pr_hiwat)
   1461        1.3        pk 		pp->pr_hiwat = pp->pr_npages;
   1462        1.3        pk }
   1463        1.3        pk 
   1464       1.20   thorpej /*
   1465       1.52   thorpej  * Used by pool_get() when nitems drops below the low water mark.  This
   1466       1.88       chs  * is used to catch up pr_nitems with the low water mark.
   1467       1.20   thorpej  *
   1468       1.21   thorpej  * Note 1, we never wait for memory here, we let the caller decide what to do.
   1469       1.20   thorpej  *
   1470       1.73   thorpej  * Note 2, we must be called with the pool already locked, and we return
   1471       1.20   thorpej  * with it locked.
   1472       1.20   thorpej  */
   1473       1.20   thorpej static int
   1474       1.42   thorpej pool_catchup(struct pool *pp)
   1475       1.20   thorpej {
   1476       1.20   thorpej 	int error = 0;
   1477       1.20   thorpej 
   1478       1.54   thorpej 	while (POOL_NEEDS_CATCHUP(pp)) {
   1479      1.113      yamt 		error = pool_grow(pp, PR_NOWAIT);
   1480      1.113      yamt 		if (error) {
   1481       1.20   thorpej 			break;
   1482       1.20   thorpej 		}
   1483       1.20   thorpej 	}
   1484      1.113      yamt 	return error;
   1485       1.20   thorpej }
   1486       1.20   thorpej 
   1487       1.88       chs static void
   1488       1.88       chs pool_update_curpage(struct pool *pp)
   1489       1.88       chs {
   1490       1.88       chs 
   1491       1.88       chs 	pp->pr_curpage = LIST_FIRST(&pp->pr_partpages);
   1492       1.88       chs 	if (pp->pr_curpage == NULL) {
   1493       1.88       chs 		pp->pr_curpage = LIST_FIRST(&pp->pr_emptypages);
   1494       1.88       chs 	}
   1495       1.88       chs }
   1496       1.88       chs 
   1497        1.3        pk void
   1498       1.42   thorpej pool_setlowat(struct pool *pp, int n)
   1499        1.3        pk {
   1500       1.15        pk 
   1501  1.128.2.2        ad 	mutex_enter(&pp->pr_lock);
   1502       1.21   thorpej 
   1503        1.3        pk 	pp->pr_minitems = n;
   1504       1.15        pk 	pp->pr_minpages = (n == 0)
   1505       1.15        pk 		? 0
   1506       1.18   thorpej 		: roundup(n, pp->pr_itemsperpage) / pp->pr_itemsperpage;
   1507       1.20   thorpej 
   1508       1.20   thorpej 	/* Make sure we're caught up with the newly-set low water mark. */
   1509       1.75    simonb 	if (POOL_NEEDS_CATCHUP(pp) && pool_catchup(pp) != 0) {
   1510       1.20   thorpej 		/*
   1511       1.20   thorpej 		 * XXX: Should we log a warning?  Should we set up a timeout
   1512       1.20   thorpej 		 * to try again in a second or so?  The latter could break
   1513       1.20   thorpej 		 * a caller's assumptions about interrupt protection, etc.
   1514       1.20   thorpej 		 */
   1515       1.20   thorpej 	}
   1516       1.21   thorpej 
   1517  1.128.2.2        ad 	mutex_exit(&pp->pr_lock);
   1518        1.3        pk }
   1519        1.3        pk 
   1520        1.3        pk void
   1521       1.42   thorpej pool_sethiwat(struct pool *pp, int n)
   1522        1.3        pk {
   1523       1.15        pk 
   1524  1.128.2.2        ad 	mutex_enter(&pp->pr_lock);
   1525       1.21   thorpej 
   1526       1.15        pk 	pp->pr_maxpages = (n == 0)
   1527       1.15        pk 		? 0
   1528       1.18   thorpej 		: roundup(n, pp->pr_itemsperpage) / pp->pr_itemsperpage;
   1529       1.21   thorpej 
   1530  1.128.2.2        ad 	mutex_exit(&pp->pr_lock);
   1531        1.3        pk }
   1532        1.3        pk 
   1533       1.20   thorpej void
   1534       1.42   thorpej pool_sethardlimit(struct pool *pp, int n, const char *warnmess, int ratecap)
   1535       1.20   thorpej {
   1536       1.20   thorpej 
   1537  1.128.2.2        ad 	mutex_enter(&pp->pr_lock);
   1538       1.20   thorpej 
   1539       1.20   thorpej 	pp->pr_hardlimit = n;
   1540       1.20   thorpej 	pp->pr_hardlimit_warning = warnmess;
   1541       1.31   thorpej 	pp->pr_hardlimit_ratecap.tv_sec = ratecap;
   1542       1.31   thorpej 	pp->pr_hardlimit_warning_last.tv_sec = 0;
   1543       1.31   thorpej 	pp->pr_hardlimit_warning_last.tv_usec = 0;
   1544       1.20   thorpej 
   1545       1.20   thorpej 	/*
   1546       1.21   thorpej 	 * In-line version of pool_sethiwat(), because we don't want to
   1547       1.21   thorpej 	 * release the lock.
   1548       1.20   thorpej 	 */
   1549       1.20   thorpej 	pp->pr_maxpages = (n == 0)
   1550       1.20   thorpej 		? 0
   1551       1.20   thorpej 		: roundup(n, pp->pr_itemsperpage) / pp->pr_itemsperpage;
   1552       1.21   thorpej 
   1553  1.128.2.2        ad 	mutex_exit(&pp->pr_lock);
   1554       1.20   thorpej }
   1555        1.3        pk 
   1556        1.3        pk /*
   1557        1.3        pk  * Release all complete pages that have not been used recently.
   1558        1.3        pk  */
   1559       1.66   thorpej int
   1560       1.59   thorpej #ifdef POOL_DIAGNOSTIC
   1561       1.42   thorpej _pool_reclaim(struct pool *pp, const char *file, long line)
   1562       1.56  sommerfe #else
   1563       1.56  sommerfe pool_reclaim(struct pool *pp)
   1564       1.56  sommerfe #endif
   1565        1.3        pk {
   1566        1.3        pk 	struct pool_item_header *ph, *phnext;
   1567       1.43   thorpej 	struct pool_cache *pc;
   1568       1.61       chs 	struct pool_pagelist pq;
   1569      1.102       chs 	struct pool_cache_grouplist pcgl;
   1570      1.102       chs 	struct timeval curtime, diff;
   1571        1.3        pk 
   1572       1.68   thorpej 	if (pp->pr_drain_hook != NULL) {
   1573       1.68   thorpej 		/*
   1574       1.68   thorpej 		 * The drain hook must be called with the pool unlocked.
   1575       1.68   thorpej 		 */
   1576       1.68   thorpej 		(*pp->pr_drain_hook)(pp->pr_drain_hook_arg, PR_NOWAIT);
   1577       1.68   thorpej 	}
   1578       1.68   thorpej 
   1579  1.128.2.2        ad 	if (mutex_tryenter(&pp->pr_lock) == 0)
   1580       1.66   thorpej 		return (0);
   1581       1.25   thorpej 	pr_enter(pp, file, line);
   1582       1.68   thorpej 
   1583       1.88       chs 	LIST_INIT(&pq);
   1584      1.102       chs 	LIST_INIT(&pcgl);
   1585        1.3        pk 
   1586       1.43   thorpej 	/*
   1587       1.43   thorpej 	 * Reclaim items from the pool's caches.
   1588       1.43   thorpej 	 */
   1589      1.102       chs 	LIST_FOREACH(pc, &pp->pr_cachelist, pc_poollist)
   1590      1.102       chs 		pool_cache_reclaim(pc, &pq, &pcgl);
   1591       1.43   thorpej 
   1592      1.118    kardel 	getmicrotime(&curtime);
   1593       1.21   thorpej 
   1594       1.88       chs 	for (ph = LIST_FIRST(&pp->pr_emptypages); ph != NULL; ph = phnext) {
   1595       1.88       chs 		phnext = LIST_NEXT(ph, ph_pagelist);
   1596        1.3        pk 
   1597        1.3        pk 		/* Check our minimum page claim */
   1598        1.3        pk 		if (pp->pr_npages <= pp->pr_minpages)
   1599        1.3        pk 			break;
   1600        1.3        pk 
   1601       1.88       chs 		KASSERT(ph->ph_nmissing == 0);
   1602       1.88       chs 		timersub(&curtime, &ph->ph_time, &diff);
   1603      1.117      yamt 		if (diff.tv_sec < pool_inactive_time
   1604      1.117      yamt 		    && !pa_starved_p(pp->pr_alloc))
   1605       1.88       chs 			continue;
   1606       1.21   thorpej 
   1607       1.88       chs 		/*
   1608       1.88       chs 		 * If freeing this page would put us below
   1609       1.88       chs 		 * the low water mark, stop now.
   1610       1.88       chs 		 */
   1611       1.88       chs 		if ((pp->pr_nitems - pp->pr_itemsperpage) <
   1612       1.88       chs 		    pp->pr_minitems)
   1613       1.88       chs 			break;
   1614       1.21   thorpej 
   1615       1.88       chs 		pr_rmpage(pp, ph, &pq);
   1616        1.3        pk 	}
   1617        1.3        pk 
   1618       1.25   thorpej 	pr_leave(pp);
   1619  1.128.2.2        ad 	mutex_exit(&pp->pr_lock);
   1620      1.102       chs 	if (LIST_EMPTY(&pq) && LIST_EMPTY(&pcgl))
   1621      1.102       chs 		return 0;
   1622       1.66   thorpej 
   1623      1.101   thorpej 	pr_pagelist_free(pp, &pq);
   1624      1.102       chs 	pcg_grouplist_free(&pcgl);
   1625       1.66   thorpej 	return (1);
   1626        1.3        pk }
   1627        1.3        pk 
   1628        1.3        pk /*
   1629        1.3        pk  * Drain pools, one at a time.
   1630       1.21   thorpej  *
   1631       1.21   thorpej  * Note, we must never be called from an interrupt context.
   1632        1.3        pk  */
   1633        1.3        pk void
   1634      1.124      yamt pool_drain(void *arg)
   1635        1.3        pk {
   1636        1.3        pk 	struct pool *pp;
   1637       1.23   thorpej 	int s;
   1638        1.3        pk 
   1639       1.61       chs 	pp = NULL;
   1640  1.128.2.2        ad 	s = splvm();	/* XXX why? */
   1641  1.128.2.2        ad 	mutex_enter(&pool_head_lock);
   1642       1.61       chs 	if (drainpp == NULL) {
   1643      1.102       chs 		drainpp = LIST_FIRST(&pool_head);
   1644       1.61       chs 	}
   1645       1.61       chs 	if (drainpp) {
   1646       1.61       chs 		pp = drainpp;
   1647      1.102       chs 		drainpp = LIST_NEXT(pp, pr_poollist);
   1648       1.61       chs 	}
   1649  1.128.2.2        ad 	mutex_exit(&pool_head_lock);
   1650      1.115  christos 	if (pp)
   1651      1.115  christos 		pool_reclaim(pp);
   1652       1.61       chs 	splx(s);
   1653        1.3        pk }
   1654        1.3        pk 
   1655        1.3        pk /*
   1656        1.3        pk  * Diagnostic helpers.
   1657        1.3        pk  */
   1658        1.3        pk void
   1659       1.42   thorpej pool_print(struct pool *pp, const char *modif)
   1660       1.21   thorpej {
   1661       1.21   thorpej 
   1662  1.128.2.2        ad 	if (mutex_tryenter(&pp->pr_lock) == 0) {
   1663       1.25   thorpej 		printf("pool %s is locked; try again later\n",
   1664       1.25   thorpej 		    pp->pr_wchan);
   1665       1.25   thorpej 		return;
   1666       1.25   thorpej 	}
   1667       1.25   thorpej 	pool_print1(pp, modif, printf);
   1668  1.128.2.2        ad 	mutex_exit(&pp->pr_lock);
   1669       1.21   thorpej }
   1670       1.21   thorpej 
   1671       1.25   thorpej void
   1672      1.108      yamt pool_printall(const char *modif, void (*pr)(const char *, ...))
   1673      1.108      yamt {
   1674      1.108      yamt 	struct pool *pp;
   1675      1.108      yamt 
   1676  1.128.2.2        ad 	if (mutex_tryenter(&pool_head_lock) == 0) {
   1677      1.108      yamt 		(*pr)("WARNING: pool_head_slock is locked\n");
   1678      1.108      yamt 	} else {
   1679  1.128.2.2        ad 		mutex_exit(&pool_head_lock);
   1680      1.108      yamt 	}
   1681      1.108      yamt 
   1682      1.108      yamt 	LIST_FOREACH(pp, &pool_head, pr_poollist) {
   1683      1.108      yamt 		pool_printit(pp, modif, pr);
   1684      1.108      yamt 	}
   1685      1.108      yamt }
   1686      1.108      yamt 
   1687      1.108      yamt void
   1688       1.42   thorpej pool_printit(struct pool *pp, const char *modif, void (*pr)(const char *, ...))
   1689       1.25   thorpej {
   1690       1.25   thorpej 
   1691       1.25   thorpej 	if (pp == NULL) {
   1692       1.25   thorpej 		(*pr)("Must specify a pool to print.\n");
   1693       1.25   thorpej 		return;
   1694       1.25   thorpej 	}
   1695       1.25   thorpej 
   1696       1.25   thorpej 	/*
   1697       1.25   thorpej 	 * Called from DDB; interrupts should be blocked, and all
   1698       1.25   thorpej 	 * other processors should be paused.  We can skip locking
   1699       1.25   thorpej 	 * the pool in this case.
   1700       1.25   thorpej 	 *
   1701  1.128.2.2        ad 	 * We do a mutex_tryenter() just to print the lock
   1702       1.25   thorpej 	 * status, however.
   1703       1.25   thorpej 	 */
   1704       1.25   thorpej 
   1705  1.128.2.2        ad 	if (mutex_tryenter(&pp->pr_lock) == 0)
   1706       1.25   thorpej 		(*pr)("WARNING: pool %s is locked\n", pp->pr_wchan);
   1707       1.25   thorpej 	else
   1708  1.128.2.2        ad 		mutex_exit(&pp->pr_lock);
   1709       1.25   thorpej 
   1710       1.25   thorpej 	pool_print1(pp, modif, pr);
   1711       1.25   thorpej }
   1712       1.25   thorpej 
   1713       1.21   thorpej static void
   1714      1.124      yamt pool_print_pagelist(struct pool *pp, struct pool_pagelist *pl,
   1715       1.97      yamt     void (*pr)(const char *, ...))
   1716       1.88       chs {
   1717       1.88       chs 	struct pool_item_header *ph;
   1718       1.88       chs #ifdef DIAGNOSTIC
   1719       1.88       chs 	struct pool_item *pi;
   1720       1.88       chs #endif
   1721       1.88       chs 
   1722       1.88       chs 	LIST_FOREACH(ph, pl, ph_pagelist) {
   1723       1.88       chs 		(*pr)("\t\tpage %p, nmissing %d, time %lu,%lu\n",
   1724       1.88       chs 		    ph->ph_page, ph->ph_nmissing,
   1725       1.88       chs 		    (u_long)ph->ph_time.tv_sec,
   1726       1.88       chs 		    (u_long)ph->ph_time.tv_usec);
   1727       1.88       chs #ifdef DIAGNOSTIC
   1728       1.97      yamt 		if (!(pp->pr_roflags & PR_NOTOUCH)) {
   1729      1.102       chs 			LIST_FOREACH(pi, &ph->ph_itemlist, pi_list) {
   1730       1.97      yamt 				if (pi->pi_magic != PI_MAGIC) {
   1731       1.97      yamt 					(*pr)("\t\t\titem %p, magic 0x%x\n",
   1732       1.97      yamt 					    pi, pi->pi_magic);
   1733       1.97      yamt 				}
   1734       1.88       chs 			}
   1735       1.88       chs 		}
   1736       1.88       chs #endif
   1737       1.88       chs 	}
   1738       1.88       chs }
   1739       1.88       chs 
   1740       1.88       chs static void
   1741       1.42   thorpej pool_print1(struct pool *pp, const char *modif, void (*pr)(const char *, ...))
   1742        1.3        pk {
   1743       1.25   thorpej 	struct pool_item_header *ph;
   1744       1.44   thorpej 	struct pool_cache *pc;
   1745       1.44   thorpej 	struct pool_cache_group *pcg;
   1746       1.44   thorpej 	int i, print_log = 0, print_pagelist = 0, print_cache = 0;
   1747       1.25   thorpej 	char c;
   1748       1.25   thorpej 
   1749       1.25   thorpej 	while ((c = *modif++) != '\0') {
   1750       1.25   thorpej 		if (c == 'l')
   1751       1.25   thorpej 			print_log = 1;
   1752       1.25   thorpej 		if (c == 'p')
   1753       1.25   thorpej 			print_pagelist = 1;
   1754       1.44   thorpej 		if (c == 'c')
   1755       1.44   thorpej 			print_cache = 1;
   1756       1.25   thorpej 	}
   1757       1.25   thorpej 
   1758       1.25   thorpej 	(*pr)("POOL %s: size %u, align %u, ioff %u, roflags 0x%08x\n",
   1759       1.25   thorpej 	    pp->pr_wchan, pp->pr_size, pp->pr_align, pp->pr_itemoffset,
   1760       1.25   thorpej 	    pp->pr_roflags);
   1761       1.66   thorpej 	(*pr)("\talloc %p\n", pp->pr_alloc);
   1762       1.25   thorpej 	(*pr)("\tminitems %u, minpages %u, maxpages %u, npages %u\n",
   1763       1.25   thorpej 	    pp->pr_minitems, pp->pr_minpages, pp->pr_maxpages, pp->pr_npages);
   1764       1.25   thorpej 	(*pr)("\titemsperpage %u, nitems %u, nout %u, hardlimit %u\n",
   1765       1.25   thorpej 	    pp->pr_itemsperpage, pp->pr_nitems, pp->pr_nout, pp->pr_hardlimit);
   1766       1.25   thorpej 
   1767       1.25   thorpej 	(*pr)("\n\tnget %lu, nfail %lu, nput %lu\n",
   1768       1.25   thorpej 	    pp->pr_nget, pp->pr_nfail, pp->pr_nput);
   1769       1.25   thorpej 	(*pr)("\tnpagealloc %lu, npagefree %lu, hiwat %u, nidle %lu\n",
   1770       1.25   thorpej 	    pp->pr_npagealloc, pp->pr_npagefree, pp->pr_hiwat, pp->pr_nidle);
   1771       1.25   thorpej 
   1772       1.25   thorpej 	if (print_pagelist == 0)
   1773       1.25   thorpej 		goto skip_pagelist;
   1774       1.25   thorpej 
   1775       1.88       chs 	if ((ph = LIST_FIRST(&pp->pr_emptypages)) != NULL)
   1776       1.88       chs 		(*pr)("\n\tempty page list:\n");
   1777       1.97      yamt 	pool_print_pagelist(pp, &pp->pr_emptypages, pr);
   1778       1.88       chs 	if ((ph = LIST_FIRST(&pp->pr_fullpages)) != NULL)
   1779       1.88       chs 		(*pr)("\n\tfull page list:\n");
   1780       1.97      yamt 	pool_print_pagelist(pp, &pp->pr_fullpages, pr);
   1781       1.88       chs 	if ((ph = LIST_FIRST(&pp->pr_partpages)) != NULL)
   1782       1.88       chs 		(*pr)("\n\tpartial-page list:\n");
   1783       1.97      yamt 	pool_print_pagelist(pp, &pp->pr_partpages, pr);
   1784       1.88       chs 
   1785       1.25   thorpej 	if (pp->pr_curpage == NULL)
   1786       1.25   thorpej 		(*pr)("\tno current page\n");
   1787       1.25   thorpej 	else
   1788       1.25   thorpej 		(*pr)("\tcurpage %p\n", pp->pr_curpage->ph_page);
   1789       1.25   thorpej 
   1790       1.25   thorpej  skip_pagelist:
   1791       1.25   thorpej 	if (print_log == 0)
   1792       1.25   thorpej 		goto skip_log;
   1793       1.25   thorpej 
   1794       1.25   thorpej 	(*pr)("\n");
   1795       1.25   thorpej 	if ((pp->pr_roflags & PR_LOGGING) == 0)
   1796       1.25   thorpej 		(*pr)("\tno log\n");
   1797      1.122  christos 	else {
   1798       1.25   thorpej 		pr_printlog(pp, NULL, pr);
   1799      1.122  christos 	}
   1800        1.3        pk 
   1801       1.25   thorpej  skip_log:
   1802       1.44   thorpej 	if (print_cache == 0)
   1803       1.44   thorpej 		goto skip_cache;
   1804       1.44   thorpej 
   1805      1.102       chs #define PR_GROUPLIST(pcg)						\
   1806      1.102       chs 	(*pr)("\t\tgroup %p: avail %d\n", pcg, pcg->pcg_avail);		\
   1807      1.102       chs 	for (i = 0; i < PCG_NOBJECTS; i++) {				\
   1808      1.102       chs 		if (pcg->pcg_objects[i].pcgo_pa !=			\
   1809      1.102       chs 		    POOL_PADDR_INVALID) {				\
   1810      1.102       chs 			(*pr)("\t\t\t%p, 0x%llx\n",			\
   1811      1.102       chs 			    pcg->pcg_objects[i].pcgo_va,		\
   1812      1.102       chs 			    (unsigned long long)			\
   1813      1.102       chs 			    pcg->pcg_objects[i].pcgo_pa);		\
   1814      1.102       chs 		} else {						\
   1815      1.102       chs 			(*pr)("\t\t\t%p\n",				\
   1816      1.102       chs 			    pcg->pcg_objects[i].pcgo_va);		\
   1817      1.102       chs 		}							\
   1818      1.102       chs 	}
   1819      1.102       chs 
   1820      1.102       chs 	LIST_FOREACH(pc, &pp->pr_cachelist, pc_poollist) {
   1821      1.103       chs 		(*pr)("\tcache %p\n", pc);
   1822       1.48   thorpej 		(*pr)("\t    hits %lu misses %lu ngroups %lu nitems %lu\n",
   1823       1.48   thorpej 		    pc->pc_hits, pc->pc_misses, pc->pc_ngroups, pc->pc_nitems);
   1824      1.102       chs 		(*pr)("\t    full groups:\n");
   1825      1.103       chs 		LIST_FOREACH(pcg, &pc->pc_fullgroups, pcg_list) {
   1826      1.102       chs 			PR_GROUPLIST(pcg);
   1827      1.103       chs 		}
   1828      1.102       chs 		(*pr)("\t    partial groups:\n");
   1829      1.103       chs 		LIST_FOREACH(pcg, &pc->pc_partgroups, pcg_list) {
   1830      1.102       chs 			PR_GROUPLIST(pcg);
   1831      1.103       chs 		}
   1832      1.102       chs 		(*pr)("\t    empty groups:\n");
   1833      1.103       chs 		LIST_FOREACH(pcg, &pc->pc_emptygroups, pcg_list) {
   1834      1.102       chs 			PR_GROUPLIST(pcg);
   1835      1.103       chs 		}
   1836       1.44   thorpej 	}
   1837      1.102       chs #undef PR_GROUPLIST
   1838       1.44   thorpej 
   1839       1.44   thorpej  skip_cache:
   1840       1.88       chs 	pr_enter_check(pp, pr);
   1841       1.88       chs }
   1842       1.88       chs 
   1843       1.88       chs static int
   1844       1.88       chs pool_chk_page(struct pool *pp, const char *label, struct pool_item_header *ph)
   1845       1.88       chs {
   1846       1.88       chs 	struct pool_item *pi;
   1847      1.128  christos 	void *page;
   1848       1.88       chs 	int n;
   1849       1.88       chs 
   1850      1.121      yamt 	if ((pp->pr_roflags & PR_NOALIGN) == 0) {
   1851      1.128  christos 		page = (void *)((uintptr_t)ph & pp->pr_alloc->pa_pagemask);
   1852      1.121      yamt 		if (page != ph->ph_page &&
   1853      1.121      yamt 		    (pp->pr_roflags & PR_PHINPAGE) != 0) {
   1854      1.121      yamt 			if (label != NULL)
   1855      1.121      yamt 				printf("%s: ", label);
   1856      1.121      yamt 			printf("pool(%p:%s): page inconsistency: page %p;"
   1857      1.121      yamt 			       " at page head addr %p (p %p)\n", pp,
   1858      1.121      yamt 				pp->pr_wchan, ph->ph_page,
   1859      1.121      yamt 				ph, page);
   1860      1.121      yamt 			return 1;
   1861      1.121      yamt 		}
   1862       1.88       chs 	}
   1863        1.3        pk 
   1864       1.97      yamt 	if ((pp->pr_roflags & PR_NOTOUCH) != 0)
   1865       1.97      yamt 		return 0;
   1866       1.97      yamt 
   1867      1.102       chs 	for (pi = LIST_FIRST(&ph->ph_itemlist), n = 0;
   1868       1.88       chs 	     pi != NULL;
   1869      1.102       chs 	     pi = LIST_NEXT(pi,pi_list), n++) {
   1870       1.88       chs 
   1871       1.88       chs #ifdef DIAGNOSTIC
   1872       1.88       chs 		if (pi->pi_magic != PI_MAGIC) {
   1873       1.88       chs 			if (label != NULL)
   1874       1.88       chs 				printf("%s: ", label);
   1875       1.88       chs 			printf("pool(%s): free list modified: magic=%x;"
   1876      1.121      yamt 			       " page %p; item ordinal %d; addr %p\n",
   1877       1.88       chs 				pp->pr_wchan, pi->pi_magic, ph->ph_page,
   1878      1.121      yamt 				n, pi);
   1879       1.88       chs 			panic("pool");
   1880       1.88       chs 		}
   1881       1.88       chs #endif
   1882      1.121      yamt 		if ((pp->pr_roflags & PR_NOALIGN) != 0) {
   1883      1.121      yamt 			continue;
   1884      1.121      yamt 		}
   1885      1.128  christos 		page = (void *)((uintptr_t)pi & pp->pr_alloc->pa_pagemask);
   1886       1.88       chs 		if (page == ph->ph_page)
   1887       1.88       chs 			continue;
   1888       1.88       chs 
   1889       1.88       chs 		if (label != NULL)
   1890       1.88       chs 			printf("%s: ", label);
   1891       1.88       chs 		printf("pool(%p:%s): page inconsistency: page %p;"
   1892       1.88       chs 		       " item ordinal %d; addr %p (p %p)\n", pp,
   1893       1.88       chs 			pp->pr_wchan, ph->ph_page,
   1894       1.88       chs 			n, pi, page);
   1895       1.88       chs 		return 1;
   1896       1.88       chs 	}
   1897       1.88       chs 	return 0;
   1898        1.3        pk }
   1899        1.3        pk 
   1900       1.88       chs 
   1901        1.3        pk int
   1902       1.42   thorpej pool_chk(struct pool *pp, const char *label)
   1903        1.3        pk {
   1904        1.3        pk 	struct pool_item_header *ph;
   1905        1.3        pk 	int r = 0;
   1906        1.3        pk 
   1907  1.128.2.2        ad 	mutex_enter(&pp->pr_lock);
   1908       1.88       chs 	LIST_FOREACH(ph, &pp->pr_emptypages, ph_pagelist) {
   1909       1.88       chs 		r = pool_chk_page(pp, label, ph);
   1910       1.88       chs 		if (r) {
   1911       1.88       chs 			goto out;
   1912       1.88       chs 		}
   1913       1.88       chs 	}
   1914       1.88       chs 	LIST_FOREACH(ph, &pp->pr_fullpages, ph_pagelist) {
   1915       1.88       chs 		r = pool_chk_page(pp, label, ph);
   1916       1.88       chs 		if (r) {
   1917        1.3        pk 			goto out;
   1918        1.3        pk 		}
   1919       1.88       chs 	}
   1920       1.88       chs 	LIST_FOREACH(ph, &pp->pr_partpages, ph_pagelist) {
   1921       1.88       chs 		r = pool_chk_page(pp, label, ph);
   1922       1.88       chs 		if (r) {
   1923        1.3        pk 			goto out;
   1924        1.3        pk 		}
   1925        1.3        pk 	}
   1926       1.88       chs 
   1927        1.3        pk out:
   1928  1.128.2.2        ad 	mutex_exit(&pp->pr_lock);
   1929        1.3        pk 	return (r);
   1930       1.43   thorpej }
   1931       1.43   thorpej 
   1932       1.43   thorpej /*
   1933       1.43   thorpej  * pool_cache_init:
   1934       1.43   thorpej  *
   1935       1.43   thorpej  *	Initialize a pool cache.
   1936       1.43   thorpej  *
   1937       1.43   thorpej  *	NOTE: If the pool must be protected from interrupts, we expect
   1938       1.43   thorpej  *	to be called at the appropriate interrupt priority level.
   1939       1.43   thorpej  */
   1940       1.43   thorpej void
   1941       1.43   thorpej pool_cache_init(struct pool_cache *pc, struct pool *pp,
   1942       1.43   thorpej     int (*ctor)(void *, void *, int),
   1943       1.43   thorpej     void (*dtor)(void *, void *),
   1944       1.43   thorpej     void *arg)
   1945       1.43   thorpej {
   1946       1.43   thorpej 
   1947      1.102       chs 	LIST_INIT(&pc->pc_emptygroups);
   1948      1.102       chs 	LIST_INIT(&pc->pc_fullgroups);
   1949      1.102       chs 	LIST_INIT(&pc->pc_partgroups);
   1950  1.128.2.2        ad 	mutex_init(&pc->pc_lock, MUTEX_DRIVER, pp->pr_ipl);
   1951       1.43   thorpej 
   1952       1.43   thorpej 	pc->pc_pool = pp;
   1953       1.43   thorpej 
   1954       1.43   thorpej 	pc->pc_ctor = ctor;
   1955       1.43   thorpej 	pc->pc_dtor = dtor;
   1956       1.43   thorpej 	pc->pc_arg  = arg;
   1957       1.43   thorpej 
   1958       1.48   thorpej 	pc->pc_hits   = 0;
   1959       1.48   thorpej 	pc->pc_misses = 0;
   1960       1.48   thorpej 
   1961       1.48   thorpej 	pc->pc_ngroups = 0;
   1962       1.48   thorpej 
   1963       1.48   thorpej 	pc->pc_nitems = 0;
   1964       1.48   thorpej 
   1965  1.128.2.2        ad 	if (__predict_true(!cold)) {
   1966  1.128.2.2        ad 		mutex_enter(&pp->pr_lock);
   1967  1.128.2.2        ad 		LIST_INSERT_HEAD(&pp->pr_cachelist, pc, pc_poollist);
   1968  1.128.2.2        ad 		mutex_exit(&pp->pr_lock);
   1969  1.128.2.2        ad 	} else
   1970  1.128.2.2        ad 		LIST_INSERT_HEAD(&pp->pr_cachelist, pc, pc_poollist);
   1971       1.43   thorpej }
   1972       1.43   thorpej 
   1973       1.43   thorpej /*
   1974       1.43   thorpej  * pool_cache_destroy:
   1975       1.43   thorpej  *
   1976       1.43   thorpej  *	Destroy a pool cache.
   1977       1.43   thorpej  */
   1978       1.43   thorpej void
   1979       1.43   thorpej pool_cache_destroy(struct pool_cache *pc)
   1980       1.43   thorpej {
   1981       1.43   thorpej 	struct pool *pp = pc->pc_pool;
   1982       1.43   thorpej 
   1983       1.43   thorpej 	/* First, invalidate the entire cache. */
   1984       1.43   thorpej 	pool_cache_invalidate(pc);
   1985       1.43   thorpej 
   1986       1.43   thorpej 	/* ...and remove it from the pool's cache list. */
   1987  1.128.2.2        ad 	mutex_enter(&pp->pr_lock);
   1988      1.102       chs 	LIST_REMOVE(pc, pc_poollist);
   1989  1.128.2.2        ad 	mutex_exit(&pp->pr_lock);
   1990  1.128.2.2        ad 
   1991  1.128.2.2        ad 	mutex_destroy(&pc->pc_lock);
   1992       1.43   thorpej }
   1993       1.43   thorpej 
   1994      1.110     perry static inline void *
   1995       1.87   thorpej pcg_get(struct pool_cache_group *pcg, paddr_t *pap)
   1996       1.43   thorpej {
   1997       1.43   thorpej 	void *object;
   1998       1.43   thorpej 	u_int idx;
   1999       1.43   thorpej 
   2000       1.43   thorpej 	KASSERT(pcg->pcg_avail <= PCG_NOBJECTS);
   2001       1.45   thorpej 	KASSERT(pcg->pcg_avail != 0);
   2002       1.43   thorpej 	idx = --pcg->pcg_avail;
   2003       1.43   thorpej 
   2004       1.87   thorpej 	KASSERT(pcg->pcg_objects[idx].pcgo_va != NULL);
   2005       1.87   thorpej 	object = pcg->pcg_objects[idx].pcgo_va;
   2006       1.87   thorpej 	if (pap != NULL)
   2007       1.87   thorpej 		*pap = pcg->pcg_objects[idx].pcgo_pa;
   2008       1.87   thorpej 	pcg->pcg_objects[idx].pcgo_va = NULL;
   2009       1.43   thorpej 
   2010       1.43   thorpej 	return (object);
   2011       1.43   thorpej }
   2012       1.43   thorpej 
   2013      1.110     perry static inline void
   2014       1.87   thorpej pcg_put(struct pool_cache_group *pcg, void *object, paddr_t pa)
   2015       1.43   thorpej {
   2016       1.43   thorpej 	u_int idx;
   2017       1.43   thorpej 
   2018       1.43   thorpej 	KASSERT(pcg->pcg_avail < PCG_NOBJECTS);
   2019       1.43   thorpej 	idx = pcg->pcg_avail++;
   2020       1.43   thorpej 
   2021       1.87   thorpej 	KASSERT(pcg->pcg_objects[idx].pcgo_va == NULL);
   2022       1.87   thorpej 	pcg->pcg_objects[idx].pcgo_va = object;
   2023       1.87   thorpej 	pcg->pcg_objects[idx].pcgo_pa = pa;
   2024       1.43   thorpej }
   2025       1.43   thorpej 
   2026      1.102       chs static void
   2027      1.102       chs pcg_grouplist_free(struct pool_cache_grouplist *pcgl)
   2028      1.102       chs {
   2029      1.102       chs 	struct pool_cache_group *pcg;
   2030      1.102       chs 
   2031      1.102       chs 	while ((pcg = LIST_FIRST(pcgl)) != NULL) {
   2032      1.102       chs 		LIST_REMOVE(pcg, pcg_list);
   2033      1.102       chs 		pool_put(&pcgpool, pcg);
   2034      1.102       chs 	}
   2035      1.102       chs }
   2036      1.102       chs 
   2037       1.43   thorpej /*
   2038       1.87   thorpej  * pool_cache_get{,_paddr}:
   2039       1.43   thorpej  *
   2040       1.87   thorpej  *	Get an object from a pool cache (optionally returning
   2041       1.87   thorpej  *	the physical address of the object).
   2042       1.43   thorpej  */
   2043       1.43   thorpej void *
   2044       1.87   thorpej pool_cache_get_paddr(struct pool_cache *pc, int flags, paddr_t *pap)
   2045       1.43   thorpej {
   2046       1.43   thorpej 	struct pool_cache_group *pcg;
   2047       1.43   thorpej 	void *object;
   2048       1.58   thorpej 
   2049       1.58   thorpej #ifdef LOCKDEBUG
   2050       1.58   thorpej 	if (flags & PR_WAITOK)
   2051      1.119      yamt 		ASSERT_SLEEPABLE(NULL, "pool_cache_get(PR_WAITOK)");
   2052       1.58   thorpej #endif
   2053       1.43   thorpej 
   2054  1.128.2.2        ad 	mutex_enter(&pc->pc_lock);
   2055       1.43   thorpej 
   2056      1.102       chs 	pcg = LIST_FIRST(&pc->pc_partgroups);
   2057      1.102       chs 	if (pcg == NULL) {
   2058      1.102       chs 		pcg = LIST_FIRST(&pc->pc_fullgroups);
   2059      1.102       chs 		if (pcg != NULL) {
   2060      1.102       chs 			LIST_REMOVE(pcg, pcg_list);
   2061      1.102       chs 			LIST_INSERT_HEAD(&pc->pc_partgroups, pcg, pcg_list);
   2062       1.43   thorpej 		}
   2063      1.102       chs 	}
   2064      1.102       chs 	if (pcg == NULL) {
   2065       1.43   thorpej 
   2066       1.43   thorpej 		/*
   2067       1.43   thorpej 		 * No groups with any available objects.  Allocate
   2068       1.43   thorpej 		 * a new object, construct it, and return it to
   2069       1.43   thorpej 		 * the caller.  We will allocate a group, if necessary,
   2070       1.43   thorpej 		 * when the object is freed back to the cache.
   2071       1.43   thorpej 		 */
   2072       1.48   thorpej 		pc->pc_misses++;
   2073  1.128.2.2        ad 		mutex_exit(&pc->pc_lock);
   2074       1.43   thorpej 		object = pool_get(pc->pc_pool, flags);
   2075       1.43   thorpej 		if (object != NULL && pc->pc_ctor != NULL) {
   2076       1.43   thorpej 			if ((*pc->pc_ctor)(pc->pc_arg, object, flags) != 0) {
   2077       1.43   thorpej 				pool_put(pc->pc_pool, object);
   2078       1.43   thorpej 				return (NULL);
   2079       1.43   thorpej 			}
   2080       1.43   thorpej 		}
   2081      1.125        ad 		KASSERT((((vaddr_t)object + pc->pc_pool->pr_itemoffset) &
   2082      1.125        ad 		    (pc->pc_pool->pr_align - 1)) == 0);
   2083       1.87   thorpej 		if (object != NULL && pap != NULL) {
   2084       1.87   thorpej #ifdef POOL_VTOPHYS
   2085       1.87   thorpej 			*pap = POOL_VTOPHYS(object);
   2086       1.87   thorpej #else
   2087       1.87   thorpej 			*pap = POOL_PADDR_INVALID;
   2088       1.87   thorpej #endif
   2089       1.87   thorpej 		}
   2090      1.125        ad 
   2091      1.125        ad 		FREECHECK_OUT(&pc->pc_freecheck, object);
   2092       1.43   thorpej 		return (object);
   2093       1.43   thorpej 	}
   2094       1.43   thorpej 
   2095       1.48   thorpej 	pc->pc_hits++;
   2096       1.48   thorpej 	pc->pc_nitems--;
   2097       1.87   thorpej 	object = pcg_get(pcg, pap);
   2098       1.43   thorpej 
   2099      1.102       chs 	if (pcg->pcg_avail == 0) {
   2100      1.102       chs 		LIST_REMOVE(pcg, pcg_list);
   2101      1.102       chs 		LIST_INSERT_HEAD(&pc->pc_emptygroups, pcg, pcg_list);
   2102      1.102       chs 	}
   2103  1.128.2.2        ad 	mutex_exit(&pc->pc_lock);
   2104       1.43   thorpej 
   2105      1.125        ad 	KASSERT((((vaddr_t)object + pc->pc_pool->pr_itemoffset) &
   2106      1.125        ad 	    (pc->pc_pool->pr_align - 1)) == 0);
   2107      1.125        ad 	FREECHECK_OUT(&pc->pc_freecheck, object);
   2108       1.43   thorpej 	return (object);
   2109       1.43   thorpej }
   2110       1.43   thorpej 
   2111       1.43   thorpej /*
   2112       1.87   thorpej  * pool_cache_put{,_paddr}:
   2113       1.43   thorpej  *
   2114       1.87   thorpej  *	Put an object back to the pool cache (optionally caching the
   2115       1.87   thorpej  *	physical address of the object).
   2116       1.43   thorpej  */
   2117       1.43   thorpej void
   2118       1.87   thorpej pool_cache_put_paddr(struct pool_cache *pc, void *object, paddr_t pa)
   2119       1.43   thorpej {
   2120       1.43   thorpej 	struct pool_cache_group *pcg;
   2121       1.43   thorpej 
   2122      1.125        ad 	FREECHECK_IN(&pc->pc_freecheck, object);
   2123      1.125        ad 
   2124      1.109  christos 	if (__predict_false((pc->pc_pool->pr_flags & PR_WANTED) != 0)) {
   2125      1.109  christos 		goto destruct;
   2126      1.109  christos 	}
   2127      1.109  christos 
   2128  1.128.2.2        ad 	mutex_enter(&pc->pc_lock);
   2129       1.43   thorpej 
   2130      1.102       chs 	pcg = LIST_FIRST(&pc->pc_partgroups);
   2131      1.102       chs 	if (pcg == NULL) {
   2132      1.102       chs 		pcg = LIST_FIRST(&pc->pc_emptygroups);
   2133      1.102       chs 		if (pcg != NULL) {
   2134      1.102       chs 			LIST_REMOVE(pcg, pcg_list);
   2135      1.102       chs 			LIST_INSERT_HEAD(&pc->pc_partgroups, pcg, pcg_list);
   2136       1.43   thorpej 		}
   2137      1.102       chs 	}
   2138      1.102       chs 	if (pcg == NULL) {
   2139       1.43   thorpej 
   2140       1.43   thorpej 		/*
   2141       1.43   thorpej 		 * No empty groups to free the object to.  Attempt to
   2142       1.47   thorpej 		 * allocate one.
   2143       1.43   thorpej 		 */
   2144  1.128.2.2        ad 		mutex_exit(&pc->pc_lock);
   2145       1.43   thorpej 		pcg = pool_get(&pcgpool, PR_NOWAIT);
   2146      1.102       chs 		if (pcg == NULL) {
   2147      1.109  christos destruct:
   2148      1.102       chs 
   2149      1.102       chs 			/*
   2150      1.102       chs 			 * Unable to allocate a cache group; destruct the object
   2151      1.102       chs 			 * and free it back to the pool.
   2152      1.102       chs 			 */
   2153      1.102       chs 			pool_cache_destruct_object(pc, object);
   2154      1.102       chs 			return;
   2155       1.43   thorpej 		}
   2156      1.102       chs 		memset(pcg, 0, sizeof(*pcg));
   2157  1.128.2.2        ad 		mutex_enter(&pc->pc_lock);
   2158      1.102       chs 		pc->pc_ngroups++;
   2159      1.102       chs 		LIST_INSERT_HEAD(&pc->pc_partgroups, pcg, pcg_list);
   2160       1.43   thorpej 	}
   2161       1.43   thorpej 
   2162       1.48   thorpej 	pc->pc_nitems++;
   2163       1.87   thorpej 	pcg_put(pcg, object, pa);
   2164       1.43   thorpej 
   2165      1.102       chs 	if (pcg->pcg_avail == PCG_NOBJECTS) {
   2166      1.102       chs 		LIST_REMOVE(pcg, pcg_list);
   2167      1.102       chs 		LIST_INSERT_HEAD(&pc->pc_fullgroups, pcg, pcg_list);
   2168      1.102       chs 	}
   2169  1.128.2.2        ad 	mutex_exit(&pc->pc_lock);
   2170       1.51   thorpej }
   2171       1.51   thorpej 
   2172       1.51   thorpej /*
   2173       1.51   thorpej  * pool_cache_destruct_object:
   2174       1.51   thorpej  *
   2175       1.51   thorpej  *	Force destruction of an object and its release back into
   2176       1.51   thorpej  *	the pool.
   2177       1.51   thorpej  */
   2178       1.51   thorpej void
   2179       1.51   thorpej pool_cache_destruct_object(struct pool_cache *pc, void *object)
   2180       1.51   thorpej {
   2181       1.51   thorpej 
   2182       1.51   thorpej 	if (pc->pc_dtor != NULL)
   2183       1.51   thorpej 		(*pc->pc_dtor)(pc->pc_arg, object);
   2184       1.51   thorpej 	pool_put(pc->pc_pool, object);
   2185       1.43   thorpej }
   2186       1.43   thorpej 
   2187      1.102       chs static void
   2188      1.106  christos pool_do_cache_invalidate_grouplist(struct pool_cache_grouplist *pcgsl,
   2189      1.105  christos     struct pool_cache *pc, struct pool_pagelist *pq,
   2190      1.106  christos     struct pool_cache_grouplist *pcgdl)
   2191      1.102       chs {
   2192      1.106  christos 	struct pool_cache_group *pcg, *npcg;
   2193      1.102       chs 	void *object;
   2194      1.102       chs 
   2195      1.106  christos 	for (pcg = LIST_FIRST(pcgsl); pcg != NULL; pcg = npcg) {
   2196      1.102       chs 		npcg = LIST_NEXT(pcg, pcg_list);
   2197      1.102       chs 		while (pcg->pcg_avail != 0) {
   2198      1.102       chs 			pc->pc_nitems--;
   2199      1.102       chs 			object = pcg_get(pcg, NULL);
   2200      1.102       chs 			if (pc->pc_dtor != NULL)
   2201      1.102       chs 				(*pc->pc_dtor)(pc->pc_arg, object);
   2202      1.102       chs 			pool_do_put(pc->pc_pool, object, pq);
   2203      1.102       chs 		}
   2204      1.103       chs 		pc->pc_ngroups--;
   2205      1.102       chs 		LIST_REMOVE(pcg, pcg_list);
   2206      1.106  christos 		LIST_INSERT_HEAD(pcgdl, pcg, pcg_list);
   2207      1.102       chs 	}
   2208      1.105  christos }
   2209      1.105  christos 
   2210      1.105  christos static void
   2211      1.105  christos pool_do_cache_invalidate(struct pool_cache *pc, struct pool_pagelist *pq,
   2212      1.105  christos     struct pool_cache_grouplist *pcgl)
   2213      1.105  christos {
   2214      1.105  christos 
   2215  1.128.2.2        ad 	KASSERT(mutex_owned(&pc->pc_lock));
   2216  1.128.2.2        ad 	KASSERT(mutex_owned(&pc->pc_pool->pr_lock));
   2217      1.105  christos 
   2218      1.106  christos 	pool_do_cache_invalidate_grouplist(&pc->pc_fullgroups, pc, pq, pcgl);
   2219      1.106  christos 	pool_do_cache_invalidate_grouplist(&pc->pc_partgroups, pc, pq, pcgl);
   2220      1.103       chs 
   2221      1.103       chs 	KASSERT(LIST_EMPTY(&pc->pc_partgroups));
   2222      1.103       chs 	KASSERT(LIST_EMPTY(&pc->pc_fullgroups));
   2223      1.103       chs 	KASSERT(pc->pc_nitems == 0);
   2224      1.102       chs }
   2225      1.102       chs 
   2226       1.43   thorpej /*
   2227      1.101   thorpej  * pool_cache_invalidate:
   2228       1.43   thorpej  *
   2229      1.101   thorpej  *	Invalidate a pool cache (destruct and release all of the
   2230      1.101   thorpej  *	cached objects).
   2231       1.43   thorpej  */
   2232      1.101   thorpej void
   2233      1.101   thorpej pool_cache_invalidate(struct pool_cache *pc)
   2234       1.43   thorpej {
   2235      1.101   thorpej 	struct pool_pagelist pq;
   2236      1.102       chs 	struct pool_cache_grouplist pcgl;
   2237      1.101   thorpej 
   2238      1.101   thorpej 	LIST_INIT(&pq);
   2239      1.102       chs 	LIST_INIT(&pcgl);
   2240      1.101   thorpej 
   2241  1.128.2.2        ad 	mutex_enter(&pc->pc_lock);
   2242  1.128.2.2        ad 	mutex_enter(&pc->pc_pool->pr_lock);
   2243       1.43   thorpej 
   2244      1.102       chs 	pool_do_cache_invalidate(pc, &pq, &pcgl);
   2245       1.43   thorpej 
   2246  1.128.2.2        ad 	mutex_exit(&pc->pc_pool->pr_lock);
   2247  1.128.2.2        ad 	mutex_exit(&pc->pc_lock);
   2248       1.43   thorpej 
   2249      1.102       chs 	pr_pagelist_free(pc->pc_pool, &pq);
   2250      1.102       chs 	pcg_grouplist_free(&pcgl);
   2251       1.43   thorpej }
   2252       1.43   thorpej 
   2253       1.43   thorpej /*
   2254       1.43   thorpej  * pool_cache_reclaim:
   2255       1.43   thorpej  *
   2256       1.43   thorpej  *	Reclaim a pool cache for pool_reclaim().
   2257       1.43   thorpej  */
   2258       1.43   thorpej static void
   2259      1.102       chs pool_cache_reclaim(struct pool_cache *pc, struct pool_pagelist *pq,
   2260      1.102       chs     struct pool_cache_grouplist *pcgl)
   2261       1.43   thorpej {
   2262      1.101   thorpej 
   2263      1.101   thorpej 	/*
   2264      1.101   thorpej 	 * We're locking in the wrong order (normally pool_cache -> pool,
   2265      1.101   thorpej 	 * but the pool is already locked when we get here), so we have
   2266      1.101   thorpej 	 * to use trylock.  If we can't lock the pool_cache, it's not really
   2267      1.101   thorpej 	 * a big deal here.
   2268      1.101   thorpej 	 */
   2269  1.128.2.2        ad 	if (mutex_tryenter(&pc->pc_lock) == 0)
   2270      1.101   thorpej 		return;
   2271      1.101   thorpej 
   2272      1.102       chs 	pool_do_cache_invalidate(pc, pq, pcgl);
   2273       1.43   thorpej 
   2274  1.128.2.2        ad 	mutex_exit(&pc->pc_lock);
   2275        1.3        pk }
   2276       1.66   thorpej 
   2277       1.66   thorpej /*
   2278       1.66   thorpej  * Pool backend allocators.
   2279       1.66   thorpej  *
   2280       1.66   thorpej  * Each pool has a backend allocator that handles allocation, deallocation,
   2281       1.66   thorpej  * and any additional draining that might be needed.
   2282       1.66   thorpej  *
   2283       1.66   thorpej  * We provide two standard allocators:
   2284       1.66   thorpej  *
   2285       1.66   thorpej  *	pool_allocator_kmem - the default when no allocator is specified
   2286       1.66   thorpej  *
   2287       1.66   thorpej  *	pool_allocator_nointr - used for pools that will not be accessed
   2288       1.66   thorpej  *	in interrupt context.
   2289       1.66   thorpej  */
   2290       1.66   thorpej void	*pool_page_alloc(struct pool *, int);
   2291       1.66   thorpej void	pool_page_free(struct pool *, void *);
   2292       1.66   thorpej 
   2293      1.112     bjh21 #ifdef POOL_SUBPAGE
   2294      1.112     bjh21 struct pool_allocator pool_allocator_kmem_fullpage = {
   2295      1.112     bjh21 	pool_page_alloc, pool_page_free, 0,
   2296      1.117      yamt 	.pa_backingmapptr = &kmem_map,
   2297      1.112     bjh21 };
   2298      1.112     bjh21 #else
   2299       1.66   thorpej struct pool_allocator pool_allocator_kmem = {
   2300       1.66   thorpej 	pool_page_alloc, pool_page_free, 0,
   2301      1.117      yamt 	.pa_backingmapptr = &kmem_map,
   2302       1.66   thorpej };
   2303      1.112     bjh21 #endif
   2304       1.66   thorpej 
   2305       1.66   thorpej void	*pool_page_alloc_nointr(struct pool *, int);
   2306       1.66   thorpej void	pool_page_free_nointr(struct pool *, void *);
   2307       1.66   thorpej 
   2308      1.112     bjh21 #ifdef POOL_SUBPAGE
   2309      1.112     bjh21 struct pool_allocator pool_allocator_nointr_fullpage = {
   2310      1.112     bjh21 	pool_page_alloc_nointr, pool_page_free_nointr, 0,
   2311      1.117      yamt 	.pa_backingmapptr = &kernel_map,
   2312      1.112     bjh21 };
   2313      1.112     bjh21 #else
   2314       1.66   thorpej struct pool_allocator pool_allocator_nointr = {
   2315       1.66   thorpej 	pool_page_alloc_nointr, pool_page_free_nointr, 0,
   2316      1.117      yamt 	.pa_backingmapptr = &kernel_map,
   2317       1.66   thorpej };
   2318      1.112     bjh21 #endif
   2319       1.66   thorpej 
   2320       1.66   thorpej #ifdef POOL_SUBPAGE
   2321       1.66   thorpej void	*pool_subpage_alloc(struct pool *, int);
   2322       1.66   thorpej void	pool_subpage_free(struct pool *, void *);
   2323       1.66   thorpej 
   2324      1.112     bjh21 struct pool_allocator pool_allocator_kmem = {
   2325      1.112     bjh21 	pool_subpage_alloc, pool_subpage_free, POOL_SUBPAGE,
   2326      1.117      yamt 	.pa_backingmapptr = &kmem_map,
   2327      1.112     bjh21 };
   2328      1.112     bjh21 
   2329      1.112     bjh21 void	*pool_subpage_alloc_nointr(struct pool *, int);
   2330      1.112     bjh21 void	pool_subpage_free_nointr(struct pool *, void *);
   2331      1.112     bjh21 
   2332      1.112     bjh21 struct pool_allocator pool_allocator_nointr = {
   2333      1.112     bjh21 	pool_subpage_alloc, pool_subpage_free, POOL_SUBPAGE,
   2334      1.117      yamt 	.pa_backingmapptr = &kmem_map,
   2335       1.66   thorpej };
   2336       1.66   thorpej #endif /* POOL_SUBPAGE */
   2337       1.66   thorpej 
   2338      1.117      yamt static void *
   2339      1.117      yamt pool_allocator_alloc(struct pool *pp, int flags)
   2340       1.66   thorpej {
   2341      1.117      yamt 	struct pool_allocator *pa = pp->pr_alloc;
   2342       1.66   thorpej 	void *res;
   2343       1.66   thorpej 
   2344      1.117      yamt 	res = (*pa->pa_alloc)(pp, flags);
   2345      1.117      yamt 	if (res == NULL && (flags & PR_WAITOK) == 0) {
   2346       1.66   thorpej 		/*
   2347      1.117      yamt 		 * We only run the drain hook here if PR_NOWAIT.
   2348      1.117      yamt 		 * In other cases, the hook will be run in
   2349      1.117      yamt 		 * pool_reclaim().
   2350       1.66   thorpej 		 */
   2351      1.117      yamt 		if (pp->pr_drain_hook != NULL) {
   2352      1.117      yamt 			(*pp->pr_drain_hook)(pp->pr_drain_hook_arg, flags);
   2353      1.117      yamt 			res = (*pa->pa_alloc)(pp, flags);
   2354       1.66   thorpej 		}
   2355      1.117      yamt 	}
   2356      1.117      yamt 	return res;
   2357       1.66   thorpej }
   2358       1.66   thorpej 
   2359      1.117      yamt static void
   2360       1.66   thorpej pool_allocator_free(struct pool *pp, void *v)
   2361       1.66   thorpej {
   2362       1.66   thorpej 	struct pool_allocator *pa = pp->pr_alloc;
   2363       1.66   thorpej 
   2364       1.66   thorpej 	(*pa->pa_free)(pp, v);
   2365       1.66   thorpej }
   2366       1.66   thorpej 
   2367       1.66   thorpej void *
   2368      1.124      yamt pool_page_alloc(struct pool *pp, int flags)
   2369       1.66   thorpej {
   2370      1.127   thorpej 	bool waitok = (flags & PR_WAITOK) ? true : false;
   2371       1.66   thorpej 
   2372      1.100      yamt 	return ((void *) uvm_km_alloc_poolpage_cache(kmem_map, waitok));
   2373       1.66   thorpej }
   2374       1.66   thorpej 
   2375       1.66   thorpej void
   2376      1.124      yamt pool_page_free(struct pool *pp, void *v)
   2377       1.66   thorpej {
   2378       1.66   thorpej 
   2379       1.98      yamt 	uvm_km_free_poolpage_cache(kmem_map, (vaddr_t) v);
   2380       1.98      yamt }
   2381       1.98      yamt 
   2382       1.98      yamt static void *
   2383      1.124      yamt pool_page_alloc_meta(struct pool *pp, int flags)
   2384       1.98      yamt {
   2385      1.127   thorpej 	bool waitok = (flags & PR_WAITOK) ? true : false;
   2386       1.98      yamt 
   2387      1.100      yamt 	return ((void *) uvm_km_alloc_poolpage(kmem_map, waitok));
   2388       1.98      yamt }
   2389       1.98      yamt 
   2390       1.98      yamt static void
   2391      1.124      yamt pool_page_free_meta(struct pool *pp, void *v)
   2392       1.98      yamt {
   2393       1.98      yamt 
   2394      1.100      yamt 	uvm_km_free_poolpage(kmem_map, (vaddr_t) v);
   2395       1.66   thorpej }
   2396       1.66   thorpej 
   2397       1.66   thorpej #ifdef POOL_SUBPAGE
   2398       1.66   thorpej /* Sub-page allocator, for machines with large hardware pages. */
   2399       1.66   thorpej void *
   2400       1.66   thorpej pool_subpage_alloc(struct pool *pp, int flags)
   2401       1.66   thorpej {
   2402  1.128.2.2        ad 	return pool_get(&psppool, flags);
   2403       1.66   thorpej }
   2404       1.66   thorpej 
   2405       1.66   thorpej void
   2406       1.66   thorpej pool_subpage_free(struct pool *pp, void *v)
   2407       1.66   thorpej {
   2408       1.66   thorpej 	pool_put(&psppool, v);
   2409       1.66   thorpej }
   2410       1.66   thorpej 
   2411       1.66   thorpej /* We don't provide a real nointr allocator.  Maybe later. */
   2412       1.66   thorpej void *
   2413      1.112     bjh21 pool_subpage_alloc_nointr(struct pool *pp, int flags)
   2414       1.66   thorpej {
   2415       1.66   thorpej 
   2416       1.66   thorpej 	return (pool_subpage_alloc(pp, flags));
   2417       1.66   thorpej }
   2418       1.66   thorpej 
   2419       1.66   thorpej void
   2420      1.112     bjh21 pool_subpage_free_nointr(struct pool *pp, void *v)
   2421       1.66   thorpej {
   2422       1.66   thorpej 
   2423       1.66   thorpej 	pool_subpage_free(pp, v);
   2424       1.66   thorpej }
   2425      1.112     bjh21 #endif /* POOL_SUBPAGE */
   2426       1.66   thorpej void *
   2427      1.124      yamt pool_page_alloc_nointr(struct pool *pp, int flags)
   2428       1.66   thorpej {
   2429      1.127   thorpej 	bool waitok = (flags & PR_WAITOK) ? true : false;
   2430       1.66   thorpej 
   2431      1.100      yamt 	return ((void *) uvm_km_alloc_poolpage_cache(kernel_map, waitok));
   2432       1.66   thorpej }
   2433       1.66   thorpej 
   2434       1.66   thorpej void
   2435      1.124      yamt pool_page_free_nointr(struct pool *pp, void *v)
   2436       1.66   thorpej {
   2437       1.66   thorpej 
   2438       1.98      yamt 	uvm_km_free_poolpage_cache(kernel_map, (vaddr_t) v);
   2439       1.66   thorpej }
   2440