Deleted Added
sdiff udiff text old ( 295451 ) new ( 296243 )
full compact
1/*-
2 * Copyright (c) 2002-2005, 2009, 2013 Jeffrey Roberson <jeff@FreeBSD.org>
3 * Copyright (c) 2004, 2005 Bosko Milekic <bmilekic@FreeBSD.org>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice unmodified, this list of conditions, and the following
11 * disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 *
27 * $FreeBSD: head/sys/vm/uma_int.h 295451 2016-02-09 20:22:35Z glebius $
28 *
29 */
30
31#include <sys/_task.h>
32
33/*
34 * This file includes definitions, structures, prototypes, and inlines that
35 * should not be used outside of the actual implementation of UMA.
36 */
37
38/*
39 * Here's a quick description of the relationship between the objects:
40 *
41 * Kegs contain lists of slabs which are stored in either the full bin, empty
42 * bin, or partially allocated bin, to reduce fragmentation. They also contain
43 * the user supplied value for size, which is adjusted for alignment purposes
44 * and rsize is the result of that. The Keg also stores information for
45 * managing a hash of page addresses that maps pages to uma_slab_t structures
46 * for pages that don't have embedded uma_slab_t's.
47 *
48 * The uma_slab_t may be embedded in a UMA_SLAB_SIZE chunk of memory or it may
49 * be allocated off the page from a special slab zone. The free list within a
50 * slab is managed with a bitmask. For item sizes that would yield more than
51 * 10% memory waste we potentially allocate a separate uma_slab_t if this will
52 * improve the number of items per slab that will fit.
53 *
54 * The only really gross cases, with regards to memory waste, are for those
55 * items that are just over half the page size. You can get nearly 50% waste,
56 * so you fall back to the memory footprint of the power of two allocator. I
57 * have looked at memory allocation sizes on many of the machines available to
58 * me, and there does not seem to be an abundance of allocations at this range
59 * so at this time it may not make sense to optimize for it. This can, of
60 * course, be solved with dynamic slab sizes.
61 *
62 * Kegs may serve multiple Zones but by far most of the time they only serve
63 * one. When a Zone is created, a Keg is allocated and setup for it. While
64 * the backing Keg stores slabs, the Zone caches Buckets of items allocated
65 * from the slabs. Each Zone is equipped with an init/fini and ctor/dtor
66 * pair, as well as with its own set of small per-CPU caches, layered above
67 * the Zone's general Bucket cache.
68 *
69 * The PCPU caches are protected by critical sections, and may be accessed
70 * safely only from their associated CPU, while the Zones backed by the same
71 * Keg all share a common Keg lock (to coalesce contention on the backing
72 * slabs). The backing Keg typically only serves one Zone but in the case of
73 * multiple Zones, one of the Zones is considered the Master Zone and all
74 * Zone-related stats from the Keg are done in the Master Zone. For an
75 * example of a Multi-Zone setup, refer to the Mbuf allocation code.
76 */
77
78/*
79 * This is the representation for normal (Non OFFPAGE slab)
80 *
81 * i == item
82 * s == slab pointer
83 *
84 * <---------------- Page (UMA_SLAB_SIZE) ------------------>
85 * ___________________________________________________________
86 * | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ___________ |
87 * ||i||i||i||i||i||i||i||i||i||i||i||i||i||i||i| |slab header||
88 * ||_||_||_||_||_||_||_||_||_||_||_||_||_||_||_| |___________||
89 * |___________________________________________________________|
90 *
91 *
92 * This is an OFFPAGE slab. These can be larger than UMA_SLAB_SIZE.
93 *
94 * ___________________________________________________________
95 * | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
96 * ||i||i||i||i||i||i||i||i||i||i||i||i||i||i||i||i||i||i||i| |
97 * ||_||_||_||_||_||_||_||_||_||_||_||_||_||_||_||_||_||_||_| |
98 * |___________________________________________________________|
99 * ___________ ^
100 * |slab header| |
101 * |___________|---*
102 *
103 */
104
105#ifndef VM_UMA_INT_H
106#define VM_UMA_INT_H
107
108#define UMA_SLAB_SIZE PAGE_SIZE /* How big are our slabs? */
109#define UMA_SLAB_MASK (PAGE_SIZE - 1) /* Mask to get back to the page */
110#define UMA_SLAB_SHIFT PAGE_SHIFT /* Number of bits PAGE_MASK */
111
112#define UMA_BOOT_PAGES 64 /* Pages allocated for startup */
113
114/* Max waste percentage before going to off page slab management */
115#define UMA_MAX_WASTE 10
116
117/*
118 * I doubt there will be many cases where this is exceeded. This is the initial
119 * size of the hash table for uma_slabs that are managed off page. This hash
120 * does expand by powers of two. Currently it doesn't get smaller.
121 */
122#define UMA_HASH_SIZE_INIT 32
123
124/*
125 * I should investigate other hashing algorithms. This should yield a low
126 * number of collisions if the pages are relatively contiguous.
127 */
128
129#define UMA_HASH(h, s) ((((uintptr_t)s) >> UMA_SLAB_SHIFT) & (h)->uh_hashmask)
130
131#define UMA_HASH_INSERT(h, s, mem) \
132 SLIST_INSERT_HEAD(&(h)->uh_slab_hash[UMA_HASH((h), \
133 (mem))], (s), us_hlink)
134#define UMA_HASH_REMOVE(h, s, mem) \
135 SLIST_REMOVE(&(h)->uh_slab_hash[UMA_HASH((h), \
136 (mem))], (s), uma_slab, us_hlink)
137
138/* Hash table for freed address -> slab translation */
139
140SLIST_HEAD(slabhead, uma_slab);
141
142struct uma_hash {
143 struct slabhead *uh_slab_hash; /* Hash table for slabs */
144 int uh_hashsize; /* Current size of the hash table */
145 int uh_hashmask; /* Mask used during hashing */
146};
147
148/*
149 * align field or structure to cache line
150 */
151#if defined(__amd64__)
152#define UMA_ALIGN __aligned(CACHE_LINE_SIZE)
153#else
154#define UMA_ALIGN
155#endif
156
157/*
158 * Structures for per cpu queues.
159 */
160
161struct uma_bucket {
162 LIST_ENTRY(uma_bucket) ub_link; /* Link into the zone */
163 int16_t ub_cnt; /* Count of free items. */
164 int16_t ub_entries; /* Max items. */
165 void *ub_bucket[]; /* actual allocation storage */
166};
167
168typedef struct uma_bucket * uma_bucket_t;
169
170struct uma_cache {
171 uma_bucket_t uc_freebucket; /* Bucket we're freeing to */
172 uma_bucket_t uc_allocbucket; /* Bucket to allocate from */
173 uint64_t uc_allocs; /* Count of allocations */
174 uint64_t uc_frees; /* Count of frees */
175} UMA_ALIGN;
176
177typedef struct uma_cache * uma_cache_t;
178
179/*
180 * Keg management structure
181 *
182 * TODO: Optimize for cache line size
183 *
184 */
185struct uma_keg {
186 struct mtx_padalign uk_lock; /* Lock for the keg */
187 struct uma_hash uk_hash;
188
189 LIST_HEAD(,uma_zone) uk_zones; /* Keg's zones */
190 LIST_HEAD(,uma_slab) uk_part_slab; /* partially allocated slabs */
191 LIST_HEAD(,uma_slab) uk_free_slab; /* empty slab list */
192 LIST_HEAD(,uma_slab) uk_full_slab; /* full slabs */
193
194 uint32_t uk_align; /* Alignment mask */
195 uint32_t uk_pages; /* Total page count */
196 uint32_t uk_free; /* Count of items free in slabs */
197 uint32_t uk_reserve; /* Number of reserved items. */
198 uint32_t uk_size; /* Requested size of each item */
199 uint32_t uk_rsize; /* Real size of each item */
200 uint32_t uk_maxpages; /* Maximum number of pages to alloc */
201
202 uma_init uk_init; /* Keg's init routine */
203 uma_fini uk_fini; /* Keg's fini routine */
204 uma_alloc uk_allocf; /* Allocation function */
205 uma_free uk_freef; /* Free routine */
206
207 u_long uk_offset; /* Next free offset from base KVA */
208 vm_offset_t uk_kva; /* Zone base KVA */
209 uma_zone_t uk_slabzone; /* Slab zone backing us, if OFFPAGE */
210
211 uint16_t uk_slabsize; /* Slab size for this keg */
212 uint16_t uk_pgoff; /* Offset to uma_slab struct */
213 uint16_t uk_ppera; /* pages per allocation from backend */
214 uint16_t uk_ipers; /* Items per slab */
215 uint32_t uk_flags; /* Internal flags */
216
217 /* Least used fields go to the last cache line. */
218 const char *uk_name; /* Name of creating zone. */
219 LIST_ENTRY(uma_keg) uk_link; /* List of all kegs */
220};
221typedef struct uma_keg * uma_keg_t;
222
223/*
224 * Free bits per-slab.
225 */
226#define SLAB_SETSIZE (PAGE_SIZE / UMA_SMALLEST_UNIT)
227BITSET_DEFINE(slabbits, SLAB_SETSIZE);
228
229/*
230 * The slab structure manages a single contiguous allocation from backing
231 * store and subdivides it into individually allocatable items.
232 */
233struct uma_slab {
234 uma_keg_t us_keg; /* Keg we live in */
235 union {
236 LIST_ENTRY(uma_slab) _us_link; /* slabs in zone */
237 unsigned long _us_size; /* Size of allocation */
238 } us_type;
239 SLIST_ENTRY(uma_slab) us_hlink; /* Link for hash table */
240 uint8_t *us_data; /* First item */
241 struct slabbits us_free; /* Free bitmask. */
242#ifdef INVARIANTS
243 struct slabbits us_debugfree; /* Debug bitmask. */
244#endif
245 uint16_t us_freecount; /* How many are free? */
246 uint8_t us_flags; /* Page flags see uma.h */
247 uint8_t us_pad; /* Pad to 32bits, unused. */
248};
249
250#define us_link us_type._us_link
251#define us_size us_type._us_size
252
253/*
254 * The slab structure for UMA_ZONE_REFCNT zones for whose items we
255 * maintain reference counters in the slab for.
256 */
257struct uma_slab_refcnt {
258 struct uma_slab us_head; /* slab header data */
259 uint32_t us_refcnt[0]; /* Actually larger. */
260};
261
262typedef struct uma_slab * uma_slab_t;
263typedef struct uma_slab_refcnt * uma_slabrefcnt_t;
264typedef uma_slab_t (*uma_slaballoc)(uma_zone_t, uma_keg_t, int);
265
266struct uma_klink {
267 LIST_ENTRY(uma_klink) kl_link;
268 uma_keg_t kl_keg;
269};
270typedef struct uma_klink *uma_klink_t;
271
272/*
273 * Zone management structure
274 *
275 * TODO: Optimize for cache line size
276 *
277 */
278struct uma_zone {
279 struct mtx_padalign uz_lock; /* Lock for the zone */
280 struct mtx_padalign *uz_lockptr;
281 const char *uz_name; /* Text name of the zone */
282
283 LIST_ENTRY(uma_zone) uz_link; /* List of all zones in keg */
284 LIST_HEAD(,uma_bucket) uz_buckets; /* full buckets */
285
286 LIST_HEAD(,uma_klink) uz_kegs; /* List of kegs. */
287 struct uma_klink uz_klink; /* klink for first keg. */
288
289 uma_slaballoc uz_slab; /* Allocate a slab from the backend. */
290 uma_ctor uz_ctor; /* Constructor for each allocation */
291 uma_dtor uz_dtor; /* Destructor */
292 uma_init uz_init; /* Initializer for each item */
293 uma_fini uz_fini; /* Finalizer for each item. */
294 uma_import uz_import; /* Import new memory to cache. */
295 uma_release uz_release; /* Release memory from cache. */
296 void *uz_arg; /* Import/release argument. */
297
298 uint32_t uz_flags; /* Flags inherited from kegs */
299 uint32_t uz_size; /* Size inherited from kegs */
300
301 volatile u_long uz_allocs UMA_ALIGN; /* Total number of allocations */
302 volatile u_long uz_fails; /* Total number of alloc failures */
303 volatile u_long uz_frees; /* Total number of frees */
304 uint64_t uz_sleeps; /* Total number of alloc sleeps */
305 uint16_t uz_count; /* Amount of items in full bucket */
306 uint16_t uz_count_min; /* Minimal amount of items there */
307
308 /* The next two fields are used to print a rate-limited warnings. */
309 const char *uz_warning; /* Warning to print on failure */
310 struct timeval uz_ratecheck; /* Warnings rate-limiting */
311
312 struct task uz_maxaction; /* Task to run when at limit */
313
314 /*
315 * This HAS to be the last item because we adjust the zone size
316 * based on NCPU and then allocate the space for the zones.
317 */
318 struct uma_cache uz_cpu[1]; /* Per cpu caches */
319};
320
321/*
322 * These flags must not overlap with the UMA_ZONE flags specified in uma.h.
323 */
324#define UMA_ZFLAG_MULTI 0x04000000 /* Multiple kegs in the zone. */
325#define UMA_ZFLAG_DRAINING 0x08000000 /* Running zone_drain. */
326#define UMA_ZFLAG_BUCKET 0x10000000 /* Bucket zone. */
327#define UMA_ZFLAG_INTERNAL 0x20000000 /* No offpage no PCPU. */
328#define UMA_ZFLAG_FULL 0x40000000 /* Reached uz_maxpages */
329#define UMA_ZFLAG_CACHEONLY 0x80000000 /* Don't ask VM for buckets. */
330
331#define UMA_ZFLAG_INHERIT \
332 (UMA_ZFLAG_INTERNAL | UMA_ZFLAG_CACHEONLY | UMA_ZFLAG_BUCKET)
333
334static inline uma_keg_t
335zone_first_keg(uma_zone_t zone)
336{
337 uma_klink_t klink;
338
339 klink = LIST_FIRST(&zone->uz_kegs);
340 return (klink != NULL) ? klink->kl_keg : NULL;
341}
342
343#undef UMA_ALIGN
344
345#ifdef _KERNEL
346/* Internal prototypes */
347static __inline uma_slab_t hash_sfind(struct uma_hash *hash, uint8_t *data);
348void *uma_large_malloc(vm_size_t size, int wait);
349void uma_large_free(uma_slab_t slab);
350
351/* Lock Macros */
352
353#define KEG_LOCK_INIT(k, lc) \
354 do { \
355 if ((lc)) \
356 mtx_init(&(k)->uk_lock, (k)->uk_name, \
357 (k)->uk_name, MTX_DEF | MTX_DUPOK); \
358 else \
359 mtx_init(&(k)->uk_lock, (k)->uk_name, \
360 "UMA zone", MTX_DEF | MTX_DUPOK); \
361 } while (0)
362
363#define KEG_LOCK_FINI(k) mtx_destroy(&(k)->uk_lock)
364#define KEG_LOCK(k) mtx_lock(&(k)->uk_lock)
365#define KEG_UNLOCK(k) mtx_unlock(&(k)->uk_lock)
366
367#define ZONE_LOCK_INIT(z, lc) \
368 do { \
369 if ((lc)) \
370 mtx_init(&(z)->uz_lock, (z)->uz_name, \
371 (z)->uz_name, MTX_DEF | MTX_DUPOK); \
372 else \
373 mtx_init(&(z)->uz_lock, (z)->uz_name, \
374 "UMA zone", MTX_DEF | MTX_DUPOK); \
375 } while (0)
376
377#define ZONE_LOCK(z) mtx_lock((z)->uz_lockptr)
378#define ZONE_TRYLOCK(z) mtx_trylock((z)->uz_lockptr)
379#define ZONE_UNLOCK(z) mtx_unlock((z)->uz_lockptr)
380#define ZONE_LOCK_FINI(z) mtx_destroy(&(z)->uz_lock)
381
382/*
383 * Find a slab within a hash table. This is used for OFFPAGE zones to lookup
384 * the slab structure.
385 *
386 * Arguments:
387 * hash The hash table to search.
388 * data The base page of the item.
389 *
390 * Returns:
391 * A pointer to a slab if successful, else NULL.
392 */
393static __inline uma_slab_t
394hash_sfind(struct uma_hash *hash, uint8_t *data)
395{
396 uma_slab_t slab;
397 int hval;
398
399 hval = UMA_HASH(hash, data);
400
401 SLIST_FOREACH(slab, &hash->uh_slab_hash[hval], us_hlink) {
402 if ((uint8_t *)slab->us_data == data)
403 return (slab);
404 }
405 return (NULL);
406}
407
408static __inline uma_slab_t
409vtoslab(vm_offset_t va)
410{
411 vm_page_t p;
412
413 p = PHYS_TO_VM_PAGE(pmap_kextract(va));
414 return ((uma_slab_t)p->plinks.s.pv);
415}
416
417static __inline void
418vsetslab(vm_offset_t va, uma_slab_t slab)
419{
420 vm_page_t p;
421
422 p = PHYS_TO_VM_PAGE(pmap_kextract(va));
423 p->plinks.s.pv = slab;
424}
425
426/*
427 * The following two functions may be defined by architecture specific code
428 * if they can provide more effecient allocation functions. This is useful
429 * for using direct mapped addresses.
430 */
431void *uma_small_alloc(uma_zone_t zone, vm_size_t bytes, uint8_t *pflag,
432 int wait);
433void uma_small_free(void *mem, vm_size_t size, uint8_t flags);
434#endif /* _KERNEL */
435
436#endif /* VM_UMA_INT_H */