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