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