subr_pool.c revision 1.96 1 1.96 thorpej /* $NetBSD: subr_pool.c,v 1.96 2004/06/20 18:19:27 thorpej Exp $ */
2 1.1 pk
3 1.1 pk /*-
4 1.43 thorpej * Copyright (c) 1997, 1999, 2000 The NetBSD Foundation, Inc.
5 1.1 pk * All rights reserved.
6 1.1 pk *
7 1.1 pk * This code is derived from software contributed to The NetBSD Foundation
8 1.20 thorpej * by Paul Kranenburg; by Jason R. Thorpe of the Numerical Aerospace
9 1.20 thorpej * Simulation Facility, NASA Ames Research Center.
10 1.1 pk *
11 1.1 pk * Redistribution and use in source and binary forms, with or without
12 1.1 pk * modification, are permitted provided that the following conditions
13 1.1 pk * are met:
14 1.1 pk * 1. Redistributions of source code must retain the above copyright
15 1.1 pk * notice, this list of conditions and the following disclaimer.
16 1.1 pk * 2. Redistributions in binary form must reproduce the above copyright
17 1.1 pk * notice, this list of conditions and the following disclaimer in the
18 1.1 pk * documentation and/or other materials provided with the distribution.
19 1.1 pk * 3. All advertising materials mentioning features or use of this software
20 1.1 pk * must display the following acknowledgement:
21 1.13 christos * This product includes software developed by the NetBSD
22 1.13 christos * Foundation, Inc. and its contributors.
23 1.1 pk * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.1 pk * contributors may be used to endorse or promote products derived
25 1.1 pk * from this software without specific prior written permission.
26 1.1 pk *
27 1.1 pk * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.1 pk * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.1 pk * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.1 pk * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.1 pk * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 1.1 pk * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.1 pk * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.1 pk * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.1 pk * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.1 pk * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.1 pk * POSSIBILITY OF SUCH DAMAGE.
38 1.1 pk */
39 1.64 lukem
40 1.64 lukem #include <sys/cdefs.h>
41 1.96 thorpej __KERNEL_RCSID(0, "$NetBSD: subr_pool.c,v 1.96 2004/06/20 18:19:27 thorpej 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.3 pk
57 1.3 pk #include <uvm/uvm.h>
58 1.3 pk
59 1.1 pk /*
60 1.1 pk * Pool resource management utility.
61 1.3 pk *
62 1.88 chs * Memory is allocated in pages which are split into pieces according to
63 1.88 chs * the pool item size. Each page is kept on one of three lists in the
64 1.88 chs * pool structure: `pr_emptypages', `pr_fullpages' and `pr_partpages',
65 1.88 chs * for empty, full and partially-full pages respectively. The individual
66 1.88 chs * pool items are on a linked list headed by `ph_itemlist' in each page
67 1.88 chs * header. The memory for building the page list is either taken from
68 1.88 chs * the allocated pages themselves (for small pool items) or taken from
69 1.88 chs * an internal pool of page headers (`phpool').
70 1.1 pk */
71 1.1 pk
72 1.3 pk /* List of all pools */
73 1.5 thorpej TAILQ_HEAD(,pool) pool_head = TAILQ_HEAD_INITIALIZER(pool_head);
74 1.3 pk
75 1.3 pk /* Private pool for page header structures */
76 1.3 pk static struct pool phpool;
77 1.3 pk
78 1.62 bjh21 #ifdef POOL_SUBPAGE
79 1.62 bjh21 /* Pool of subpages for use by normal pools. */
80 1.62 bjh21 static struct pool psppool;
81 1.62 bjh21 #endif
82 1.62 bjh21
83 1.3 pk /* # of seconds to retain page after last use */
84 1.3 pk int pool_inactive_time = 10;
85 1.3 pk
86 1.3 pk /* Next candidate for drainage (see pool_drain()) */
87 1.23 thorpej static struct pool *drainpp;
88 1.23 thorpej
89 1.23 thorpej /* This spin lock protects both pool_head and drainpp. */
90 1.23 thorpej struct simplelock pool_head_slock = SIMPLELOCK_INITIALIZER;
91 1.3 pk
92 1.3 pk struct pool_item_header {
93 1.3 pk /* Page headers */
94 1.88 chs LIST_ENTRY(pool_item_header)
95 1.3 pk ph_pagelist; /* pool page list */
96 1.3 pk TAILQ_HEAD(,pool_item) ph_itemlist; /* chunk list for this page */
97 1.88 chs SPLAY_ENTRY(pool_item_header)
98 1.88 chs ph_node; /* Off-page page headers */
99 1.79 thorpej unsigned int ph_nmissing; /* # of chunks in use */
100 1.3 pk caddr_t ph_page; /* this page's address */
101 1.3 pk struct timeval ph_time; /* last referenced */
102 1.3 pk };
103 1.3 pk
104 1.1 pk struct pool_item {
105 1.3 pk #ifdef DIAGNOSTIC
106 1.82 thorpej u_int pi_magic;
107 1.33 chs #endif
108 1.82 thorpej #define PI_MAGIC 0xdeadbeefU
109 1.3 pk /* Other entries use only this list entry */
110 1.3 pk TAILQ_ENTRY(pool_item) pi_list;
111 1.3 pk };
112 1.3 pk
113 1.53 thorpej #define POOL_NEEDS_CATCHUP(pp) \
114 1.53 thorpej ((pp)->pr_nitems < (pp)->pr_minitems)
115 1.53 thorpej
116 1.43 thorpej /*
117 1.43 thorpej * Pool cache management.
118 1.43 thorpej *
119 1.43 thorpej * Pool caches provide a way for constructed objects to be cached by the
120 1.43 thorpej * pool subsystem. This can lead to performance improvements by avoiding
121 1.43 thorpej * needless object construction/destruction; it is deferred until absolutely
122 1.43 thorpej * necessary.
123 1.43 thorpej *
124 1.43 thorpej * Caches are grouped into cache groups. Each cache group references
125 1.43 thorpej * up to 16 constructed objects. When a cache allocates an object
126 1.43 thorpej * from the pool, it calls the object's constructor and places it into
127 1.43 thorpej * a cache group. When a cache group frees an object back to the pool,
128 1.43 thorpej * it first calls the object's destructor. This allows the object to
129 1.43 thorpej * persist in constructed form while freed to the cache.
130 1.43 thorpej *
131 1.43 thorpej * Multiple caches may exist for each pool. This allows a single
132 1.43 thorpej * object type to have multiple constructed forms. The pool references
133 1.43 thorpej * each cache, so that when a pool is drained by the pagedaemon, it can
134 1.43 thorpej * drain each individual cache as well. Each time a cache is drained,
135 1.43 thorpej * the most idle cache group is freed to the pool in its entirety.
136 1.43 thorpej *
137 1.43 thorpej * Pool caches are layed on top of pools. By layering them, we can avoid
138 1.43 thorpej * the complexity of cache management for pools which would not benefit
139 1.43 thorpej * from it.
140 1.43 thorpej */
141 1.43 thorpej
142 1.43 thorpej /* The cache group pool. */
143 1.43 thorpej static struct pool pcgpool;
144 1.3 pk
145 1.43 thorpej static void pool_cache_reclaim(struct pool_cache *);
146 1.3 pk
147 1.42 thorpej static int pool_catchup(struct pool *);
148 1.55 thorpej static void pool_prime_page(struct pool *, caddr_t,
149 1.55 thorpej struct pool_item_header *);
150 1.88 chs static void pool_update_curpage(struct pool *);
151 1.66 thorpej
152 1.66 thorpej void *pool_allocator_alloc(struct pool *, int);
153 1.66 thorpej void pool_allocator_free(struct pool *, void *);
154 1.3 pk
155 1.88 chs static void pool_print_pagelist(struct pool_pagelist *,
156 1.88 chs void (*)(const char *, ...));
157 1.42 thorpej static void pool_print1(struct pool *, const char *,
158 1.42 thorpej void (*)(const char *, ...));
159 1.3 pk
160 1.88 chs static int pool_chk_page(struct pool *, const char *,
161 1.88 chs struct pool_item_header *);
162 1.88 chs
163 1.3 pk /*
164 1.52 thorpej * Pool log entry. An array of these is allocated in pool_init().
165 1.3 pk */
166 1.3 pk struct pool_log {
167 1.3 pk const char *pl_file;
168 1.3 pk long pl_line;
169 1.3 pk int pl_action;
170 1.25 thorpej #define PRLOG_GET 1
171 1.25 thorpej #define PRLOG_PUT 2
172 1.3 pk void *pl_addr;
173 1.1 pk };
174 1.1 pk
175 1.86 matt #ifdef POOL_DIAGNOSTIC
176 1.3 pk /* Number of entries in pool log buffers */
177 1.17 thorpej #ifndef POOL_LOGSIZE
178 1.17 thorpej #define POOL_LOGSIZE 10
179 1.17 thorpej #endif
180 1.17 thorpej
181 1.17 thorpej int pool_logsize = POOL_LOGSIZE;
182 1.1 pk
183 1.42 thorpej static __inline void
184 1.42 thorpej pr_log(struct pool *pp, void *v, int action, const char *file, long line)
185 1.3 pk {
186 1.3 pk int n = pp->pr_curlogentry;
187 1.3 pk struct pool_log *pl;
188 1.3 pk
189 1.20 thorpej if ((pp->pr_roflags & PR_LOGGING) == 0)
190 1.3 pk return;
191 1.3 pk
192 1.3 pk /*
193 1.3 pk * Fill in the current entry. Wrap around and overwrite
194 1.3 pk * the oldest entry if necessary.
195 1.3 pk */
196 1.3 pk pl = &pp->pr_log[n];
197 1.3 pk pl->pl_file = file;
198 1.3 pk pl->pl_line = line;
199 1.3 pk pl->pl_action = action;
200 1.3 pk pl->pl_addr = v;
201 1.3 pk if (++n >= pp->pr_logsize)
202 1.3 pk n = 0;
203 1.3 pk pp->pr_curlogentry = n;
204 1.3 pk }
205 1.3 pk
206 1.3 pk static void
207 1.42 thorpej pr_printlog(struct pool *pp, struct pool_item *pi,
208 1.42 thorpej void (*pr)(const char *, ...))
209 1.3 pk {
210 1.3 pk int i = pp->pr_logsize;
211 1.3 pk int n = pp->pr_curlogentry;
212 1.3 pk
213 1.20 thorpej if ((pp->pr_roflags & PR_LOGGING) == 0)
214 1.3 pk return;
215 1.3 pk
216 1.3 pk /*
217 1.3 pk * Print all entries in this pool's log.
218 1.3 pk */
219 1.3 pk while (i-- > 0) {
220 1.3 pk struct pool_log *pl = &pp->pr_log[n];
221 1.3 pk if (pl->pl_action != 0) {
222 1.25 thorpej if (pi == NULL || pi == pl->pl_addr) {
223 1.25 thorpej (*pr)("\tlog entry %d:\n", i);
224 1.25 thorpej (*pr)("\t\taction = %s, addr = %p\n",
225 1.25 thorpej pl->pl_action == PRLOG_GET ? "get" : "put",
226 1.25 thorpej pl->pl_addr);
227 1.25 thorpej (*pr)("\t\tfile: %s at line %lu\n",
228 1.25 thorpej pl->pl_file, pl->pl_line);
229 1.25 thorpej }
230 1.3 pk }
231 1.3 pk if (++n >= pp->pr_logsize)
232 1.3 pk n = 0;
233 1.3 pk }
234 1.3 pk }
235 1.25 thorpej
236 1.42 thorpej static __inline void
237 1.42 thorpej pr_enter(struct pool *pp, const char *file, long line)
238 1.25 thorpej {
239 1.25 thorpej
240 1.34 thorpej if (__predict_false(pp->pr_entered_file != NULL)) {
241 1.25 thorpej printf("pool %s: reentrancy at file %s line %ld\n",
242 1.25 thorpej pp->pr_wchan, file, line);
243 1.25 thorpej printf(" previous entry at file %s line %ld\n",
244 1.25 thorpej pp->pr_entered_file, pp->pr_entered_line);
245 1.25 thorpej panic("pr_enter");
246 1.25 thorpej }
247 1.25 thorpej
248 1.25 thorpej pp->pr_entered_file = file;
249 1.25 thorpej pp->pr_entered_line = line;
250 1.25 thorpej }
251 1.25 thorpej
252 1.42 thorpej static __inline void
253 1.42 thorpej pr_leave(struct pool *pp)
254 1.25 thorpej {
255 1.25 thorpej
256 1.34 thorpej if (__predict_false(pp->pr_entered_file == NULL)) {
257 1.25 thorpej printf("pool %s not entered?\n", pp->pr_wchan);
258 1.25 thorpej panic("pr_leave");
259 1.25 thorpej }
260 1.25 thorpej
261 1.25 thorpej pp->pr_entered_file = NULL;
262 1.25 thorpej pp->pr_entered_line = 0;
263 1.25 thorpej }
264 1.25 thorpej
265 1.42 thorpej static __inline void
266 1.42 thorpej pr_enter_check(struct pool *pp, void (*pr)(const char *, ...))
267 1.25 thorpej {
268 1.25 thorpej
269 1.25 thorpej if (pp->pr_entered_file != NULL)
270 1.25 thorpej (*pr)("\n\tcurrently entered from file %s line %ld\n",
271 1.25 thorpej pp->pr_entered_file, pp->pr_entered_line);
272 1.25 thorpej }
273 1.3 pk #else
274 1.25 thorpej #define pr_log(pp, v, action, file, line)
275 1.25 thorpej #define pr_printlog(pp, pi, pr)
276 1.25 thorpej #define pr_enter(pp, file, line)
277 1.25 thorpej #define pr_leave(pp)
278 1.25 thorpej #define pr_enter_check(pp, pr)
279 1.59 thorpej #endif /* POOL_DIAGNOSTIC */
280 1.3 pk
281 1.88 chs static __inline int
282 1.88 chs phtree_compare(struct pool_item_header *a, struct pool_item_header *b)
283 1.88 chs {
284 1.88 chs if (a->ph_page < b->ph_page)
285 1.88 chs return (-1);
286 1.88 chs else if (a->ph_page > b->ph_page)
287 1.88 chs return (1);
288 1.88 chs else
289 1.88 chs return (0);
290 1.88 chs }
291 1.88 chs
292 1.88 chs SPLAY_PROTOTYPE(phtree, pool_item_header, ph_node, phtree_compare);
293 1.88 chs SPLAY_GENERATE(phtree, pool_item_header, ph_node, phtree_compare);
294 1.88 chs
295 1.3 pk /*
296 1.3 pk * Return the pool page header based on page address.
297 1.3 pk */
298 1.42 thorpej static __inline struct pool_item_header *
299 1.42 thorpej pr_find_pagehead(struct pool *pp, caddr_t page)
300 1.3 pk {
301 1.88 chs struct pool_item_header *ph, tmp;
302 1.3 pk
303 1.20 thorpej if ((pp->pr_roflags & PR_PHINPAGE) != 0)
304 1.3 pk return ((struct pool_item_header *)(page + pp->pr_phoffset));
305 1.3 pk
306 1.88 chs tmp.ph_page = page;
307 1.88 chs ph = SPLAY_FIND(phtree, &pp->pr_phtree, &tmp);
308 1.88 chs return ph;
309 1.3 pk }
310 1.3 pk
311 1.3 pk /*
312 1.3 pk * Remove a page from the pool.
313 1.3 pk */
314 1.42 thorpej static __inline void
315 1.61 chs pr_rmpage(struct pool *pp, struct pool_item_header *ph,
316 1.61 chs struct pool_pagelist *pq)
317 1.3 pk {
318 1.61 chs int s;
319 1.3 pk
320 1.91 yamt LOCK_ASSERT(!simple_lock_held(&pp->pr_slock) || pq != NULL);
321 1.91 yamt
322 1.3 pk /*
323 1.7 thorpej * If the page was idle, decrement the idle page count.
324 1.3 pk */
325 1.6 thorpej if (ph->ph_nmissing == 0) {
326 1.6 thorpej #ifdef DIAGNOSTIC
327 1.6 thorpej if (pp->pr_nidle == 0)
328 1.6 thorpej panic("pr_rmpage: nidle inconsistent");
329 1.20 thorpej if (pp->pr_nitems < pp->pr_itemsperpage)
330 1.20 thorpej panic("pr_rmpage: nitems inconsistent");
331 1.6 thorpej #endif
332 1.6 thorpej pp->pr_nidle--;
333 1.6 thorpej }
334 1.7 thorpej
335 1.20 thorpej pp->pr_nitems -= pp->pr_itemsperpage;
336 1.20 thorpej
337 1.7 thorpej /*
338 1.61 chs * Unlink a page from the pool and release it (or queue it for release).
339 1.7 thorpej */
340 1.88 chs LIST_REMOVE(ph, ph_pagelist);
341 1.91 yamt if ((pp->pr_roflags & PR_PHINPAGE) == 0)
342 1.91 yamt SPLAY_REMOVE(phtree, &pp->pr_phtree, ph);
343 1.61 chs if (pq) {
344 1.88 chs LIST_INSERT_HEAD(pq, ph, ph_pagelist);
345 1.61 chs } else {
346 1.66 thorpej pool_allocator_free(pp, ph->ph_page);
347 1.61 chs if ((pp->pr_roflags & PR_PHINPAGE) == 0) {
348 1.85 pk s = splvm();
349 1.61 chs pool_put(&phpool, ph);
350 1.61 chs splx(s);
351 1.61 chs }
352 1.61 chs }
353 1.7 thorpej pp->pr_npages--;
354 1.7 thorpej pp->pr_npagefree++;
355 1.6 thorpej
356 1.88 chs pool_update_curpage(pp);
357 1.3 pk }
358 1.3 pk
359 1.3 pk /*
360 1.94 simonb * Initialize all the pools listed in the "pools" link set.
361 1.94 simonb */
362 1.94 simonb void
363 1.94 simonb link_pool_init(void)
364 1.94 simonb {
365 1.94 simonb __link_set_decl(pools, struct link_pool_init);
366 1.94 simonb struct link_pool_init * const *pi;
367 1.94 simonb
368 1.94 simonb __link_set_foreach(pi, pools)
369 1.94 simonb pool_init((*pi)->pp, (*pi)->size, (*pi)->align,
370 1.94 simonb (*pi)->align_offset, (*pi)->flags, (*pi)->wchan,
371 1.94 simonb (*pi)->palloc);
372 1.94 simonb }
373 1.94 simonb
374 1.94 simonb /*
375 1.3 pk * Initialize the given pool resource structure.
376 1.3 pk *
377 1.3 pk * We export this routine to allow other kernel parts to declare
378 1.3 pk * static pools that must be initialized before malloc() is available.
379 1.3 pk */
380 1.3 pk void
381 1.42 thorpej pool_init(struct pool *pp, size_t size, u_int align, u_int ioff, int flags,
382 1.66 thorpej const char *wchan, struct pool_allocator *palloc)
383 1.3 pk {
384 1.88 chs int off, slack;
385 1.92 enami size_t trysize, phsize;
386 1.93 dbj int s;
387 1.3 pk
388 1.25 thorpej #ifdef POOL_DIAGNOSTIC
389 1.25 thorpej /*
390 1.25 thorpej * Always log if POOL_DIAGNOSTIC is defined.
391 1.25 thorpej */
392 1.25 thorpej if (pool_logsize != 0)
393 1.25 thorpej flags |= PR_LOGGING;
394 1.25 thorpej #endif
395 1.25 thorpej
396 1.66 thorpej #ifdef POOL_SUBPAGE
397 1.66 thorpej /*
398 1.66 thorpej * XXX We don't provide a real `nointr' back-end
399 1.66 thorpej * yet; all sub-pages come from a kmem back-end.
400 1.66 thorpej * maybe some day...
401 1.66 thorpej */
402 1.66 thorpej if (palloc == NULL) {
403 1.66 thorpej extern struct pool_allocator pool_allocator_kmem_subpage;
404 1.66 thorpej palloc = &pool_allocator_kmem_subpage;
405 1.66 thorpej }
406 1.3 pk /*
407 1.66 thorpej * We'll assume any user-specified back-end allocator
408 1.66 thorpej * will deal with sub-pages, or simply don't care.
409 1.3 pk */
410 1.66 thorpej #else
411 1.66 thorpej if (palloc == NULL)
412 1.66 thorpej palloc = &pool_allocator_kmem;
413 1.66 thorpej #endif /* POOL_SUBPAGE */
414 1.66 thorpej if ((palloc->pa_flags & PA_INITIALIZED) == 0) {
415 1.66 thorpej if (palloc->pa_pagesz == 0) {
416 1.62 bjh21 #ifdef POOL_SUBPAGE
417 1.66 thorpej if (palloc == &pool_allocator_kmem)
418 1.66 thorpej palloc->pa_pagesz = PAGE_SIZE;
419 1.66 thorpej else
420 1.66 thorpej palloc->pa_pagesz = POOL_SUBPAGE;
421 1.62 bjh21 #else
422 1.66 thorpej palloc->pa_pagesz = PAGE_SIZE;
423 1.66 thorpej #endif /* POOL_SUBPAGE */
424 1.66 thorpej }
425 1.66 thorpej
426 1.66 thorpej TAILQ_INIT(&palloc->pa_list);
427 1.66 thorpej
428 1.66 thorpej simple_lock_init(&palloc->pa_slock);
429 1.66 thorpej palloc->pa_pagemask = ~(palloc->pa_pagesz - 1);
430 1.66 thorpej palloc->pa_pageshift = ffs(palloc->pa_pagesz) - 1;
431 1.66 thorpej palloc->pa_flags |= PA_INITIALIZED;
432 1.4 thorpej }
433 1.3 pk
434 1.3 pk if (align == 0)
435 1.3 pk align = ALIGN(1);
436 1.14 thorpej
437 1.14 thorpej if (size < sizeof(struct pool_item))
438 1.14 thorpej size = sizeof(struct pool_item);
439 1.3 pk
440 1.78 thorpej size = roundup(size, align);
441 1.66 thorpej #ifdef DIAGNOSTIC
442 1.66 thorpej if (size > palloc->pa_pagesz)
443 1.35 pk panic("pool_init: pool item size (%lu) too large",
444 1.35 pk (u_long)size);
445 1.66 thorpej #endif
446 1.35 pk
447 1.3 pk /*
448 1.3 pk * Initialize the pool structure.
449 1.3 pk */
450 1.88 chs LIST_INIT(&pp->pr_emptypages);
451 1.88 chs LIST_INIT(&pp->pr_fullpages);
452 1.88 chs LIST_INIT(&pp->pr_partpages);
453 1.43 thorpej TAILQ_INIT(&pp->pr_cachelist);
454 1.3 pk pp->pr_curpage = NULL;
455 1.3 pk pp->pr_npages = 0;
456 1.3 pk pp->pr_minitems = 0;
457 1.3 pk pp->pr_minpages = 0;
458 1.3 pk pp->pr_maxpages = UINT_MAX;
459 1.20 thorpej pp->pr_roflags = flags;
460 1.20 thorpej pp->pr_flags = 0;
461 1.35 pk pp->pr_size = size;
462 1.3 pk pp->pr_align = align;
463 1.3 pk pp->pr_wchan = wchan;
464 1.66 thorpej pp->pr_alloc = palloc;
465 1.20 thorpej pp->pr_nitems = 0;
466 1.20 thorpej pp->pr_nout = 0;
467 1.20 thorpej pp->pr_hardlimit = UINT_MAX;
468 1.20 thorpej pp->pr_hardlimit_warning = NULL;
469 1.31 thorpej pp->pr_hardlimit_ratecap.tv_sec = 0;
470 1.31 thorpej pp->pr_hardlimit_ratecap.tv_usec = 0;
471 1.31 thorpej pp->pr_hardlimit_warning_last.tv_sec = 0;
472 1.31 thorpej pp->pr_hardlimit_warning_last.tv_usec = 0;
473 1.68 thorpej pp->pr_drain_hook = NULL;
474 1.68 thorpej pp->pr_drain_hook_arg = NULL;
475 1.3 pk
476 1.3 pk /*
477 1.3 pk * Decide whether to put the page header off page to avoid
478 1.92 enami * wasting too large a part of the page or too big item.
479 1.92 enami * Off-page page headers go on a hash table, so we can match
480 1.92 enami * a returned item with its header based on the page address.
481 1.92 enami * We use 1/16 of the page size and about 8 times of the item
482 1.92 enami * size as the threshold (XXX: tune)
483 1.92 enami *
484 1.92 enami * However, we'll put the header into the page if we can put
485 1.92 enami * it without wasting any items.
486 1.92 enami *
487 1.92 enami * Silently enforce `0 <= ioff < align'.
488 1.3 pk */
489 1.92 enami pp->pr_itemoffset = ioff %= align;
490 1.92 enami /* See the comment below about reserved bytes. */
491 1.92 enami trysize = palloc->pa_pagesz - ((align - ioff) % align);
492 1.92 enami phsize = ALIGN(sizeof(struct pool_item_header));
493 1.92 enami if (pp->pr_size < MIN(palloc->pa_pagesz / 16, phsize << 3) ||
494 1.92 enami trysize / pp->pr_size == (trysize - phsize) / pp->pr_size) {
495 1.3 pk /* Use the end of the page for the page header */
496 1.20 thorpej pp->pr_roflags |= PR_PHINPAGE;
497 1.92 enami pp->pr_phoffset = off = palloc->pa_pagesz - phsize;
498 1.2 pk } else {
499 1.3 pk /* The page header will be taken from our page header pool */
500 1.3 pk pp->pr_phoffset = 0;
501 1.66 thorpej off = palloc->pa_pagesz;
502 1.88 chs SPLAY_INIT(&pp->pr_phtree);
503 1.2 pk }
504 1.1 pk
505 1.3 pk /*
506 1.3 pk * Alignment is to take place at `ioff' within the item. This means
507 1.3 pk * we must reserve up to `align - 1' bytes on the page to allow
508 1.3 pk * appropriate positioning of each item.
509 1.3 pk */
510 1.3 pk pp->pr_itemsperpage = (off - ((align - ioff) % align)) / pp->pr_size;
511 1.43 thorpej KASSERT(pp->pr_itemsperpage != 0);
512 1.3 pk
513 1.3 pk /*
514 1.3 pk * Use the slack between the chunks and the page header
515 1.3 pk * for "cache coloring".
516 1.3 pk */
517 1.3 pk slack = off - pp->pr_itemsperpage * pp->pr_size;
518 1.3 pk pp->pr_maxcolor = (slack / align) * align;
519 1.3 pk pp->pr_curcolor = 0;
520 1.3 pk
521 1.3 pk pp->pr_nget = 0;
522 1.3 pk pp->pr_nfail = 0;
523 1.3 pk pp->pr_nput = 0;
524 1.3 pk pp->pr_npagealloc = 0;
525 1.3 pk pp->pr_npagefree = 0;
526 1.1 pk pp->pr_hiwat = 0;
527 1.8 thorpej pp->pr_nidle = 0;
528 1.3 pk
529 1.59 thorpej #ifdef POOL_DIAGNOSTIC
530 1.25 thorpej if (flags & PR_LOGGING) {
531 1.25 thorpej if (kmem_map == NULL ||
532 1.25 thorpej (pp->pr_log = malloc(pool_logsize * sizeof(struct pool_log),
533 1.25 thorpej M_TEMP, M_NOWAIT)) == NULL)
534 1.20 thorpej pp->pr_roflags &= ~PR_LOGGING;
535 1.3 pk pp->pr_curlogentry = 0;
536 1.3 pk pp->pr_logsize = pool_logsize;
537 1.3 pk }
538 1.59 thorpej #endif
539 1.25 thorpej
540 1.25 thorpej pp->pr_entered_file = NULL;
541 1.25 thorpej pp->pr_entered_line = 0;
542 1.3 pk
543 1.21 thorpej simple_lock_init(&pp->pr_slock);
544 1.1 pk
545 1.3 pk /*
546 1.43 thorpej * Initialize private page header pool and cache magazine pool if we
547 1.43 thorpej * haven't done so yet.
548 1.23 thorpej * XXX LOCKING.
549 1.3 pk */
550 1.3 pk if (phpool.pr_size == 0) {
551 1.62 bjh21 #ifdef POOL_SUBPAGE
552 1.62 bjh21 pool_init(&phpool, sizeof(struct pool_item_header), 0, 0, 0,
553 1.66 thorpej "phpool", &pool_allocator_kmem);
554 1.62 bjh21 pool_init(&psppool, POOL_SUBPAGE, POOL_SUBPAGE, 0,
555 1.66 thorpej PR_RECURSIVE, "psppool", &pool_allocator_kmem);
556 1.62 bjh21 #else
557 1.3 pk pool_init(&phpool, sizeof(struct pool_item_header), 0, 0,
558 1.66 thorpej 0, "phpool", NULL);
559 1.62 bjh21 #endif
560 1.43 thorpej pool_init(&pcgpool, sizeof(struct pool_cache_group), 0, 0,
561 1.66 thorpej 0, "pcgpool", NULL);
562 1.1 pk }
563 1.1 pk
564 1.23 thorpej /* Insert into the list of all pools. */
565 1.23 thorpej simple_lock(&pool_head_slock);
566 1.23 thorpej TAILQ_INSERT_TAIL(&pool_head, pp, pr_poollist);
567 1.23 thorpej simple_unlock(&pool_head_slock);
568 1.66 thorpej
569 1.66 thorpej /* Insert this into the list of pools using this allocator. */
570 1.93 dbj s = splvm();
571 1.66 thorpej simple_lock(&palloc->pa_slock);
572 1.66 thorpej TAILQ_INSERT_TAIL(&palloc->pa_list, pp, pr_alloc_list);
573 1.66 thorpej simple_unlock(&palloc->pa_slock);
574 1.93 dbj splx(s);
575 1.1 pk }
576 1.1 pk
577 1.1 pk /*
578 1.1 pk * De-commision a pool resource.
579 1.1 pk */
580 1.1 pk void
581 1.42 thorpej pool_destroy(struct pool *pp)
582 1.1 pk {
583 1.3 pk struct pool_item_header *ph;
584 1.43 thorpej struct pool_cache *pc;
585 1.93 dbj int s;
586 1.43 thorpej
587 1.66 thorpej /* Locking order: pool_allocator -> pool */
588 1.93 dbj s = splvm();
589 1.66 thorpej simple_lock(&pp->pr_alloc->pa_slock);
590 1.66 thorpej TAILQ_REMOVE(&pp->pr_alloc->pa_list, pp, pr_alloc_list);
591 1.66 thorpej simple_unlock(&pp->pr_alloc->pa_slock);
592 1.93 dbj splx(s);
593 1.66 thorpej
594 1.43 thorpej /* Destroy all caches for this pool. */
595 1.43 thorpej while ((pc = TAILQ_FIRST(&pp->pr_cachelist)) != NULL)
596 1.43 thorpej pool_cache_destroy(pc);
597 1.3 pk
598 1.3 pk #ifdef DIAGNOSTIC
599 1.20 thorpej if (pp->pr_nout != 0) {
600 1.25 thorpej pr_printlog(pp, NULL, printf);
601 1.80 provos panic("pool_destroy: pool busy: still out: %u",
602 1.20 thorpej pp->pr_nout);
603 1.3 pk }
604 1.3 pk #endif
605 1.1 pk
606 1.3 pk /* Remove all pages */
607 1.88 chs while ((ph = LIST_FIRST(&pp->pr_emptypages)) != NULL)
608 1.70 thorpej pr_rmpage(pp, ph, NULL);
609 1.88 chs KASSERT(LIST_EMPTY(&pp->pr_fullpages));
610 1.88 chs KASSERT(LIST_EMPTY(&pp->pr_partpages));
611 1.3 pk
612 1.3 pk /* Remove from global pool list */
613 1.23 thorpej simple_lock(&pool_head_slock);
614 1.3 pk TAILQ_REMOVE(&pool_head, pp, pr_poollist);
615 1.61 chs if (drainpp == pp) {
616 1.61 chs drainpp = NULL;
617 1.61 chs }
618 1.23 thorpej simple_unlock(&pool_head_slock);
619 1.3 pk
620 1.59 thorpej #ifdef POOL_DIAGNOSTIC
621 1.20 thorpej if ((pp->pr_roflags & PR_LOGGING) != 0)
622 1.3 pk free(pp->pr_log, M_TEMP);
623 1.59 thorpej #endif
624 1.1 pk }
625 1.1 pk
626 1.68 thorpej void
627 1.68 thorpej pool_set_drain_hook(struct pool *pp, void (*fn)(void *, int), void *arg)
628 1.68 thorpej {
629 1.68 thorpej
630 1.68 thorpej /* XXX no locking -- must be used just after pool_init() */
631 1.68 thorpej #ifdef DIAGNOSTIC
632 1.68 thorpej if (pp->pr_drain_hook != NULL)
633 1.68 thorpej panic("pool_set_drain_hook(%s): already set", pp->pr_wchan);
634 1.68 thorpej #endif
635 1.68 thorpej pp->pr_drain_hook = fn;
636 1.68 thorpej pp->pr_drain_hook_arg = arg;
637 1.68 thorpej }
638 1.68 thorpej
639 1.88 chs static struct pool_item_header *
640 1.55 thorpej pool_alloc_item_header(struct pool *pp, caddr_t storage, int flags)
641 1.55 thorpej {
642 1.55 thorpej struct pool_item_header *ph;
643 1.55 thorpej int s;
644 1.55 thorpej
645 1.55 thorpej LOCK_ASSERT(simple_lock_held(&pp->pr_slock) == 0);
646 1.55 thorpej
647 1.55 thorpej if ((pp->pr_roflags & PR_PHINPAGE) != 0)
648 1.55 thorpej ph = (struct pool_item_header *) (storage + pp->pr_phoffset);
649 1.55 thorpej else {
650 1.85 pk s = splvm();
651 1.55 thorpej ph = pool_get(&phpool, flags);
652 1.55 thorpej splx(s);
653 1.55 thorpej }
654 1.55 thorpej
655 1.55 thorpej return (ph);
656 1.55 thorpej }
657 1.1 pk
658 1.1 pk /*
659 1.3 pk * Grab an item from the pool; must be called at appropriate spl level
660 1.1 pk */
661 1.3 pk void *
662 1.59 thorpej #ifdef POOL_DIAGNOSTIC
663 1.42 thorpej _pool_get(struct pool *pp, int flags, const char *file, long line)
664 1.56 sommerfe #else
665 1.56 sommerfe pool_get(struct pool *pp, int flags)
666 1.56 sommerfe #endif
667 1.1 pk {
668 1.1 pk struct pool_item *pi;
669 1.3 pk struct pool_item_header *ph;
670 1.55 thorpej void *v;
671 1.1 pk
672 1.2 pk #ifdef DIAGNOSTIC
673 1.95 atatat if (__predict_false(pp->pr_itemsperpage == 0))
674 1.95 atatat panic("pool_get: pool %p: pr_itemsperpage is zero, "
675 1.95 atatat "pool not initialized?", pp);
676 1.84 thorpej if (__predict_false(curlwp == NULL && doing_shutdown == 0 &&
677 1.37 sommerfe (flags & PR_WAITOK) != 0))
678 1.77 matt panic("pool_get: %s: must have NOWAIT", pp->pr_wchan);
679 1.58 thorpej
680 1.58 thorpej #ifdef LOCKDEBUG
681 1.58 thorpej if (flags & PR_WAITOK)
682 1.58 thorpej simple_lock_only_held(NULL, "pool_get(PR_WAITOK)");
683 1.56 sommerfe #endif
684 1.58 thorpej #endif /* DIAGNOSTIC */
685 1.1 pk
686 1.21 thorpej simple_lock(&pp->pr_slock);
687 1.25 thorpej pr_enter(pp, file, line);
688 1.20 thorpej
689 1.20 thorpej startover:
690 1.20 thorpej /*
691 1.20 thorpej * Check to see if we've reached the hard limit. If we have,
692 1.20 thorpej * and we can wait, then wait until an item has been returned to
693 1.20 thorpej * the pool.
694 1.20 thorpej */
695 1.20 thorpej #ifdef DIAGNOSTIC
696 1.34 thorpej if (__predict_false(pp->pr_nout > pp->pr_hardlimit)) {
697 1.25 thorpej pr_leave(pp);
698 1.21 thorpej simple_unlock(&pp->pr_slock);
699 1.20 thorpej panic("pool_get: %s: crossed hard limit", pp->pr_wchan);
700 1.20 thorpej }
701 1.20 thorpej #endif
702 1.34 thorpej if (__predict_false(pp->pr_nout == pp->pr_hardlimit)) {
703 1.68 thorpej if (pp->pr_drain_hook != NULL) {
704 1.68 thorpej /*
705 1.68 thorpej * Since the drain hook is going to free things
706 1.68 thorpej * back to the pool, unlock, call the hook, re-lock,
707 1.68 thorpej * and check the hardlimit condition again.
708 1.68 thorpej */
709 1.68 thorpej pr_leave(pp);
710 1.68 thorpej simple_unlock(&pp->pr_slock);
711 1.68 thorpej (*pp->pr_drain_hook)(pp->pr_drain_hook_arg, flags);
712 1.68 thorpej simple_lock(&pp->pr_slock);
713 1.68 thorpej pr_enter(pp, file, line);
714 1.68 thorpej if (pp->pr_nout < pp->pr_hardlimit)
715 1.68 thorpej goto startover;
716 1.68 thorpej }
717 1.68 thorpej
718 1.29 sommerfe if ((flags & PR_WAITOK) && !(flags & PR_LIMITFAIL)) {
719 1.20 thorpej /*
720 1.20 thorpej * XXX: A warning isn't logged in this case. Should
721 1.20 thorpej * it be?
722 1.20 thorpej */
723 1.20 thorpej pp->pr_flags |= PR_WANTED;
724 1.25 thorpej pr_leave(pp);
725 1.40 sommerfe ltsleep(pp, PSWP, pp->pr_wchan, 0, &pp->pr_slock);
726 1.25 thorpej pr_enter(pp, file, line);
727 1.20 thorpej goto startover;
728 1.20 thorpej }
729 1.31 thorpej
730 1.31 thorpej /*
731 1.31 thorpej * Log a message that the hard limit has been hit.
732 1.31 thorpej */
733 1.31 thorpej if (pp->pr_hardlimit_warning != NULL &&
734 1.31 thorpej ratecheck(&pp->pr_hardlimit_warning_last,
735 1.31 thorpej &pp->pr_hardlimit_ratecap))
736 1.31 thorpej log(LOG_ERR, "%s\n", pp->pr_hardlimit_warning);
737 1.21 thorpej
738 1.21 thorpej pp->pr_nfail++;
739 1.21 thorpej
740 1.25 thorpej pr_leave(pp);
741 1.21 thorpej simple_unlock(&pp->pr_slock);
742 1.20 thorpej return (NULL);
743 1.20 thorpej }
744 1.20 thorpej
745 1.3 pk /*
746 1.3 pk * The convention we use is that if `curpage' is not NULL, then
747 1.3 pk * it points at a non-empty bucket. In particular, `curpage'
748 1.3 pk * never points at a page header which has PR_PHINPAGE set and
749 1.3 pk * has no items in its bucket.
750 1.3 pk */
751 1.20 thorpej if ((ph = pp->pr_curpage) == NULL) {
752 1.20 thorpej #ifdef DIAGNOSTIC
753 1.20 thorpej if (pp->pr_nitems != 0) {
754 1.21 thorpej simple_unlock(&pp->pr_slock);
755 1.20 thorpej printf("pool_get: %s: curpage NULL, nitems %u\n",
756 1.20 thorpej pp->pr_wchan, pp->pr_nitems);
757 1.80 provos panic("pool_get: nitems inconsistent");
758 1.20 thorpej }
759 1.20 thorpej #endif
760 1.20 thorpej
761 1.21 thorpej /*
762 1.21 thorpej * Call the back-end page allocator for more memory.
763 1.21 thorpej * Release the pool lock, as the back-end page allocator
764 1.21 thorpej * may block.
765 1.21 thorpej */
766 1.25 thorpej pr_leave(pp);
767 1.21 thorpej simple_unlock(&pp->pr_slock);
768 1.66 thorpej v = pool_allocator_alloc(pp, flags);
769 1.55 thorpej if (__predict_true(v != NULL))
770 1.55 thorpej ph = pool_alloc_item_header(pp, v, flags);
771 1.15 pk
772 1.55 thorpej if (__predict_false(v == NULL || ph == NULL)) {
773 1.55 thorpej if (v != NULL)
774 1.66 thorpej pool_allocator_free(pp, v);
775 1.55 thorpej
776 1.91 yamt simple_lock(&pp->pr_slock);
777 1.91 yamt pr_enter(pp, file, line);
778 1.91 yamt
779 1.21 thorpej /*
780 1.55 thorpej * We were unable to allocate a page or item
781 1.55 thorpej * header, but we released the lock during
782 1.55 thorpej * allocation, so perhaps items were freed
783 1.55 thorpej * back to the pool. Check for this case.
784 1.21 thorpej */
785 1.21 thorpej if (pp->pr_curpage != NULL)
786 1.21 thorpej goto startover;
787 1.15 pk
788 1.3 pk if ((flags & PR_WAITOK) == 0) {
789 1.3 pk pp->pr_nfail++;
790 1.25 thorpej pr_leave(pp);
791 1.21 thorpej simple_unlock(&pp->pr_slock);
792 1.1 pk return (NULL);
793 1.3 pk }
794 1.3 pk
795 1.15 pk /*
796 1.15 pk * Wait for items to be returned to this pool.
797 1.21 thorpej *
798 1.20 thorpej * XXX: maybe we should wake up once a second and
799 1.20 thorpej * try again?
800 1.15 pk */
801 1.1 pk pp->pr_flags |= PR_WANTED;
802 1.66 thorpej /* PA_WANTED is already set on the allocator. */
803 1.25 thorpej pr_leave(pp);
804 1.40 sommerfe ltsleep(pp, PSWP, pp->pr_wchan, 0, &pp->pr_slock);
805 1.25 thorpej pr_enter(pp, file, line);
806 1.20 thorpej goto startover;
807 1.1 pk }
808 1.3 pk
809 1.15 pk /* We have more memory; add it to the pool */
810 1.91 yamt simple_lock(&pp->pr_slock);
811 1.91 yamt pr_enter(pp, file, line);
812 1.55 thorpej pool_prime_page(pp, v, ph);
813 1.15 pk pp->pr_npagealloc++;
814 1.15 pk
815 1.20 thorpej /* Start the allocation process over. */
816 1.20 thorpej goto startover;
817 1.3 pk }
818 1.34 thorpej if (__predict_false((v = pi = TAILQ_FIRST(&ph->ph_itemlist)) == NULL)) {
819 1.25 thorpej pr_leave(pp);
820 1.21 thorpej simple_unlock(&pp->pr_slock);
821 1.3 pk panic("pool_get: %s: page empty", pp->pr_wchan);
822 1.21 thorpej }
823 1.20 thorpej #ifdef DIAGNOSTIC
824 1.34 thorpej if (__predict_false(pp->pr_nitems == 0)) {
825 1.25 thorpej pr_leave(pp);
826 1.21 thorpej simple_unlock(&pp->pr_slock);
827 1.20 thorpej printf("pool_get: %s: items on itemlist, nitems %u\n",
828 1.20 thorpej pp->pr_wchan, pp->pr_nitems);
829 1.80 provos panic("pool_get: nitems inconsistent");
830 1.20 thorpej }
831 1.65 enami #endif
832 1.56 sommerfe
833 1.65 enami #ifdef POOL_DIAGNOSTIC
834 1.3 pk pr_log(pp, v, PRLOG_GET, file, line);
835 1.65 enami #endif
836 1.3 pk
837 1.65 enami #ifdef DIAGNOSTIC
838 1.34 thorpej if (__predict_false(pi->pi_magic != PI_MAGIC)) {
839 1.25 thorpej pr_printlog(pp, pi, printf);
840 1.3 pk panic("pool_get(%s): free list modified: magic=%x; page %p;"
841 1.3 pk " item addr %p\n",
842 1.3 pk pp->pr_wchan, pi->pi_magic, ph->ph_page, pi);
843 1.3 pk }
844 1.3 pk #endif
845 1.3 pk
846 1.3 pk /*
847 1.3 pk * Remove from item list.
848 1.3 pk */
849 1.3 pk TAILQ_REMOVE(&ph->ph_itemlist, pi, pi_list);
850 1.20 thorpej pp->pr_nitems--;
851 1.20 thorpej pp->pr_nout++;
852 1.6 thorpej if (ph->ph_nmissing == 0) {
853 1.6 thorpej #ifdef DIAGNOSTIC
854 1.34 thorpej if (__predict_false(pp->pr_nidle == 0))
855 1.6 thorpej panic("pool_get: nidle inconsistent");
856 1.6 thorpej #endif
857 1.6 thorpej pp->pr_nidle--;
858 1.88 chs
859 1.88 chs /*
860 1.88 chs * This page was previously empty. Move it to the list of
861 1.88 chs * partially-full pages. This page is already curpage.
862 1.88 chs */
863 1.88 chs LIST_REMOVE(ph, ph_pagelist);
864 1.88 chs LIST_INSERT_HEAD(&pp->pr_partpages, ph, ph_pagelist);
865 1.6 thorpej }
866 1.3 pk ph->ph_nmissing++;
867 1.88 chs if (TAILQ_EMPTY(&ph->ph_itemlist)) {
868 1.21 thorpej #ifdef DIAGNOSTIC
869 1.34 thorpej if (__predict_false(ph->ph_nmissing != pp->pr_itemsperpage)) {
870 1.25 thorpej pr_leave(pp);
871 1.21 thorpej simple_unlock(&pp->pr_slock);
872 1.21 thorpej panic("pool_get: %s: nmissing inconsistent",
873 1.21 thorpej pp->pr_wchan);
874 1.21 thorpej }
875 1.21 thorpej #endif
876 1.3 pk /*
877 1.88 chs * This page is now full. Move it to the full list
878 1.88 chs * and select a new current page.
879 1.3 pk */
880 1.88 chs LIST_REMOVE(ph, ph_pagelist);
881 1.88 chs LIST_INSERT_HEAD(&pp->pr_fullpages, ph, ph_pagelist);
882 1.88 chs pool_update_curpage(pp);
883 1.1 pk }
884 1.3 pk
885 1.3 pk pp->pr_nget++;
886 1.20 thorpej
887 1.20 thorpej /*
888 1.20 thorpej * If we have a low water mark and we are now below that low
889 1.20 thorpej * water mark, add more items to the pool.
890 1.20 thorpej */
891 1.53 thorpej if (POOL_NEEDS_CATCHUP(pp) && pool_catchup(pp) != 0) {
892 1.20 thorpej /*
893 1.20 thorpej * XXX: Should we log a warning? Should we set up a timeout
894 1.20 thorpej * to try again in a second or so? The latter could break
895 1.20 thorpej * a caller's assumptions about interrupt protection, etc.
896 1.20 thorpej */
897 1.20 thorpej }
898 1.20 thorpej
899 1.25 thorpej pr_leave(pp);
900 1.21 thorpej simple_unlock(&pp->pr_slock);
901 1.1 pk return (v);
902 1.1 pk }
903 1.1 pk
904 1.1 pk /*
905 1.43 thorpej * Internal version of pool_put(). Pool is already locked/entered.
906 1.1 pk */
907 1.43 thorpej static void
908 1.56 sommerfe pool_do_put(struct pool *pp, void *v)
909 1.1 pk {
910 1.1 pk struct pool_item *pi = v;
911 1.3 pk struct pool_item_header *ph;
912 1.3 pk caddr_t page;
913 1.21 thorpej int s;
914 1.3 pk
915 1.61 chs LOCK_ASSERT(simple_lock_held(&pp->pr_slock));
916 1.61 chs
917 1.66 thorpej page = (caddr_t)((u_long)v & pp->pr_alloc->pa_pagemask);
918 1.1 pk
919 1.30 thorpej #ifdef DIAGNOSTIC
920 1.34 thorpej if (__predict_false(pp->pr_nout == 0)) {
921 1.30 thorpej printf("pool %s: putting with none out\n",
922 1.30 thorpej pp->pr_wchan);
923 1.30 thorpej panic("pool_put");
924 1.30 thorpej }
925 1.30 thorpej #endif
926 1.3 pk
927 1.34 thorpej if (__predict_false((ph = pr_find_pagehead(pp, page)) == NULL)) {
928 1.25 thorpej pr_printlog(pp, NULL, printf);
929 1.3 pk panic("pool_put: %s: page header missing", pp->pr_wchan);
930 1.3 pk }
931 1.28 thorpej
932 1.28 thorpej #ifdef LOCKDEBUG
933 1.28 thorpej /*
934 1.28 thorpej * Check if we're freeing a locked simple lock.
935 1.28 thorpej */
936 1.28 thorpej simple_lock_freecheck((caddr_t)pi, ((caddr_t)pi) + pp->pr_size);
937 1.28 thorpej #endif
938 1.3 pk
939 1.3 pk /*
940 1.3 pk * Return to item list.
941 1.3 pk */
942 1.2 pk #ifdef DIAGNOSTIC
943 1.3 pk pi->pi_magic = PI_MAGIC;
944 1.3 pk #endif
945 1.32 chs #ifdef DEBUG
946 1.32 chs {
947 1.32 chs int i, *ip = v;
948 1.32 chs
949 1.32 chs for (i = 0; i < pp->pr_size / sizeof(int); i++) {
950 1.32 chs *ip++ = PI_MAGIC;
951 1.32 chs }
952 1.32 chs }
953 1.32 chs #endif
954 1.32 chs
955 1.3 pk TAILQ_INSERT_HEAD(&ph->ph_itemlist, pi, pi_list);
956 1.79 thorpej KDASSERT(ph->ph_nmissing != 0);
957 1.3 pk ph->ph_nmissing--;
958 1.3 pk pp->pr_nput++;
959 1.20 thorpej pp->pr_nitems++;
960 1.20 thorpej pp->pr_nout--;
961 1.3 pk
962 1.3 pk /* Cancel "pool empty" condition if it exists */
963 1.3 pk if (pp->pr_curpage == NULL)
964 1.3 pk pp->pr_curpage = ph;
965 1.3 pk
966 1.3 pk if (pp->pr_flags & PR_WANTED) {
967 1.3 pk pp->pr_flags &= ~PR_WANTED;
968 1.15 pk if (ph->ph_nmissing == 0)
969 1.15 pk pp->pr_nidle++;
970 1.3 pk wakeup((caddr_t)pp);
971 1.3 pk return;
972 1.3 pk }
973 1.3 pk
974 1.3 pk /*
975 1.88 chs * If this page is now empty, do one of two things:
976 1.21 thorpej *
977 1.88 chs * (1) If we have more pages than the page high water mark,
978 1.96 thorpej * free the page back to the system. ONLY CONSIDER
979 1.90 thorpej * FREEING BACK A PAGE IF WE HAVE MORE THAN OUR MINIMUM PAGE
980 1.90 thorpej * CLAIM.
981 1.21 thorpej *
982 1.88 chs * (2) Otherwise, move the page to the empty page list.
983 1.88 chs *
984 1.88 chs * Either way, select a new current page (so we use a partially-full
985 1.88 chs * page if one is available).
986 1.3 pk */
987 1.3 pk if (ph->ph_nmissing == 0) {
988 1.6 thorpej pp->pr_nidle++;
989 1.90 thorpej if (pp->pr_npages > pp->pr_minpages &&
990 1.90 thorpej (pp->pr_npages > pp->pr_maxpages ||
991 1.90 thorpej (pp->pr_alloc->pa_flags & PA_WANT) != 0)) {
992 1.91 yamt simple_unlock(&pp->pr_slock);
993 1.61 chs pr_rmpage(pp, ph, NULL);
994 1.91 yamt simple_lock(&pp->pr_slock);
995 1.3 pk } else {
996 1.88 chs LIST_REMOVE(ph, ph_pagelist);
997 1.88 chs LIST_INSERT_HEAD(&pp->pr_emptypages, ph, ph_pagelist);
998 1.3 pk
999 1.21 thorpej /*
1000 1.21 thorpej * Update the timestamp on the page. A page must
1001 1.21 thorpej * be idle for some period of time before it can
1002 1.21 thorpej * be reclaimed by the pagedaemon. This minimizes
1003 1.21 thorpej * ping-pong'ing for memory.
1004 1.21 thorpej */
1005 1.21 thorpej s = splclock();
1006 1.21 thorpej ph->ph_time = mono_time;
1007 1.21 thorpej splx(s);
1008 1.1 pk }
1009 1.88 chs pool_update_curpage(pp);
1010 1.1 pk }
1011 1.88 chs
1012 1.21 thorpej /*
1013 1.88 chs * If the page was previously completely full, move it to the
1014 1.88 chs * partially-full list and make it the current page. The next
1015 1.88 chs * allocation will get the item from this page, instead of
1016 1.88 chs * further fragmenting the pool.
1017 1.21 thorpej */
1018 1.21 thorpej else if (ph->ph_nmissing == (pp->pr_itemsperpage - 1)) {
1019 1.88 chs LIST_REMOVE(ph, ph_pagelist);
1020 1.88 chs LIST_INSERT_HEAD(&pp->pr_partpages, ph, ph_pagelist);
1021 1.21 thorpej pp->pr_curpage = ph;
1022 1.21 thorpej }
1023 1.43 thorpej }
1024 1.43 thorpej
1025 1.43 thorpej /*
1026 1.43 thorpej * Return resource to the pool; must be called at appropriate spl level
1027 1.43 thorpej */
1028 1.59 thorpej #ifdef POOL_DIAGNOSTIC
1029 1.43 thorpej void
1030 1.43 thorpej _pool_put(struct pool *pp, void *v, const char *file, long line)
1031 1.43 thorpej {
1032 1.43 thorpej
1033 1.43 thorpej simple_lock(&pp->pr_slock);
1034 1.43 thorpej pr_enter(pp, file, line);
1035 1.43 thorpej
1036 1.56 sommerfe pr_log(pp, v, PRLOG_PUT, file, line);
1037 1.56 sommerfe
1038 1.56 sommerfe pool_do_put(pp, v);
1039 1.21 thorpej
1040 1.25 thorpej pr_leave(pp);
1041 1.21 thorpej simple_unlock(&pp->pr_slock);
1042 1.1 pk }
1043 1.57 sommerfe #undef pool_put
1044 1.59 thorpej #endif /* POOL_DIAGNOSTIC */
1045 1.1 pk
1046 1.56 sommerfe void
1047 1.56 sommerfe pool_put(struct pool *pp, void *v)
1048 1.56 sommerfe {
1049 1.56 sommerfe
1050 1.56 sommerfe simple_lock(&pp->pr_slock);
1051 1.56 sommerfe
1052 1.56 sommerfe pool_do_put(pp, v);
1053 1.56 sommerfe
1054 1.56 sommerfe simple_unlock(&pp->pr_slock);
1055 1.56 sommerfe }
1056 1.57 sommerfe
1057 1.59 thorpej #ifdef POOL_DIAGNOSTIC
1058 1.57 sommerfe #define pool_put(h, v) _pool_put((h), (v), __FILE__, __LINE__)
1059 1.56 sommerfe #endif
1060 1.74 thorpej
1061 1.74 thorpej /*
1062 1.74 thorpej * Add N items to the pool.
1063 1.74 thorpej */
1064 1.74 thorpej int
1065 1.74 thorpej pool_prime(struct pool *pp, int n)
1066 1.74 thorpej {
1067 1.83 scw struct pool_item_header *ph = NULL;
1068 1.74 thorpej caddr_t cp;
1069 1.75 simonb int newpages;
1070 1.74 thorpej
1071 1.74 thorpej simple_lock(&pp->pr_slock);
1072 1.74 thorpej
1073 1.74 thorpej newpages = roundup(n, pp->pr_itemsperpage) / pp->pr_itemsperpage;
1074 1.74 thorpej
1075 1.74 thorpej while (newpages-- > 0) {
1076 1.74 thorpej simple_unlock(&pp->pr_slock);
1077 1.74 thorpej cp = pool_allocator_alloc(pp, PR_NOWAIT);
1078 1.74 thorpej if (__predict_true(cp != NULL))
1079 1.74 thorpej ph = pool_alloc_item_header(pp, cp, PR_NOWAIT);
1080 1.74 thorpej
1081 1.74 thorpej if (__predict_false(cp == NULL || ph == NULL)) {
1082 1.74 thorpej if (cp != NULL)
1083 1.74 thorpej pool_allocator_free(pp, cp);
1084 1.91 yamt simple_lock(&pp->pr_slock);
1085 1.74 thorpej break;
1086 1.74 thorpej }
1087 1.74 thorpej
1088 1.91 yamt simple_lock(&pp->pr_slock);
1089 1.74 thorpej pool_prime_page(pp, cp, ph);
1090 1.74 thorpej pp->pr_npagealloc++;
1091 1.74 thorpej pp->pr_minpages++;
1092 1.74 thorpej }
1093 1.74 thorpej
1094 1.74 thorpej if (pp->pr_minpages >= pp->pr_maxpages)
1095 1.74 thorpej pp->pr_maxpages = pp->pr_minpages + 1; /* XXX */
1096 1.74 thorpej
1097 1.74 thorpej simple_unlock(&pp->pr_slock);
1098 1.74 thorpej return (0);
1099 1.74 thorpej }
1100 1.55 thorpej
1101 1.55 thorpej /*
1102 1.3 pk * Add a page worth of items to the pool.
1103 1.21 thorpej *
1104 1.21 thorpej * Note, we must be called with the pool descriptor LOCKED.
1105 1.3 pk */
1106 1.55 thorpej static void
1107 1.55 thorpej pool_prime_page(struct pool *pp, caddr_t storage, struct pool_item_header *ph)
1108 1.3 pk {
1109 1.3 pk struct pool_item *pi;
1110 1.3 pk caddr_t cp = storage;
1111 1.3 pk unsigned int align = pp->pr_align;
1112 1.3 pk unsigned int ioff = pp->pr_itemoffset;
1113 1.55 thorpej int n;
1114 1.89 yamt int s;
1115 1.36 pk
1116 1.91 yamt LOCK_ASSERT(simple_lock_held(&pp->pr_slock));
1117 1.91 yamt
1118 1.66 thorpej #ifdef DIAGNOSTIC
1119 1.66 thorpej if (((u_long)cp & (pp->pr_alloc->pa_pagesz - 1)) != 0)
1120 1.36 pk panic("pool_prime_page: %s: unaligned page", pp->pr_wchan);
1121 1.66 thorpej #endif
1122 1.3 pk
1123 1.3 pk /*
1124 1.3 pk * Insert page header.
1125 1.3 pk */
1126 1.88 chs LIST_INSERT_HEAD(&pp->pr_emptypages, ph, ph_pagelist);
1127 1.3 pk TAILQ_INIT(&ph->ph_itemlist);
1128 1.3 pk ph->ph_page = storage;
1129 1.3 pk ph->ph_nmissing = 0;
1130 1.89 yamt s = splclock();
1131 1.89 yamt ph->ph_time = mono_time;
1132 1.89 yamt splx(s);
1133 1.88 chs if ((pp->pr_roflags & PR_PHINPAGE) == 0)
1134 1.88 chs SPLAY_INSERT(phtree, &pp->pr_phtree, ph);
1135 1.3 pk
1136 1.6 thorpej pp->pr_nidle++;
1137 1.6 thorpej
1138 1.3 pk /*
1139 1.3 pk * Color this page.
1140 1.3 pk */
1141 1.3 pk cp = (caddr_t)(cp + pp->pr_curcolor);
1142 1.3 pk if ((pp->pr_curcolor += align) > pp->pr_maxcolor)
1143 1.3 pk pp->pr_curcolor = 0;
1144 1.3 pk
1145 1.3 pk /*
1146 1.3 pk * Adjust storage to apply aligment to `pr_itemoffset' in each item.
1147 1.3 pk */
1148 1.3 pk if (ioff != 0)
1149 1.3 pk cp = (caddr_t)(cp + (align - ioff));
1150 1.3 pk
1151 1.3 pk /*
1152 1.3 pk * Insert remaining chunks on the bucket list.
1153 1.3 pk */
1154 1.3 pk n = pp->pr_itemsperpage;
1155 1.20 thorpej pp->pr_nitems += n;
1156 1.3 pk
1157 1.3 pk while (n--) {
1158 1.3 pk pi = (struct pool_item *)cp;
1159 1.78 thorpej
1160 1.78 thorpej KASSERT(((((vaddr_t)pi) + ioff) & (align - 1)) == 0);
1161 1.3 pk
1162 1.3 pk /* Insert on page list */
1163 1.3 pk TAILQ_INSERT_TAIL(&ph->ph_itemlist, pi, pi_list);
1164 1.3 pk #ifdef DIAGNOSTIC
1165 1.3 pk pi->pi_magic = PI_MAGIC;
1166 1.3 pk #endif
1167 1.3 pk cp = (caddr_t)(cp + pp->pr_size);
1168 1.3 pk }
1169 1.3 pk
1170 1.3 pk /*
1171 1.3 pk * If the pool was depleted, point at the new page.
1172 1.3 pk */
1173 1.3 pk if (pp->pr_curpage == NULL)
1174 1.3 pk pp->pr_curpage = ph;
1175 1.3 pk
1176 1.3 pk if (++pp->pr_npages > pp->pr_hiwat)
1177 1.3 pk pp->pr_hiwat = pp->pr_npages;
1178 1.3 pk }
1179 1.3 pk
1180 1.20 thorpej /*
1181 1.52 thorpej * Used by pool_get() when nitems drops below the low water mark. This
1182 1.88 chs * is used to catch up pr_nitems with the low water mark.
1183 1.20 thorpej *
1184 1.21 thorpej * Note 1, we never wait for memory here, we let the caller decide what to do.
1185 1.20 thorpej *
1186 1.73 thorpej * Note 2, we must be called with the pool already locked, and we return
1187 1.20 thorpej * with it locked.
1188 1.20 thorpej */
1189 1.20 thorpej static int
1190 1.42 thorpej pool_catchup(struct pool *pp)
1191 1.20 thorpej {
1192 1.83 scw struct pool_item_header *ph = NULL;
1193 1.20 thorpej caddr_t cp;
1194 1.20 thorpej int error = 0;
1195 1.20 thorpej
1196 1.54 thorpej while (POOL_NEEDS_CATCHUP(pp)) {
1197 1.20 thorpej /*
1198 1.21 thorpej * Call the page back-end allocator for more memory.
1199 1.21 thorpej *
1200 1.21 thorpej * XXX: We never wait, so should we bother unlocking
1201 1.21 thorpej * the pool descriptor?
1202 1.20 thorpej */
1203 1.21 thorpej simple_unlock(&pp->pr_slock);
1204 1.66 thorpej cp = pool_allocator_alloc(pp, PR_NOWAIT);
1205 1.55 thorpej if (__predict_true(cp != NULL))
1206 1.55 thorpej ph = pool_alloc_item_header(pp, cp, PR_NOWAIT);
1207 1.55 thorpej if (__predict_false(cp == NULL || ph == NULL)) {
1208 1.55 thorpej if (cp != NULL)
1209 1.66 thorpej pool_allocator_free(pp, cp);
1210 1.20 thorpej error = ENOMEM;
1211 1.91 yamt simple_lock(&pp->pr_slock);
1212 1.20 thorpej break;
1213 1.20 thorpej }
1214 1.91 yamt simple_lock(&pp->pr_slock);
1215 1.55 thorpej pool_prime_page(pp, cp, ph);
1216 1.26 thorpej pp->pr_npagealloc++;
1217 1.20 thorpej }
1218 1.20 thorpej
1219 1.20 thorpej return (error);
1220 1.20 thorpej }
1221 1.20 thorpej
1222 1.88 chs static void
1223 1.88 chs pool_update_curpage(struct pool *pp)
1224 1.88 chs {
1225 1.88 chs
1226 1.88 chs pp->pr_curpage = LIST_FIRST(&pp->pr_partpages);
1227 1.88 chs if (pp->pr_curpage == NULL) {
1228 1.88 chs pp->pr_curpage = LIST_FIRST(&pp->pr_emptypages);
1229 1.88 chs }
1230 1.88 chs }
1231 1.88 chs
1232 1.3 pk void
1233 1.42 thorpej pool_setlowat(struct pool *pp, int n)
1234 1.3 pk {
1235 1.15 pk
1236 1.21 thorpej simple_lock(&pp->pr_slock);
1237 1.21 thorpej
1238 1.3 pk pp->pr_minitems = n;
1239 1.15 pk pp->pr_minpages = (n == 0)
1240 1.15 pk ? 0
1241 1.18 thorpej : roundup(n, pp->pr_itemsperpage) / pp->pr_itemsperpage;
1242 1.20 thorpej
1243 1.20 thorpej /* Make sure we're caught up with the newly-set low water mark. */
1244 1.75 simonb if (POOL_NEEDS_CATCHUP(pp) && pool_catchup(pp) != 0) {
1245 1.20 thorpej /*
1246 1.20 thorpej * XXX: Should we log a warning? Should we set up a timeout
1247 1.20 thorpej * to try again in a second or so? The latter could break
1248 1.20 thorpej * a caller's assumptions about interrupt protection, etc.
1249 1.20 thorpej */
1250 1.20 thorpej }
1251 1.21 thorpej
1252 1.21 thorpej simple_unlock(&pp->pr_slock);
1253 1.3 pk }
1254 1.3 pk
1255 1.3 pk void
1256 1.42 thorpej pool_sethiwat(struct pool *pp, int n)
1257 1.3 pk {
1258 1.15 pk
1259 1.21 thorpej simple_lock(&pp->pr_slock);
1260 1.21 thorpej
1261 1.15 pk pp->pr_maxpages = (n == 0)
1262 1.15 pk ? 0
1263 1.18 thorpej : roundup(n, pp->pr_itemsperpage) / pp->pr_itemsperpage;
1264 1.21 thorpej
1265 1.21 thorpej simple_unlock(&pp->pr_slock);
1266 1.3 pk }
1267 1.3 pk
1268 1.20 thorpej void
1269 1.42 thorpej pool_sethardlimit(struct pool *pp, int n, const char *warnmess, int ratecap)
1270 1.20 thorpej {
1271 1.20 thorpej
1272 1.21 thorpej simple_lock(&pp->pr_slock);
1273 1.20 thorpej
1274 1.20 thorpej pp->pr_hardlimit = n;
1275 1.20 thorpej pp->pr_hardlimit_warning = warnmess;
1276 1.31 thorpej pp->pr_hardlimit_ratecap.tv_sec = ratecap;
1277 1.31 thorpej pp->pr_hardlimit_warning_last.tv_sec = 0;
1278 1.31 thorpej pp->pr_hardlimit_warning_last.tv_usec = 0;
1279 1.20 thorpej
1280 1.20 thorpej /*
1281 1.21 thorpej * In-line version of pool_sethiwat(), because we don't want to
1282 1.21 thorpej * release the lock.
1283 1.20 thorpej */
1284 1.20 thorpej pp->pr_maxpages = (n == 0)
1285 1.20 thorpej ? 0
1286 1.20 thorpej : roundup(n, pp->pr_itemsperpage) / pp->pr_itemsperpage;
1287 1.21 thorpej
1288 1.21 thorpej simple_unlock(&pp->pr_slock);
1289 1.20 thorpej }
1290 1.3 pk
1291 1.3 pk /*
1292 1.3 pk * Release all complete pages that have not been used recently.
1293 1.3 pk */
1294 1.66 thorpej int
1295 1.59 thorpej #ifdef POOL_DIAGNOSTIC
1296 1.42 thorpej _pool_reclaim(struct pool *pp, const char *file, long line)
1297 1.56 sommerfe #else
1298 1.56 sommerfe pool_reclaim(struct pool *pp)
1299 1.56 sommerfe #endif
1300 1.3 pk {
1301 1.3 pk struct pool_item_header *ph, *phnext;
1302 1.43 thorpej struct pool_cache *pc;
1303 1.21 thorpej struct timeval curtime;
1304 1.61 chs struct pool_pagelist pq;
1305 1.88 chs struct timeval diff;
1306 1.21 thorpej int s;
1307 1.3 pk
1308 1.68 thorpej if (pp->pr_drain_hook != NULL) {
1309 1.68 thorpej /*
1310 1.68 thorpej * The drain hook must be called with the pool unlocked.
1311 1.68 thorpej */
1312 1.68 thorpej (*pp->pr_drain_hook)(pp->pr_drain_hook_arg, PR_NOWAIT);
1313 1.68 thorpej }
1314 1.68 thorpej
1315 1.21 thorpej if (simple_lock_try(&pp->pr_slock) == 0)
1316 1.66 thorpej return (0);
1317 1.25 thorpej pr_enter(pp, file, line);
1318 1.68 thorpej
1319 1.88 chs LIST_INIT(&pq);
1320 1.3 pk
1321 1.43 thorpej /*
1322 1.43 thorpej * Reclaim items from the pool's caches.
1323 1.43 thorpej */
1324 1.61 chs TAILQ_FOREACH(pc, &pp->pr_cachelist, pc_poollist)
1325 1.43 thorpej pool_cache_reclaim(pc);
1326 1.43 thorpej
1327 1.21 thorpej s = splclock();
1328 1.21 thorpej curtime = mono_time;
1329 1.21 thorpej splx(s);
1330 1.21 thorpej
1331 1.88 chs for (ph = LIST_FIRST(&pp->pr_emptypages); ph != NULL; ph = phnext) {
1332 1.88 chs phnext = LIST_NEXT(ph, ph_pagelist);
1333 1.3 pk
1334 1.3 pk /* Check our minimum page claim */
1335 1.3 pk if (pp->pr_npages <= pp->pr_minpages)
1336 1.3 pk break;
1337 1.3 pk
1338 1.88 chs KASSERT(ph->ph_nmissing == 0);
1339 1.88 chs timersub(&curtime, &ph->ph_time, &diff);
1340 1.88 chs if (diff.tv_sec < pool_inactive_time)
1341 1.88 chs continue;
1342 1.21 thorpej
1343 1.88 chs /*
1344 1.88 chs * If freeing this page would put us below
1345 1.88 chs * the low water mark, stop now.
1346 1.88 chs */
1347 1.88 chs if ((pp->pr_nitems - pp->pr_itemsperpage) <
1348 1.88 chs pp->pr_minitems)
1349 1.88 chs break;
1350 1.21 thorpej
1351 1.88 chs pr_rmpage(pp, ph, &pq);
1352 1.3 pk }
1353 1.3 pk
1354 1.25 thorpej pr_leave(pp);
1355 1.21 thorpej simple_unlock(&pp->pr_slock);
1356 1.88 chs if (LIST_EMPTY(&pq))
1357 1.66 thorpej return (0);
1358 1.66 thorpej
1359 1.88 chs while ((ph = LIST_FIRST(&pq)) != NULL) {
1360 1.88 chs LIST_REMOVE(ph, ph_pagelist);
1361 1.66 thorpej pool_allocator_free(pp, ph->ph_page);
1362 1.61 chs if (pp->pr_roflags & PR_PHINPAGE) {
1363 1.61 chs continue;
1364 1.61 chs }
1365 1.85 pk s = splvm();
1366 1.61 chs pool_put(&phpool, ph);
1367 1.61 chs splx(s);
1368 1.61 chs }
1369 1.66 thorpej
1370 1.66 thorpej return (1);
1371 1.3 pk }
1372 1.3 pk
1373 1.3 pk /*
1374 1.3 pk * Drain pools, one at a time.
1375 1.21 thorpej *
1376 1.21 thorpej * Note, we must never be called from an interrupt context.
1377 1.3 pk */
1378 1.3 pk void
1379 1.42 thorpej pool_drain(void *arg)
1380 1.3 pk {
1381 1.3 pk struct pool *pp;
1382 1.23 thorpej int s;
1383 1.3 pk
1384 1.61 chs pp = NULL;
1385 1.49 thorpej s = splvm();
1386 1.23 thorpej simple_lock(&pool_head_slock);
1387 1.61 chs if (drainpp == NULL) {
1388 1.61 chs drainpp = TAILQ_FIRST(&pool_head);
1389 1.61 chs }
1390 1.61 chs if (drainpp) {
1391 1.61 chs pp = drainpp;
1392 1.61 chs drainpp = TAILQ_NEXT(pp, pr_poollist);
1393 1.61 chs }
1394 1.61 chs simple_unlock(&pool_head_slock);
1395 1.63 chs pool_reclaim(pp);
1396 1.61 chs splx(s);
1397 1.3 pk }
1398 1.3 pk
1399 1.3 pk /*
1400 1.3 pk * Diagnostic helpers.
1401 1.3 pk */
1402 1.3 pk void
1403 1.42 thorpej pool_print(struct pool *pp, const char *modif)
1404 1.21 thorpej {
1405 1.21 thorpej int s;
1406 1.21 thorpej
1407 1.49 thorpej s = splvm();
1408 1.25 thorpej if (simple_lock_try(&pp->pr_slock) == 0) {
1409 1.25 thorpej printf("pool %s is locked; try again later\n",
1410 1.25 thorpej pp->pr_wchan);
1411 1.25 thorpej splx(s);
1412 1.25 thorpej return;
1413 1.25 thorpej }
1414 1.25 thorpej pool_print1(pp, modif, printf);
1415 1.21 thorpej simple_unlock(&pp->pr_slock);
1416 1.21 thorpej splx(s);
1417 1.21 thorpej }
1418 1.21 thorpej
1419 1.25 thorpej void
1420 1.42 thorpej pool_printit(struct pool *pp, const char *modif, void (*pr)(const char *, ...))
1421 1.25 thorpej {
1422 1.25 thorpej int didlock = 0;
1423 1.25 thorpej
1424 1.25 thorpej if (pp == NULL) {
1425 1.25 thorpej (*pr)("Must specify a pool to print.\n");
1426 1.25 thorpej return;
1427 1.25 thorpej }
1428 1.25 thorpej
1429 1.25 thorpej /*
1430 1.25 thorpej * Called from DDB; interrupts should be blocked, and all
1431 1.25 thorpej * other processors should be paused. We can skip locking
1432 1.25 thorpej * the pool in this case.
1433 1.25 thorpej *
1434 1.25 thorpej * We do a simple_lock_try() just to print the lock
1435 1.25 thorpej * status, however.
1436 1.25 thorpej */
1437 1.25 thorpej
1438 1.25 thorpej if (simple_lock_try(&pp->pr_slock) == 0)
1439 1.25 thorpej (*pr)("WARNING: pool %s is locked\n", pp->pr_wchan);
1440 1.25 thorpej else
1441 1.25 thorpej didlock = 1;
1442 1.25 thorpej
1443 1.25 thorpej pool_print1(pp, modif, pr);
1444 1.25 thorpej
1445 1.25 thorpej if (didlock)
1446 1.25 thorpej simple_unlock(&pp->pr_slock);
1447 1.25 thorpej }
1448 1.25 thorpej
1449 1.21 thorpej static void
1450 1.88 chs pool_print_pagelist(struct pool_pagelist *pl, void (*pr)(const char *, ...))
1451 1.88 chs {
1452 1.88 chs struct pool_item_header *ph;
1453 1.88 chs #ifdef DIAGNOSTIC
1454 1.88 chs struct pool_item *pi;
1455 1.88 chs #endif
1456 1.88 chs
1457 1.88 chs LIST_FOREACH(ph, pl, ph_pagelist) {
1458 1.88 chs (*pr)("\t\tpage %p, nmissing %d, time %lu,%lu\n",
1459 1.88 chs ph->ph_page, ph->ph_nmissing,
1460 1.88 chs (u_long)ph->ph_time.tv_sec,
1461 1.88 chs (u_long)ph->ph_time.tv_usec);
1462 1.88 chs #ifdef DIAGNOSTIC
1463 1.88 chs TAILQ_FOREACH(pi, &ph->ph_itemlist, pi_list) {
1464 1.88 chs if (pi->pi_magic != PI_MAGIC) {
1465 1.88 chs (*pr)("\t\t\titem %p, magic 0x%x\n",
1466 1.88 chs pi, pi->pi_magic);
1467 1.88 chs }
1468 1.88 chs }
1469 1.88 chs #endif
1470 1.88 chs }
1471 1.88 chs }
1472 1.88 chs
1473 1.88 chs static void
1474 1.42 thorpej pool_print1(struct pool *pp, const char *modif, void (*pr)(const char *, ...))
1475 1.3 pk {
1476 1.25 thorpej struct pool_item_header *ph;
1477 1.44 thorpej struct pool_cache *pc;
1478 1.44 thorpej struct pool_cache_group *pcg;
1479 1.44 thorpej int i, print_log = 0, print_pagelist = 0, print_cache = 0;
1480 1.25 thorpej char c;
1481 1.25 thorpej
1482 1.25 thorpej while ((c = *modif++) != '\0') {
1483 1.25 thorpej if (c == 'l')
1484 1.25 thorpej print_log = 1;
1485 1.25 thorpej if (c == 'p')
1486 1.25 thorpej print_pagelist = 1;
1487 1.44 thorpej if (c == 'c')
1488 1.44 thorpej print_cache = 1;
1489 1.25 thorpej }
1490 1.25 thorpej
1491 1.25 thorpej (*pr)("POOL %s: size %u, align %u, ioff %u, roflags 0x%08x\n",
1492 1.25 thorpej pp->pr_wchan, pp->pr_size, pp->pr_align, pp->pr_itemoffset,
1493 1.25 thorpej pp->pr_roflags);
1494 1.66 thorpej (*pr)("\talloc %p\n", pp->pr_alloc);
1495 1.25 thorpej (*pr)("\tminitems %u, minpages %u, maxpages %u, npages %u\n",
1496 1.25 thorpej pp->pr_minitems, pp->pr_minpages, pp->pr_maxpages, pp->pr_npages);
1497 1.25 thorpej (*pr)("\titemsperpage %u, nitems %u, nout %u, hardlimit %u\n",
1498 1.25 thorpej pp->pr_itemsperpage, pp->pr_nitems, pp->pr_nout, pp->pr_hardlimit);
1499 1.25 thorpej
1500 1.25 thorpej (*pr)("\n\tnget %lu, nfail %lu, nput %lu\n",
1501 1.25 thorpej pp->pr_nget, pp->pr_nfail, pp->pr_nput);
1502 1.25 thorpej (*pr)("\tnpagealloc %lu, npagefree %lu, hiwat %u, nidle %lu\n",
1503 1.25 thorpej pp->pr_npagealloc, pp->pr_npagefree, pp->pr_hiwat, pp->pr_nidle);
1504 1.25 thorpej
1505 1.25 thorpej if (print_pagelist == 0)
1506 1.25 thorpej goto skip_pagelist;
1507 1.25 thorpej
1508 1.88 chs if ((ph = LIST_FIRST(&pp->pr_emptypages)) != NULL)
1509 1.88 chs (*pr)("\n\tempty page list:\n");
1510 1.88 chs pool_print_pagelist(&pp->pr_emptypages, pr);
1511 1.88 chs if ((ph = LIST_FIRST(&pp->pr_fullpages)) != NULL)
1512 1.88 chs (*pr)("\n\tfull page list:\n");
1513 1.88 chs pool_print_pagelist(&pp->pr_fullpages, pr);
1514 1.88 chs if ((ph = LIST_FIRST(&pp->pr_partpages)) != NULL)
1515 1.88 chs (*pr)("\n\tpartial-page list:\n");
1516 1.88 chs pool_print_pagelist(&pp->pr_partpages, pr);
1517 1.88 chs
1518 1.25 thorpej if (pp->pr_curpage == NULL)
1519 1.25 thorpej (*pr)("\tno current page\n");
1520 1.25 thorpej else
1521 1.25 thorpej (*pr)("\tcurpage %p\n", pp->pr_curpage->ph_page);
1522 1.25 thorpej
1523 1.25 thorpej skip_pagelist:
1524 1.25 thorpej if (print_log == 0)
1525 1.25 thorpej goto skip_log;
1526 1.25 thorpej
1527 1.25 thorpej (*pr)("\n");
1528 1.25 thorpej if ((pp->pr_roflags & PR_LOGGING) == 0)
1529 1.25 thorpej (*pr)("\tno log\n");
1530 1.25 thorpej else
1531 1.25 thorpej pr_printlog(pp, NULL, pr);
1532 1.3 pk
1533 1.25 thorpej skip_log:
1534 1.44 thorpej if (print_cache == 0)
1535 1.44 thorpej goto skip_cache;
1536 1.44 thorpej
1537 1.61 chs TAILQ_FOREACH(pc, &pp->pr_cachelist, pc_poollist) {
1538 1.44 thorpej (*pr)("\tcache %p: allocfrom %p freeto %p\n", pc,
1539 1.44 thorpej pc->pc_allocfrom, pc->pc_freeto);
1540 1.48 thorpej (*pr)("\t hits %lu misses %lu ngroups %lu nitems %lu\n",
1541 1.48 thorpej pc->pc_hits, pc->pc_misses, pc->pc_ngroups, pc->pc_nitems);
1542 1.61 chs TAILQ_FOREACH(pcg, &pc->pc_grouplist, pcg_list) {
1543 1.44 thorpej (*pr)("\t\tgroup %p: avail %d\n", pcg, pcg->pcg_avail);
1544 1.87 thorpej for (i = 0; i < PCG_NOBJECTS; i++) {
1545 1.87 thorpej if (pcg->pcg_objects[i].pcgo_pa !=
1546 1.87 thorpej POOL_PADDR_INVALID) {
1547 1.87 thorpej (*pr)("\t\t\t%p, 0x%llx\n",
1548 1.87 thorpej pcg->pcg_objects[i].pcgo_va,
1549 1.87 thorpej (unsigned long long)
1550 1.87 thorpej pcg->pcg_objects[i].pcgo_pa);
1551 1.87 thorpej } else {
1552 1.87 thorpej (*pr)("\t\t\t%p\n",
1553 1.87 thorpej pcg->pcg_objects[i].pcgo_va);
1554 1.87 thorpej }
1555 1.87 thorpej }
1556 1.44 thorpej }
1557 1.44 thorpej }
1558 1.44 thorpej
1559 1.44 thorpej skip_cache:
1560 1.88 chs pr_enter_check(pp, pr);
1561 1.88 chs }
1562 1.88 chs
1563 1.88 chs static int
1564 1.88 chs pool_chk_page(struct pool *pp, const char *label, struct pool_item_header *ph)
1565 1.88 chs {
1566 1.88 chs struct pool_item *pi;
1567 1.88 chs caddr_t page;
1568 1.88 chs int n;
1569 1.88 chs
1570 1.88 chs page = (caddr_t)((u_long)ph & pp->pr_alloc->pa_pagemask);
1571 1.88 chs if (page != ph->ph_page &&
1572 1.88 chs (pp->pr_roflags & PR_PHINPAGE) != 0) {
1573 1.88 chs if (label != NULL)
1574 1.88 chs printf("%s: ", label);
1575 1.88 chs printf("pool(%p:%s): page inconsistency: page %p;"
1576 1.88 chs " at page head addr %p (p %p)\n", pp,
1577 1.88 chs pp->pr_wchan, ph->ph_page,
1578 1.88 chs ph, page);
1579 1.88 chs return 1;
1580 1.88 chs }
1581 1.3 pk
1582 1.88 chs for (pi = TAILQ_FIRST(&ph->ph_itemlist), n = 0;
1583 1.88 chs pi != NULL;
1584 1.88 chs pi = TAILQ_NEXT(pi,pi_list), n++) {
1585 1.88 chs
1586 1.88 chs #ifdef DIAGNOSTIC
1587 1.88 chs if (pi->pi_magic != PI_MAGIC) {
1588 1.88 chs if (label != NULL)
1589 1.88 chs printf("%s: ", label);
1590 1.88 chs printf("pool(%s): free list modified: magic=%x;"
1591 1.88 chs " page %p; item ordinal %d;"
1592 1.88 chs " addr %p (p %p)\n",
1593 1.88 chs pp->pr_wchan, pi->pi_magic, ph->ph_page,
1594 1.88 chs n, pi, page);
1595 1.88 chs panic("pool");
1596 1.88 chs }
1597 1.88 chs #endif
1598 1.88 chs page =
1599 1.88 chs (caddr_t)((u_long)pi & pp->pr_alloc->pa_pagemask);
1600 1.88 chs if (page == ph->ph_page)
1601 1.88 chs continue;
1602 1.88 chs
1603 1.88 chs if (label != NULL)
1604 1.88 chs printf("%s: ", label);
1605 1.88 chs printf("pool(%p:%s): page inconsistency: page %p;"
1606 1.88 chs " item ordinal %d; addr %p (p %p)\n", pp,
1607 1.88 chs pp->pr_wchan, ph->ph_page,
1608 1.88 chs n, pi, page);
1609 1.88 chs return 1;
1610 1.88 chs }
1611 1.88 chs return 0;
1612 1.3 pk }
1613 1.3 pk
1614 1.88 chs
1615 1.3 pk int
1616 1.42 thorpej pool_chk(struct pool *pp, const char *label)
1617 1.3 pk {
1618 1.3 pk struct pool_item_header *ph;
1619 1.3 pk int r = 0;
1620 1.3 pk
1621 1.21 thorpej simple_lock(&pp->pr_slock);
1622 1.88 chs LIST_FOREACH(ph, &pp->pr_emptypages, ph_pagelist) {
1623 1.88 chs r = pool_chk_page(pp, label, ph);
1624 1.88 chs if (r) {
1625 1.88 chs goto out;
1626 1.88 chs }
1627 1.88 chs }
1628 1.88 chs LIST_FOREACH(ph, &pp->pr_fullpages, ph_pagelist) {
1629 1.88 chs r = pool_chk_page(pp, label, ph);
1630 1.88 chs if (r) {
1631 1.3 pk goto out;
1632 1.3 pk }
1633 1.88 chs }
1634 1.88 chs LIST_FOREACH(ph, &pp->pr_partpages, ph_pagelist) {
1635 1.88 chs r = pool_chk_page(pp, label, ph);
1636 1.88 chs if (r) {
1637 1.3 pk goto out;
1638 1.3 pk }
1639 1.3 pk }
1640 1.88 chs
1641 1.3 pk out:
1642 1.21 thorpej simple_unlock(&pp->pr_slock);
1643 1.3 pk return (r);
1644 1.43 thorpej }
1645 1.43 thorpej
1646 1.43 thorpej /*
1647 1.43 thorpej * pool_cache_init:
1648 1.43 thorpej *
1649 1.43 thorpej * Initialize a pool cache.
1650 1.43 thorpej *
1651 1.43 thorpej * NOTE: If the pool must be protected from interrupts, we expect
1652 1.43 thorpej * to be called at the appropriate interrupt priority level.
1653 1.43 thorpej */
1654 1.43 thorpej void
1655 1.43 thorpej pool_cache_init(struct pool_cache *pc, struct pool *pp,
1656 1.43 thorpej int (*ctor)(void *, void *, int),
1657 1.43 thorpej void (*dtor)(void *, void *),
1658 1.43 thorpej void *arg)
1659 1.43 thorpej {
1660 1.43 thorpej
1661 1.43 thorpej TAILQ_INIT(&pc->pc_grouplist);
1662 1.43 thorpej simple_lock_init(&pc->pc_slock);
1663 1.43 thorpej
1664 1.43 thorpej pc->pc_allocfrom = NULL;
1665 1.43 thorpej pc->pc_freeto = NULL;
1666 1.43 thorpej pc->pc_pool = pp;
1667 1.43 thorpej
1668 1.43 thorpej pc->pc_ctor = ctor;
1669 1.43 thorpej pc->pc_dtor = dtor;
1670 1.43 thorpej pc->pc_arg = arg;
1671 1.43 thorpej
1672 1.48 thorpej pc->pc_hits = 0;
1673 1.48 thorpej pc->pc_misses = 0;
1674 1.48 thorpej
1675 1.48 thorpej pc->pc_ngroups = 0;
1676 1.48 thorpej
1677 1.48 thorpej pc->pc_nitems = 0;
1678 1.48 thorpej
1679 1.43 thorpej simple_lock(&pp->pr_slock);
1680 1.43 thorpej TAILQ_INSERT_TAIL(&pp->pr_cachelist, pc, pc_poollist);
1681 1.43 thorpej simple_unlock(&pp->pr_slock);
1682 1.43 thorpej }
1683 1.43 thorpej
1684 1.43 thorpej /*
1685 1.43 thorpej * pool_cache_destroy:
1686 1.43 thorpej *
1687 1.43 thorpej * Destroy a pool cache.
1688 1.43 thorpej */
1689 1.43 thorpej void
1690 1.43 thorpej pool_cache_destroy(struct pool_cache *pc)
1691 1.43 thorpej {
1692 1.43 thorpej struct pool *pp = pc->pc_pool;
1693 1.43 thorpej
1694 1.43 thorpej /* First, invalidate the entire cache. */
1695 1.43 thorpej pool_cache_invalidate(pc);
1696 1.43 thorpej
1697 1.43 thorpej /* ...and remove it from the pool's cache list. */
1698 1.43 thorpej simple_lock(&pp->pr_slock);
1699 1.43 thorpej TAILQ_REMOVE(&pp->pr_cachelist, pc, pc_poollist);
1700 1.43 thorpej simple_unlock(&pp->pr_slock);
1701 1.43 thorpej }
1702 1.43 thorpej
1703 1.43 thorpej static __inline void *
1704 1.87 thorpej pcg_get(struct pool_cache_group *pcg, paddr_t *pap)
1705 1.43 thorpej {
1706 1.43 thorpej void *object;
1707 1.43 thorpej u_int idx;
1708 1.43 thorpej
1709 1.43 thorpej KASSERT(pcg->pcg_avail <= PCG_NOBJECTS);
1710 1.45 thorpej KASSERT(pcg->pcg_avail != 0);
1711 1.43 thorpej idx = --pcg->pcg_avail;
1712 1.43 thorpej
1713 1.87 thorpej KASSERT(pcg->pcg_objects[idx].pcgo_va != NULL);
1714 1.87 thorpej object = pcg->pcg_objects[idx].pcgo_va;
1715 1.87 thorpej if (pap != NULL)
1716 1.87 thorpej *pap = pcg->pcg_objects[idx].pcgo_pa;
1717 1.87 thorpej pcg->pcg_objects[idx].pcgo_va = NULL;
1718 1.43 thorpej
1719 1.43 thorpej return (object);
1720 1.43 thorpej }
1721 1.43 thorpej
1722 1.43 thorpej static __inline void
1723 1.87 thorpej pcg_put(struct pool_cache_group *pcg, void *object, paddr_t pa)
1724 1.43 thorpej {
1725 1.43 thorpej u_int idx;
1726 1.43 thorpej
1727 1.43 thorpej KASSERT(pcg->pcg_avail < PCG_NOBJECTS);
1728 1.43 thorpej idx = pcg->pcg_avail++;
1729 1.43 thorpej
1730 1.87 thorpej KASSERT(pcg->pcg_objects[idx].pcgo_va == NULL);
1731 1.87 thorpej pcg->pcg_objects[idx].pcgo_va = object;
1732 1.87 thorpej pcg->pcg_objects[idx].pcgo_pa = pa;
1733 1.43 thorpej }
1734 1.43 thorpej
1735 1.43 thorpej /*
1736 1.87 thorpej * pool_cache_get{,_paddr}:
1737 1.43 thorpej *
1738 1.87 thorpej * Get an object from a pool cache (optionally returning
1739 1.87 thorpej * the physical address of the object).
1740 1.43 thorpej */
1741 1.43 thorpej void *
1742 1.87 thorpej pool_cache_get_paddr(struct pool_cache *pc, int flags, paddr_t *pap)
1743 1.43 thorpej {
1744 1.43 thorpej struct pool_cache_group *pcg;
1745 1.43 thorpej void *object;
1746 1.58 thorpej
1747 1.58 thorpej #ifdef LOCKDEBUG
1748 1.58 thorpej if (flags & PR_WAITOK)
1749 1.58 thorpej simple_lock_only_held(NULL, "pool_cache_get(PR_WAITOK)");
1750 1.58 thorpej #endif
1751 1.43 thorpej
1752 1.43 thorpej simple_lock(&pc->pc_slock);
1753 1.43 thorpej
1754 1.43 thorpej if ((pcg = pc->pc_allocfrom) == NULL) {
1755 1.61 chs TAILQ_FOREACH(pcg, &pc->pc_grouplist, pcg_list) {
1756 1.43 thorpej if (pcg->pcg_avail != 0) {
1757 1.43 thorpej pc->pc_allocfrom = pcg;
1758 1.43 thorpej goto have_group;
1759 1.43 thorpej }
1760 1.43 thorpej }
1761 1.43 thorpej
1762 1.43 thorpej /*
1763 1.43 thorpej * No groups with any available objects. Allocate
1764 1.43 thorpej * a new object, construct it, and return it to
1765 1.43 thorpej * the caller. We will allocate a group, if necessary,
1766 1.43 thorpej * when the object is freed back to the cache.
1767 1.43 thorpej */
1768 1.48 thorpej pc->pc_misses++;
1769 1.43 thorpej simple_unlock(&pc->pc_slock);
1770 1.43 thorpej object = pool_get(pc->pc_pool, flags);
1771 1.43 thorpej if (object != NULL && pc->pc_ctor != NULL) {
1772 1.43 thorpej if ((*pc->pc_ctor)(pc->pc_arg, object, flags) != 0) {
1773 1.43 thorpej pool_put(pc->pc_pool, object);
1774 1.43 thorpej return (NULL);
1775 1.43 thorpej }
1776 1.43 thorpej }
1777 1.87 thorpej if (object != NULL && pap != NULL) {
1778 1.87 thorpej #ifdef POOL_VTOPHYS
1779 1.87 thorpej *pap = POOL_VTOPHYS(object);
1780 1.87 thorpej #else
1781 1.87 thorpej *pap = POOL_PADDR_INVALID;
1782 1.87 thorpej #endif
1783 1.87 thorpej }
1784 1.43 thorpej return (object);
1785 1.43 thorpej }
1786 1.43 thorpej
1787 1.43 thorpej have_group:
1788 1.48 thorpej pc->pc_hits++;
1789 1.48 thorpej pc->pc_nitems--;
1790 1.87 thorpej object = pcg_get(pcg, pap);
1791 1.43 thorpej
1792 1.43 thorpej if (pcg->pcg_avail == 0)
1793 1.43 thorpej pc->pc_allocfrom = NULL;
1794 1.45 thorpej
1795 1.43 thorpej simple_unlock(&pc->pc_slock);
1796 1.43 thorpej
1797 1.43 thorpej return (object);
1798 1.43 thorpej }
1799 1.43 thorpej
1800 1.43 thorpej /*
1801 1.87 thorpej * pool_cache_put{,_paddr}:
1802 1.43 thorpej *
1803 1.87 thorpej * Put an object back to the pool cache (optionally caching the
1804 1.87 thorpej * physical address of the object).
1805 1.43 thorpej */
1806 1.43 thorpej void
1807 1.87 thorpej pool_cache_put_paddr(struct pool_cache *pc, void *object, paddr_t pa)
1808 1.43 thorpej {
1809 1.43 thorpej struct pool_cache_group *pcg;
1810 1.60 thorpej int s;
1811 1.43 thorpej
1812 1.43 thorpej simple_lock(&pc->pc_slock);
1813 1.43 thorpej
1814 1.43 thorpej if ((pcg = pc->pc_freeto) == NULL) {
1815 1.61 chs TAILQ_FOREACH(pcg, &pc->pc_grouplist, pcg_list) {
1816 1.43 thorpej if (pcg->pcg_avail != PCG_NOBJECTS) {
1817 1.43 thorpej pc->pc_freeto = pcg;
1818 1.43 thorpej goto have_group;
1819 1.43 thorpej }
1820 1.43 thorpej }
1821 1.43 thorpej
1822 1.43 thorpej /*
1823 1.43 thorpej * No empty groups to free the object to. Attempt to
1824 1.47 thorpej * allocate one.
1825 1.43 thorpej */
1826 1.47 thorpej simple_unlock(&pc->pc_slock);
1827 1.60 thorpej s = splvm();
1828 1.43 thorpej pcg = pool_get(&pcgpool, PR_NOWAIT);
1829 1.60 thorpej splx(s);
1830 1.43 thorpej if (pcg != NULL) {
1831 1.43 thorpej memset(pcg, 0, sizeof(*pcg));
1832 1.47 thorpej simple_lock(&pc->pc_slock);
1833 1.48 thorpej pc->pc_ngroups++;
1834 1.43 thorpej TAILQ_INSERT_TAIL(&pc->pc_grouplist, pcg, pcg_list);
1835 1.47 thorpej if (pc->pc_freeto == NULL)
1836 1.47 thorpej pc->pc_freeto = pcg;
1837 1.43 thorpej goto have_group;
1838 1.43 thorpej }
1839 1.43 thorpej
1840 1.43 thorpej /*
1841 1.43 thorpej * Unable to allocate a cache group; destruct the object
1842 1.43 thorpej * and free it back to the pool.
1843 1.43 thorpej */
1844 1.51 thorpej pool_cache_destruct_object(pc, object);
1845 1.43 thorpej return;
1846 1.43 thorpej }
1847 1.43 thorpej
1848 1.43 thorpej have_group:
1849 1.48 thorpej pc->pc_nitems++;
1850 1.87 thorpej pcg_put(pcg, object, pa);
1851 1.43 thorpej
1852 1.43 thorpej if (pcg->pcg_avail == PCG_NOBJECTS)
1853 1.43 thorpej pc->pc_freeto = NULL;
1854 1.43 thorpej
1855 1.43 thorpej simple_unlock(&pc->pc_slock);
1856 1.51 thorpej }
1857 1.51 thorpej
1858 1.51 thorpej /*
1859 1.51 thorpej * pool_cache_destruct_object:
1860 1.51 thorpej *
1861 1.51 thorpej * Force destruction of an object and its release back into
1862 1.51 thorpej * the pool.
1863 1.51 thorpej */
1864 1.51 thorpej void
1865 1.51 thorpej pool_cache_destruct_object(struct pool_cache *pc, void *object)
1866 1.51 thorpej {
1867 1.51 thorpej
1868 1.51 thorpej if (pc->pc_dtor != NULL)
1869 1.51 thorpej (*pc->pc_dtor)(pc->pc_arg, object);
1870 1.51 thorpej pool_put(pc->pc_pool, object);
1871 1.43 thorpej }
1872 1.43 thorpej
1873 1.43 thorpej /*
1874 1.43 thorpej * pool_cache_do_invalidate:
1875 1.43 thorpej *
1876 1.43 thorpej * This internal function implements pool_cache_invalidate() and
1877 1.43 thorpej * pool_cache_reclaim().
1878 1.43 thorpej */
1879 1.43 thorpej static void
1880 1.43 thorpej pool_cache_do_invalidate(struct pool_cache *pc, int free_groups,
1881 1.56 sommerfe void (*putit)(struct pool *, void *))
1882 1.43 thorpej {
1883 1.43 thorpej struct pool_cache_group *pcg, *npcg;
1884 1.43 thorpej void *object;
1885 1.60 thorpej int s;
1886 1.43 thorpej
1887 1.43 thorpej for (pcg = TAILQ_FIRST(&pc->pc_grouplist); pcg != NULL;
1888 1.43 thorpej pcg = npcg) {
1889 1.43 thorpej npcg = TAILQ_NEXT(pcg, pcg_list);
1890 1.43 thorpej while (pcg->pcg_avail != 0) {
1891 1.48 thorpej pc->pc_nitems--;
1892 1.87 thorpej object = pcg_get(pcg, NULL);
1893 1.45 thorpej if (pcg->pcg_avail == 0 && pc->pc_allocfrom == pcg)
1894 1.45 thorpej pc->pc_allocfrom = NULL;
1895 1.43 thorpej if (pc->pc_dtor != NULL)
1896 1.43 thorpej (*pc->pc_dtor)(pc->pc_arg, object);
1897 1.56 sommerfe (*putit)(pc->pc_pool, object);
1898 1.43 thorpej }
1899 1.43 thorpej if (free_groups) {
1900 1.48 thorpej pc->pc_ngroups--;
1901 1.43 thorpej TAILQ_REMOVE(&pc->pc_grouplist, pcg, pcg_list);
1902 1.46 thorpej if (pc->pc_freeto == pcg)
1903 1.46 thorpej pc->pc_freeto = NULL;
1904 1.60 thorpej s = splvm();
1905 1.43 thorpej pool_put(&pcgpool, pcg);
1906 1.60 thorpej splx(s);
1907 1.43 thorpej }
1908 1.43 thorpej }
1909 1.43 thorpej }
1910 1.43 thorpej
1911 1.43 thorpej /*
1912 1.43 thorpej * pool_cache_invalidate:
1913 1.43 thorpej *
1914 1.43 thorpej * Invalidate a pool cache (destruct and release all of the
1915 1.43 thorpej * cached objects).
1916 1.43 thorpej */
1917 1.43 thorpej void
1918 1.43 thorpej pool_cache_invalidate(struct pool_cache *pc)
1919 1.43 thorpej {
1920 1.43 thorpej
1921 1.43 thorpej simple_lock(&pc->pc_slock);
1922 1.56 sommerfe pool_cache_do_invalidate(pc, 0, pool_put);
1923 1.43 thorpej simple_unlock(&pc->pc_slock);
1924 1.43 thorpej }
1925 1.43 thorpej
1926 1.43 thorpej /*
1927 1.43 thorpej * pool_cache_reclaim:
1928 1.43 thorpej *
1929 1.43 thorpej * Reclaim a pool cache for pool_reclaim().
1930 1.43 thorpej */
1931 1.43 thorpej static void
1932 1.43 thorpej pool_cache_reclaim(struct pool_cache *pc)
1933 1.43 thorpej {
1934 1.43 thorpej
1935 1.47 thorpej simple_lock(&pc->pc_slock);
1936 1.43 thorpej pool_cache_do_invalidate(pc, 1, pool_do_put);
1937 1.43 thorpej simple_unlock(&pc->pc_slock);
1938 1.3 pk }
1939 1.66 thorpej
1940 1.66 thorpej /*
1941 1.66 thorpej * Pool backend allocators.
1942 1.66 thorpej *
1943 1.66 thorpej * Each pool has a backend allocator that handles allocation, deallocation,
1944 1.66 thorpej * and any additional draining that might be needed.
1945 1.66 thorpej *
1946 1.66 thorpej * We provide two standard allocators:
1947 1.66 thorpej *
1948 1.66 thorpej * pool_allocator_kmem - the default when no allocator is specified
1949 1.66 thorpej *
1950 1.66 thorpej * pool_allocator_nointr - used for pools that will not be accessed
1951 1.66 thorpej * in interrupt context.
1952 1.66 thorpej */
1953 1.66 thorpej void *pool_page_alloc(struct pool *, int);
1954 1.66 thorpej void pool_page_free(struct pool *, void *);
1955 1.66 thorpej
1956 1.66 thorpej struct pool_allocator pool_allocator_kmem = {
1957 1.66 thorpej pool_page_alloc, pool_page_free, 0,
1958 1.66 thorpej };
1959 1.66 thorpej
1960 1.66 thorpej void *pool_page_alloc_nointr(struct pool *, int);
1961 1.66 thorpej void pool_page_free_nointr(struct pool *, void *);
1962 1.66 thorpej
1963 1.66 thorpej struct pool_allocator pool_allocator_nointr = {
1964 1.66 thorpej pool_page_alloc_nointr, pool_page_free_nointr, 0,
1965 1.66 thorpej };
1966 1.66 thorpej
1967 1.66 thorpej #ifdef POOL_SUBPAGE
1968 1.66 thorpej void *pool_subpage_alloc(struct pool *, int);
1969 1.66 thorpej void pool_subpage_free(struct pool *, void *);
1970 1.66 thorpej
1971 1.66 thorpej struct pool_allocator pool_allocator_kmem_subpage = {
1972 1.66 thorpej pool_subpage_alloc, pool_subpage_free, 0,
1973 1.66 thorpej };
1974 1.66 thorpej #endif /* POOL_SUBPAGE */
1975 1.66 thorpej
1976 1.66 thorpej /*
1977 1.66 thorpej * We have at least three different resources for the same allocation and
1978 1.66 thorpej * each resource can be depleted. First, we have the ready elements in the
1979 1.66 thorpej * pool. Then we have the resource (typically a vm_map) for this allocator.
1980 1.66 thorpej * Finally, we have physical memory. Waiting for any of these can be
1981 1.66 thorpej * unnecessary when any other is freed, but the kernel doesn't support
1982 1.66 thorpej * sleeping on multiple wait channels, so we have to employ another strategy.
1983 1.66 thorpej *
1984 1.66 thorpej * The caller sleeps on the pool (so that it can be awakened when an item
1985 1.66 thorpej * is returned to the pool), but we set PA_WANT on the allocator. When a
1986 1.66 thorpej * page is returned to the allocator and PA_WANT is set, pool_allocator_free
1987 1.66 thorpej * will wake up all sleeping pools belonging to this allocator.
1988 1.66 thorpej *
1989 1.66 thorpej * XXX Thundering herd.
1990 1.66 thorpej */
1991 1.66 thorpej void *
1992 1.66 thorpej pool_allocator_alloc(struct pool *org, int flags)
1993 1.66 thorpej {
1994 1.66 thorpej struct pool_allocator *pa = org->pr_alloc;
1995 1.66 thorpej struct pool *pp, *start;
1996 1.66 thorpej int s, freed;
1997 1.66 thorpej void *res;
1998 1.66 thorpej
1999 1.91 yamt LOCK_ASSERT(!simple_lock_held(&org->pr_slock));
2000 1.91 yamt
2001 1.66 thorpej do {
2002 1.66 thorpej if ((res = (*pa->pa_alloc)(org, flags)) != NULL)
2003 1.66 thorpej return (res);
2004 1.68 thorpej if ((flags & PR_WAITOK) == 0) {
2005 1.68 thorpej /*
2006 1.68 thorpej * We only run the drain hookhere if PR_NOWAIT.
2007 1.68 thorpej * In other cases, the hook will be run in
2008 1.68 thorpej * pool_reclaim().
2009 1.68 thorpej */
2010 1.68 thorpej if (org->pr_drain_hook != NULL) {
2011 1.68 thorpej (*org->pr_drain_hook)(org->pr_drain_hook_arg,
2012 1.68 thorpej flags);
2013 1.68 thorpej if ((res = (*pa->pa_alloc)(org, flags)) != NULL)
2014 1.68 thorpej return (res);
2015 1.68 thorpej }
2016 1.66 thorpej break;
2017 1.68 thorpej }
2018 1.66 thorpej
2019 1.66 thorpej /*
2020 1.66 thorpej * Drain all pools, except "org", that use this
2021 1.66 thorpej * allocator. We do this to reclaim VA space.
2022 1.66 thorpej * pa_alloc is responsible for waiting for
2023 1.66 thorpej * physical memory.
2024 1.66 thorpej *
2025 1.66 thorpej * XXX We risk looping forever if start if someone
2026 1.66 thorpej * calls pool_destroy on "start". But there is no
2027 1.66 thorpej * other way to have potentially sleeping pool_reclaim,
2028 1.66 thorpej * non-sleeping locks on pool_allocator, and some
2029 1.66 thorpej * stirring of drained pools in the allocator.
2030 1.68 thorpej *
2031 1.68 thorpej * XXX Maybe we should use pool_head_slock for locking
2032 1.68 thorpej * the allocators?
2033 1.66 thorpej */
2034 1.66 thorpej freed = 0;
2035 1.66 thorpej
2036 1.66 thorpej s = splvm();
2037 1.66 thorpej simple_lock(&pa->pa_slock);
2038 1.66 thorpej pp = start = TAILQ_FIRST(&pa->pa_list);
2039 1.66 thorpej do {
2040 1.66 thorpej TAILQ_REMOVE(&pa->pa_list, pp, pr_alloc_list);
2041 1.66 thorpej TAILQ_INSERT_TAIL(&pa->pa_list, pp, pr_alloc_list);
2042 1.66 thorpej if (pp == org)
2043 1.66 thorpej continue;
2044 1.73 thorpej simple_unlock(&pa->pa_slock);
2045 1.66 thorpej freed = pool_reclaim(pp);
2046 1.73 thorpej simple_lock(&pa->pa_slock);
2047 1.66 thorpej } while ((pp = TAILQ_FIRST(&pa->pa_list)) != start &&
2048 1.66 thorpej freed == 0);
2049 1.66 thorpej
2050 1.66 thorpej if (freed == 0) {
2051 1.66 thorpej /*
2052 1.66 thorpej * We set PA_WANT here, the caller will most likely
2053 1.66 thorpej * sleep waiting for pages (if not, this won't hurt
2054 1.66 thorpej * that much), and there is no way to set this in
2055 1.66 thorpej * the caller without violating locking order.
2056 1.66 thorpej */
2057 1.66 thorpej pa->pa_flags |= PA_WANT;
2058 1.66 thorpej }
2059 1.66 thorpej simple_unlock(&pa->pa_slock);
2060 1.66 thorpej splx(s);
2061 1.66 thorpej } while (freed);
2062 1.66 thorpej return (NULL);
2063 1.66 thorpej }
2064 1.66 thorpej
2065 1.66 thorpej void
2066 1.66 thorpej pool_allocator_free(struct pool *pp, void *v)
2067 1.66 thorpej {
2068 1.66 thorpej struct pool_allocator *pa = pp->pr_alloc;
2069 1.66 thorpej int s;
2070 1.66 thorpej
2071 1.91 yamt LOCK_ASSERT(!simple_lock_held(&pp->pr_slock));
2072 1.91 yamt
2073 1.66 thorpej (*pa->pa_free)(pp, v);
2074 1.66 thorpej
2075 1.66 thorpej s = splvm();
2076 1.66 thorpej simple_lock(&pa->pa_slock);
2077 1.66 thorpej if ((pa->pa_flags & PA_WANT) == 0) {
2078 1.66 thorpej simple_unlock(&pa->pa_slock);
2079 1.66 thorpej splx(s);
2080 1.66 thorpej return;
2081 1.66 thorpej }
2082 1.66 thorpej
2083 1.66 thorpej TAILQ_FOREACH(pp, &pa->pa_list, pr_alloc_list) {
2084 1.66 thorpej simple_lock(&pp->pr_slock);
2085 1.66 thorpej if ((pp->pr_flags & PR_WANTED) != 0) {
2086 1.66 thorpej pp->pr_flags &= ~PR_WANTED;
2087 1.66 thorpej wakeup(pp);
2088 1.66 thorpej }
2089 1.69 thorpej simple_unlock(&pp->pr_slock);
2090 1.66 thorpej }
2091 1.66 thorpej pa->pa_flags &= ~PA_WANT;
2092 1.66 thorpej simple_unlock(&pa->pa_slock);
2093 1.66 thorpej splx(s);
2094 1.66 thorpej }
2095 1.66 thorpej
2096 1.66 thorpej void *
2097 1.66 thorpej pool_page_alloc(struct pool *pp, int flags)
2098 1.66 thorpej {
2099 1.66 thorpej boolean_t waitok = (flags & PR_WAITOK) ? TRUE : FALSE;
2100 1.66 thorpej
2101 1.66 thorpej return ((void *) uvm_km_alloc_poolpage(waitok));
2102 1.66 thorpej }
2103 1.66 thorpej
2104 1.66 thorpej void
2105 1.66 thorpej pool_page_free(struct pool *pp, void *v)
2106 1.66 thorpej {
2107 1.66 thorpej
2108 1.66 thorpej uvm_km_free_poolpage((vaddr_t) v);
2109 1.66 thorpej }
2110 1.66 thorpej
2111 1.66 thorpej #ifdef POOL_SUBPAGE
2112 1.66 thorpej /* Sub-page allocator, for machines with large hardware pages. */
2113 1.66 thorpej void *
2114 1.66 thorpej pool_subpage_alloc(struct pool *pp, int flags)
2115 1.66 thorpej {
2116 1.93 dbj void *v;
2117 1.93 dbj int s;
2118 1.93 dbj s = splvm();
2119 1.93 dbj v = pool_get(&psppool, flags);
2120 1.93 dbj splx(s);
2121 1.93 dbj return v;
2122 1.66 thorpej }
2123 1.66 thorpej
2124 1.66 thorpej void
2125 1.66 thorpej pool_subpage_free(struct pool *pp, void *v)
2126 1.66 thorpej {
2127 1.93 dbj int s;
2128 1.93 dbj s = splvm();
2129 1.66 thorpej pool_put(&psppool, v);
2130 1.93 dbj splx(s);
2131 1.66 thorpej }
2132 1.66 thorpej
2133 1.66 thorpej /* We don't provide a real nointr allocator. Maybe later. */
2134 1.66 thorpej void *
2135 1.66 thorpej pool_page_alloc_nointr(struct pool *pp, int flags)
2136 1.66 thorpej {
2137 1.66 thorpej
2138 1.66 thorpej return (pool_subpage_alloc(pp, flags));
2139 1.66 thorpej }
2140 1.66 thorpej
2141 1.66 thorpej void
2142 1.66 thorpej pool_page_free_nointr(struct pool *pp, void *v)
2143 1.66 thorpej {
2144 1.66 thorpej
2145 1.66 thorpej pool_subpage_free(pp, v);
2146 1.66 thorpej }
2147 1.66 thorpej #else
2148 1.66 thorpej void *
2149 1.66 thorpej pool_page_alloc_nointr(struct pool *pp, int flags)
2150 1.66 thorpej {
2151 1.66 thorpej boolean_t waitok = (flags & PR_WAITOK) ? TRUE : FALSE;
2152 1.66 thorpej
2153 1.66 thorpej return ((void *) uvm_km_alloc_poolpage1(kernel_map,
2154 1.66 thorpej uvm.kernel_object, waitok));
2155 1.66 thorpej }
2156 1.66 thorpej
2157 1.66 thorpej void
2158 1.66 thorpej pool_page_free_nointr(struct pool *pp, void *v)
2159 1.66 thorpej {
2160 1.66 thorpej
2161 1.66 thorpej uvm_km_free_poolpage1(kernel_map, (vaddr_t) v);
2162 1.66 thorpej }
2163 1.66 thorpej #endif /* POOL_SUBPAGE */
2164