kmalloc: Update comment
[dragonfly.git] / sys / kern / kern_slaballoc.c
blob8d976611473857d460ed025ad3a854a0427824f9
1 /*
2 * (MPSAFE)
4 * KERN_SLABALLOC.C - Kernel SLAB memory allocator
5 *
6 * Copyright (c) 2003,2004,2010 The DragonFly Project. All rights reserved.
7 *
8 * This code is derived from software contributed to The DragonFly Project
9 * by Matthew Dillon <dillon@backplane.com>
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in
19 * the documentation and/or other materials provided with the
20 * distribution.
21 * 3. Neither the name of The DragonFly Project nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific, prior written permission.
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
28 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
29 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
31 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
32 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
33 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
34 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
35 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
38 * This module implements a slab allocator drop-in replacement for the
39 * kernel malloc().
41 * A slab allocator reserves a ZONE for each chunk size, then lays the
42 * chunks out in an array within the zone. Allocation and deallocation
43 * is nearly instantanious, and fragmentation/overhead losses are limited
44 * to a fixed worst-case amount.
46 * The downside of this slab implementation is in the chunk size
47 * multiplied by the number of zones. ~80 zones * 128K = 10MB of VM per cpu.
48 * In a kernel implementation all this memory will be physical so
49 * the zone size is adjusted downward on machines with less physical
50 * memory. The upside is that overhead is bounded... this is the *worst*
51 * case overhead.
53 * Slab management is done on a per-cpu basis and no locking or mutexes
54 * are required, only a critical section. When one cpu frees memory
55 * belonging to another cpu's slab manager an asynchronous IPI message
56 * will be queued to execute the operation. In addition, both the
57 * high level slab allocator and the low level zone allocator optimize
58 * M_ZERO requests, and the slab allocator does not have to pre initialize
59 * the linked list of chunks.
61 * XXX Balancing is needed between cpus. Balance will be handled through
62 * asynchronous IPIs primarily by reassigning the z_Cpu ownership of chunks.
64 * XXX If we have to allocate a new zone and M_USE_RESERVE is set, use of
65 * the new zone should be restricted to M_USE_RESERVE requests only.
67 * Alloc Size Chunking Number of zones
68 * 0-127 8 16
69 * 128-255 16 8
70 * 256-511 32 8
71 * 512-1023 64 8
72 * 1024-2047 128 8
73 * 2048-4095 256 8
74 * 4096-8191 512 8
75 * 8192-16383 1024 8
76 * 16384-32767 2048 8
77 * (if PAGE_SIZE is 4K the maximum zone allocation is 16383)
79 * Allocations >= ZoneLimit go directly to kmem.
80 * (n * PAGE_SIZE, n > 2) allocations go directly to kmem.
82 * Alignment properties:
83 * - All power-of-2 sized allocations are power-of-2 aligned.
84 * - Allocations with M_POWEROF2 are power-of-2 aligned on the nearest
85 * power-of-2 round up of 'size'.
86 * - Non-power-of-2 sized allocations are zone chunk size aligned (see the
87 * above table 'Chunking' column).
89 * API REQUIREMENTS AND SIDE EFFECTS
91 * To operate as a drop-in replacement to the FreeBSD-4.x malloc() we
92 * have remained compatible with the following API requirements:
94 * + malloc(0) is allowed and returns non-NULL (ahc driver)
95 * + ability to allocate arbitrarily large chunks of memory
98 #include "opt_vm.h"
100 #include <sys/param.h>
101 #include <sys/systm.h>
102 #include <sys/kernel.h>
103 #include <sys/slaballoc.h>
104 #include <sys/mbuf.h>
105 #include <sys/vmmeter.h>
106 #include <sys/lock.h>
107 #include <sys/thread.h>
108 #include <sys/globaldata.h>
109 #include <sys/sysctl.h>
110 #include <sys/ktr.h>
112 #include <vm/vm.h>
113 #include <vm/vm_param.h>
114 #include <vm/vm_kern.h>
115 #include <vm/vm_extern.h>
116 #include <vm/vm_object.h>
117 #include <vm/pmap.h>
118 #include <vm/vm_map.h>
119 #include <vm/vm_page.h>
120 #include <vm/vm_pageout.h>
122 #include <machine/cpu.h>
124 #include <sys/thread2.h>
125 #include <vm/vm_page2.h>
127 #define btokup(z) (&pmap_kvtom((vm_offset_t)(z))->ku_pagecnt)
129 #define MEMORY_STRING "ptr=%p type=%p size=%lu flags=%04x"
130 #define MEMORY_ARGS void *ptr, void *type, unsigned long size, int flags
132 #if !defined(KTR_MEMORY)
133 #define KTR_MEMORY KTR_ALL
134 #endif
135 KTR_INFO_MASTER(memory);
136 KTR_INFO(KTR_MEMORY, memory, malloc_beg, 0, "malloc begin");
137 KTR_INFO(KTR_MEMORY, memory, malloc_end, 1, MEMORY_STRING, MEMORY_ARGS);
138 KTR_INFO(KTR_MEMORY, memory, free_zero, 2, MEMORY_STRING, MEMORY_ARGS);
139 KTR_INFO(KTR_MEMORY, memory, free_ovsz, 3, MEMORY_STRING, MEMORY_ARGS);
140 KTR_INFO(KTR_MEMORY, memory, free_ovsz_delayed, 4, MEMORY_STRING, MEMORY_ARGS);
141 KTR_INFO(KTR_MEMORY, memory, free_chunk, 5, MEMORY_STRING, MEMORY_ARGS);
142 KTR_INFO(KTR_MEMORY, memory, free_request, 6, MEMORY_STRING, MEMORY_ARGS);
143 KTR_INFO(KTR_MEMORY, memory, free_rem_beg, 7, MEMORY_STRING, MEMORY_ARGS);
144 KTR_INFO(KTR_MEMORY, memory, free_rem_end, 8, MEMORY_STRING, MEMORY_ARGS);
145 KTR_INFO(KTR_MEMORY, memory, free_beg, 9, "free begin");
146 KTR_INFO(KTR_MEMORY, memory, free_end, 10, "free end");
148 #define logmemory(name, ptr, type, size, flags) \
149 KTR_LOG(memory_ ## name, ptr, type, size, flags)
150 #define logmemory_quick(name) \
151 KTR_LOG(memory_ ## name)
154 * Fixed globals (not per-cpu)
156 static int ZoneSize;
157 static int ZoneLimit;
158 static int ZonePageCount;
159 static uintptr_t ZoneMask;
160 static int ZoneBigAlloc; /* in KB */
161 static int ZoneGenAlloc; /* in KB */
162 struct malloc_type *kmemstatistics; /* exported to vmstat */
163 #ifdef INVARIANTS
164 static int32_t weirdary[16];
165 #endif
167 static void *kmem_slab_alloc(vm_size_t bytes, vm_offset_t align, int flags);
168 static void kmem_slab_free(void *ptr, vm_size_t bytes);
170 #if defined(INVARIANTS)
171 static void chunk_mark_allocated(SLZone *z, void *chunk);
172 static void chunk_mark_free(SLZone *z, void *chunk);
173 #else
174 #define chunk_mark_allocated(z, chunk)
175 #define chunk_mark_free(z, chunk)
176 #endif
179 * Misc constants. Note that allocations that are exact multiples of
180 * PAGE_SIZE, or exceed the zone limit, fall through to the kmem module.
182 #define ZONE_RELS_THRESH 32 /* threshold number of zones */
184 #ifdef INVARIANTS
186 * The WEIRD_ADDR is used as known text to copy into free objects to
187 * try to create deterministic failure cases if the data is accessed after
188 * free.
190 #define WEIRD_ADDR 0xdeadc0de
191 #endif
192 #define ZERO_LENGTH_PTR ((void *)-8)
195 * Misc global malloc buckets
198 MALLOC_DEFINE(M_CACHE, "cache", "Various Dynamically allocated caches");
199 MALLOC_DEFINE(M_DEVBUF, "devbuf", "device driver memory");
200 MALLOC_DEFINE(M_TEMP, "temp", "misc temporary data buffers");
201 MALLOC_DEFINE(M_DRM, "m_drm", "DRM memory allocations");
203 MALLOC_DEFINE(M_IP6OPT, "ip6opt", "IPv6 options");
204 MALLOC_DEFINE(M_IP6NDP, "ip6ndp", "IPv6 Neighbor Discovery");
207 * Initialize the slab memory allocator. We have to choose a zone size based
208 * on available physical memory. We choose a zone side which is approximately
209 * 1/1024th of our memory, so if we have 128MB of ram we have a zone size of
210 * 128K. The zone size is limited to the bounds set in slaballoc.h
211 * (typically 32K min, 128K max).
213 static void kmeminit(void *dummy);
215 char *ZeroPage;
217 SYSINIT(kmem, SI_BOOT1_ALLOCATOR, SI_ORDER_FIRST, kmeminit, NULL);
219 #ifdef INVARIANTS
221 * If enabled any memory allocated without M_ZERO is initialized to -1.
223 static int use_malloc_pattern;
224 SYSCTL_INT(_debug, OID_AUTO, use_malloc_pattern, CTLFLAG_RW,
225 &use_malloc_pattern, 0,
226 "Initialize memory to -1 if M_ZERO not specified");
227 #endif
229 static int ZoneRelsThresh = ZONE_RELS_THRESH;
230 SYSCTL_INT(_kern, OID_AUTO, zone_big_alloc, CTLFLAG_RD, &ZoneBigAlloc, 0, "");
231 SYSCTL_INT(_kern, OID_AUTO, zone_gen_alloc, CTLFLAG_RD, &ZoneGenAlloc, 0, "");
232 SYSCTL_INT(_kern, OID_AUTO, zone_cache, CTLFLAG_RW, &ZoneRelsThresh, 0, "");
233 static long SlabsAllocated;
234 static long SlabsFreed;
235 SYSCTL_LONG(_kern, OID_AUTO, slabs_allocated, CTLFLAG_RD,
236 &SlabsAllocated, 0, "");
237 SYSCTL_LONG(_kern, OID_AUTO, slabs_freed, CTLFLAG_RD,
238 &SlabsFreed, 0, "");
239 static int SlabFreeToTail;
240 SYSCTL_INT(_kern, OID_AUTO, slab_freetotail, CTLFLAG_RW,
241 &SlabFreeToTail, 0, "");
243 static struct spinlock kmemstat_spin =
244 SPINLOCK_INITIALIZER(&kmemstat_spin, "malinit");
247 * Returns the kernel memory size limit for the purposes of initializing
248 * various subsystem caches. The smaller of available memory and the KVM
249 * memory space is returned.
251 * The size in megabytes is returned.
253 size_t
254 kmem_lim_size(void)
256 size_t limsize;
258 limsize = (size_t)vmstats.v_page_count * PAGE_SIZE;
259 if (limsize > KvaSize)
260 limsize = KvaSize;
261 return (limsize / (1024 * 1024));
264 static void
265 kmeminit(void *dummy)
267 size_t limsize;
268 int usesize;
269 #ifdef INVARIANTS
270 int i;
271 #endif
273 limsize = kmem_lim_size();
274 usesize = (int)(limsize * 1024); /* convert to KB */
277 * If the machine has a large KVM space and more than 8G of ram,
278 * double the zone release threshold to reduce SMP invalidations.
279 * If more than 16G of ram, do it again.
281 * The BIOS eats a little ram so add some slop. We want 8G worth of
282 * memory sticks to trigger the first adjustment.
284 if (ZoneRelsThresh == ZONE_RELS_THRESH) {
285 if (limsize >= 7 * 1024)
286 ZoneRelsThresh *= 2;
287 if (limsize >= 15 * 1024)
288 ZoneRelsThresh *= 2;
292 * Calculate the zone size. This typically calculates to
293 * ZALLOC_MAX_ZONE_SIZE
295 ZoneSize = ZALLOC_MIN_ZONE_SIZE;
296 while (ZoneSize < ZALLOC_MAX_ZONE_SIZE && (ZoneSize << 1) < usesize)
297 ZoneSize <<= 1;
298 ZoneLimit = ZoneSize / 4;
299 if (ZoneLimit > ZALLOC_ZONE_LIMIT)
300 ZoneLimit = ZALLOC_ZONE_LIMIT;
301 ZoneMask = ~(uintptr_t)(ZoneSize - 1);
302 ZonePageCount = ZoneSize / PAGE_SIZE;
304 #ifdef INVARIANTS
305 for (i = 0; i < NELEM(weirdary); ++i)
306 weirdary[i] = WEIRD_ADDR;
307 #endif
309 ZeroPage = kmem_slab_alloc(PAGE_SIZE, PAGE_SIZE, M_WAITOK|M_ZERO);
311 if (bootverbose)
312 kprintf("Slab ZoneSize set to %dKB\n", ZoneSize / 1024);
316 * (low level) Initialize slab-related elements in the globaldata structure.
318 * Occurs after kmeminit().
320 void
321 slab_gdinit(globaldata_t gd)
323 SLGlobalData *slgd;
324 int i;
326 slgd = &gd->gd_slab;
327 for (i = 0; i < NZONES; ++i)
328 TAILQ_INIT(&slgd->ZoneAry[i]);
329 TAILQ_INIT(&slgd->FreeZones);
330 TAILQ_INIT(&slgd->FreeOvZones);
334 * Initialize a malloc type tracking structure.
336 void
337 malloc_init(void *data)
339 struct malloc_type *type = data;
340 size_t limsize;
342 if (type->ks_magic != M_MAGIC)
343 panic("malloc type lacks magic");
345 if (type->ks_limit != 0)
346 return;
348 if (vmstats.v_page_count == 0)
349 panic("malloc_init not allowed before vm init");
351 limsize = kmem_lim_size() * (1024 * 1024);
352 type->ks_limit = limsize / 10;
354 spin_lock(&kmemstat_spin);
355 type->ks_next = kmemstatistics;
356 kmemstatistics = type;
357 spin_unlock(&kmemstat_spin);
360 void
361 malloc_uninit(void *data)
363 struct malloc_type *type = data;
364 struct malloc_type *t;
365 #ifdef INVARIANTS
366 int i;
367 long ttl;
368 #endif
370 if (type->ks_magic != M_MAGIC)
371 panic("malloc type lacks magic");
373 if (vmstats.v_page_count == 0)
374 panic("malloc_uninit not allowed before vm init");
376 if (type->ks_limit == 0)
377 panic("malloc_uninit on uninitialized type");
379 /* Make sure that all pending kfree()s are finished. */
380 lwkt_synchronize_ipiqs("muninit");
382 #ifdef INVARIANTS
384 * memuse is only correct in aggregation. Due to memory being allocated
385 * on one cpu and freed on another individual array entries may be
386 * negative or positive (canceling each other out).
388 for (i = ttl = 0; i < ncpus; ++i)
389 ttl += type->ks_use[i].memuse;
390 if (ttl) {
391 kprintf("malloc_uninit: %ld bytes of '%s' still allocated on cpu %d\n",
392 ttl, type->ks_shortdesc, i);
394 #endif
395 spin_lock(&kmemstat_spin);
396 if (type == kmemstatistics) {
397 kmemstatistics = type->ks_next;
398 } else {
399 for (t = kmemstatistics; t->ks_next != NULL; t = t->ks_next) {
400 if (t->ks_next == type) {
401 t->ks_next = type->ks_next;
402 break;
406 type->ks_next = NULL;
407 type->ks_limit = 0;
408 spin_unlock(&kmemstat_spin);
412 * Increase the kmalloc pool limit for the specified pool. No changes
413 * are the made if the pool would shrink.
415 void
416 kmalloc_raise_limit(struct malloc_type *type, size_t bytes)
418 if (type->ks_limit == 0)
419 malloc_init(type);
420 if (bytes == 0)
421 bytes = KvaSize;
422 if (type->ks_limit < bytes)
423 type->ks_limit = bytes;
426 void
427 kmalloc_set_unlimited(struct malloc_type *type)
429 type->ks_limit = kmem_lim_size() * (1024 * 1024);
433 * Dynamically create a malloc pool. This function is a NOP if *typep is
434 * already non-NULL.
436 void
437 kmalloc_create(struct malloc_type **typep, const char *descr)
439 struct malloc_type *type;
441 if (*typep == NULL) {
442 type = kmalloc(sizeof(*type), M_TEMP, M_WAITOK | M_ZERO);
443 type->ks_magic = M_MAGIC;
444 type->ks_shortdesc = descr;
445 malloc_init(type);
446 *typep = type;
451 * Destroy a dynamically created malloc pool. This function is a NOP if
452 * the pool has already been destroyed.
454 void
455 kmalloc_destroy(struct malloc_type **typep)
457 if (*typep != NULL) {
458 malloc_uninit(*typep);
459 kfree(*typep, M_TEMP);
460 *typep = NULL;
465 * Calculate the zone index for the allocation request size and set the
466 * allocation request size to that particular zone's chunk size.
468 static __inline int
469 zoneindex(unsigned long *bytes, unsigned long *align)
471 unsigned int n = (unsigned int)*bytes; /* unsigned for shift opt */
472 if (n < 128) {
473 *bytes = n = (n + 7) & ~7;
474 *align = 8;
475 return(n / 8 - 1); /* 8 byte chunks, 16 zones */
477 if (n < 256) {
478 *bytes = n = (n + 15) & ~15;
479 *align = 16;
480 return(n / 16 + 7);
482 if (n < 8192) {
483 if (n < 512) {
484 *bytes = n = (n + 31) & ~31;
485 *align = 32;
486 return(n / 32 + 15);
488 if (n < 1024) {
489 *bytes = n = (n + 63) & ~63;
490 *align = 64;
491 return(n / 64 + 23);
493 if (n < 2048) {
494 *bytes = n = (n + 127) & ~127;
495 *align = 128;
496 return(n / 128 + 31);
498 if (n < 4096) {
499 *bytes = n = (n + 255) & ~255;
500 *align = 256;
501 return(n / 256 + 39);
503 *bytes = n = (n + 511) & ~511;
504 *align = 512;
505 return(n / 512 + 47);
507 #if ZALLOC_ZONE_LIMIT > 8192
508 if (n < 16384) {
509 *bytes = n = (n + 1023) & ~1023;
510 *align = 1024;
511 return(n / 1024 + 55);
513 #endif
514 #if ZALLOC_ZONE_LIMIT > 16384
515 if (n < 32768) {
516 *bytes = n = (n + 2047) & ~2047;
517 *align = 2048;
518 return(n / 2048 + 63);
520 #endif
521 panic("Unexpected byte count %d", n);
522 return(0);
525 static __inline
526 void
527 clean_zone_rchunks(SLZone *z)
529 SLChunk *bchunk;
531 while ((bchunk = z->z_RChunks) != NULL) {
532 cpu_ccfence();
533 if (atomic_cmpset_ptr(&z->z_RChunks, bchunk, NULL)) {
534 *z->z_LChunksp = bchunk;
535 while (bchunk) {
536 chunk_mark_free(z, bchunk);
537 z->z_LChunksp = &bchunk->c_Next;
538 bchunk = bchunk->c_Next;
539 ++z->z_NFree;
541 break;
543 /* retry */
548 * If the zone becomes totally free and is not the only zone listed for a
549 * chunk size we move it to the FreeZones list. We always leave at least
550 * one zone per chunk size listed, even if it is freeable.
552 * Do not move the zone if there is an IPI in_flight (z_RCount != 0),
553 * otherwise MP races can result in our free_remote code accessing a
554 * destroyed zone. The remote end interlocks z_RCount with z_RChunks
555 * so one has to test both z_NFree and z_RCount.
557 * Since this code can be called from an IPI callback, do *NOT* try to mess
558 * with kernel_map here. Hysteresis will be performed at kmalloc() time.
560 static __inline
561 SLZone *
562 check_zone_free(SLGlobalData *slgd, SLZone *z)
564 SLZone *znext;
566 znext = TAILQ_NEXT(z, z_Entry);
567 if (z->z_NFree == z->z_NMax && z->z_RCount == 0 &&
568 (TAILQ_FIRST(&slgd->ZoneAry[z->z_ZoneIndex]) != z || znext)
570 int *kup;
572 TAILQ_REMOVE(&slgd->ZoneAry[z->z_ZoneIndex], z, z_Entry);
574 z->z_Magic = -1;
575 TAILQ_INSERT_HEAD(&slgd->FreeZones, z, z_Entry);
576 ++slgd->NFreeZones;
577 kup = btokup(z);
578 *kup = 0;
580 return znext;
583 #ifdef SLAB_DEBUG
585 * Used to debug memory corruption issues. Record up to (typically 32)
586 * allocation sources for this zone (for a particular chunk size).
589 static void
590 slab_record_source(SLZone *z, const char *file, int line)
592 int i;
593 int b = line & (SLAB_DEBUG_ENTRIES - 1);
595 i = b;
596 do {
597 if (z->z_Sources[i].file == file && z->z_Sources[i].line == line)
598 return;
599 if (z->z_Sources[i].file == NULL)
600 break;
601 i = (i + 1) & (SLAB_DEBUG_ENTRIES - 1);
602 } while (i != b);
603 z->z_Sources[i].file = file;
604 z->z_Sources[i].line = line;
607 #endif
609 static __inline unsigned long
610 powerof2_size(unsigned long size)
612 int i;
614 if (size == 0 || powerof2(size))
615 return size;
617 i = flsl(size);
618 return (1UL << i);
622 * kmalloc() (SLAB ALLOCATOR)
624 * Allocate memory via the slab allocator. If the request is too large,
625 * or if it page-aligned beyond a certain size, we fall back to the
626 * KMEM subsystem. A SLAB tracking descriptor must be specified, use
627 * &SlabMisc if you don't care.
629 * M_RNOWAIT - don't block.
630 * M_NULLOK - return NULL instead of blocking.
631 * M_ZERO - zero the returned memory.
632 * M_USE_RESERVE - allow greater drawdown of the free list
633 * M_USE_INTERRUPT_RESERVE - allow the freelist to be exhausted
634 * M_POWEROF2 - roundup size to the nearest power of 2
636 * MPSAFE
639 #ifdef SLAB_DEBUG
640 void *
641 kmalloc_debug(unsigned long size, struct malloc_type *type, int flags,
642 const char *file, int line)
643 #else
644 void *
645 kmalloc(unsigned long size, struct malloc_type *type, int flags)
646 #endif
648 SLZone *z;
649 SLChunk *chunk;
650 SLGlobalData *slgd;
651 struct globaldata *gd;
652 unsigned long align;
653 int zi;
654 #ifdef INVARIANTS
655 int i;
656 #endif
658 logmemory_quick(malloc_beg);
659 gd = mycpu;
660 slgd = &gd->gd_slab;
663 * XXX silly to have this in the critical path.
665 if (type->ks_limit == 0) {
666 crit_enter();
667 malloc_init(type);
668 crit_exit();
670 ++type->ks_use[gd->gd_cpuid].calls;
672 if (flags & M_POWEROF2)
673 size = powerof2_size(size);
676 * Handle the case where the limit is reached. Panic if we can't return
677 * NULL. The original malloc code looped, but this tended to
678 * simply deadlock the computer.
680 * ks_loosememuse is an up-only limit that is NOT MP-synchronized, used
681 * to determine if a more complete limit check should be done. The
682 * actual memory use is tracked via ks_use[cpu].memuse.
684 while (type->ks_loosememuse >= type->ks_limit) {
685 int i;
686 long ttl;
688 for (i = ttl = 0; i < ncpus; ++i)
689 ttl += type->ks_use[i].memuse;
690 type->ks_loosememuse = ttl; /* not MP synchronized */
691 if ((ssize_t)ttl < 0) /* deal with occassional race */
692 ttl = 0;
693 if (ttl >= type->ks_limit) {
694 if (flags & M_NULLOK) {
695 logmemory(malloc_end, NULL, type, size, flags);
696 return(NULL);
698 panic("%s: malloc limit exceeded", type->ks_shortdesc);
703 * Handle the degenerate size == 0 case. Yes, this does happen.
704 * Return a special pointer. This is to maintain compatibility with
705 * the original malloc implementation. Certain devices, such as the
706 * adaptec driver, not only allocate 0 bytes, they check for NULL and
707 * also realloc() later on. Joy.
709 if (size == 0) {
710 logmemory(malloc_end, ZERO_LENGTH_PTR, type, size, flags);
711 return(ZERO_LENGTH_PTR);
715 * Handle hysteresis from prior frees here in malloc(). We cannot
716 * safely manipulate the kernel_map in free() due to free() possibly
717 * being called via an IPI message or from sensitive interrupt code.
719 * NOTE: ku_pagecnt must be cleared before we free the slab or we
720 * might race another cpu allocating the kva and setting
721 * ku_pagecnt.
723 while (slgd->NFreeZones > ZoneRelsThresh && (flags & M_RNOWAIT) == 0) {
724 crit_enter();
725 if (slgd->NFreeZones > ZoneRelsThresh) { /* crit sect race */
726 int *kup;
728 z = TAILQ_LAST(&slgd->FreeZones, SLZoneList);
729 KKASSERT(z != NULL);
730 TAILQ_REMOVE(&slgd->FreeZones, z, z_Entry);
731 --slgd->NFreeZones;
732 kup = btokup(z);
733 *kup = 0;
734 kmem_slab_free(z, ZoneSize); /* may block */
735 atomic_add_int(&ZoneGenAlloc, -ZoneSize / 1024);
737 crit_exit();
741 * XXX handle oversized frees that were queued from kfree().
743 while (TAILQ_FIRST(&slgd->FreeOvZones) && (flags & M_RNOWAIT) == 0) {
744 crit_enter();
745 if ((z = TAILQ_LAST(&slgd->FreeOvZones, SLZoneList)) != NULL) {
746 vm_size_t tsize;
748 KKASSERT(z->z_Magic == ZALLOC_OVSZ_MAGIC);
749 TAILQ_REMOVE(&slgd->FreeOvZones, z, z_Entry);
750 tsize = z->z_ChunkSize;
751 kmem_slab_free(z, tsize); /* may block */
752 atomic_add_int(&ZoneBigAlloc, -(int)tsize / 1024);
754 crit_exit();
758 * Handle large allocations directly. There should not be very many of
759 * these so performance is not a big issue.
761 * The backend allocator is pretty nasty on a SMP system. Use the
762 * slab allocator for one and two page-sized chunks even though we lose
763 * some efficiency. XXX maybe fix mmio and the elf loader instead.
765 if (size >= ZoneLimit || ((size & PAGE_MASK) == 0 && size > PAGE_SIZE*2)) {
766 int *kup;
768 size = round_page(size);
769 chunk = kmem_slab_alloc(size, PAGE_SIZE, flags);
770 if (chunk == NULL) {
771 logmemory(malloc_end, NULL, type, size, flags);
772 return(NULL);
774 atomic_add_int(&ZoneBigAlloc, (int)size / 1024);
775 flags &= ~M_ZERO; /* result already zero'd if M_ZERO was set */
776 flags |= M_PASSIVE_ZERO;
777 kup = btokup(chunk);
778 *kup = size / PAGE_SIZE;
779 crit_enter();
780 goto done;
784 * Attempt to allocate out of an existing zone. First try the free list,
785 * then allocate out of unallocated space. If we find a good zone move
786 * it to the head of the list so later allocations find it quickly
787 * (we might have thousands of zones in the list).
789 * Note: zoneindex() will panic of size is too large.
791 zi = zoneindex(&size, &align);
792 KKASSERT(zi < NZONES);
793 crit_enter();
795 if ((z = TAILQ_LAST(&slgd->ZoneAry[zi], SLZoneList)) != NULL) {
797 * Locate a chunk - we have to have at least one. If this is the
798 * last chunk go ahead and do the work to retrieve chunks freed
799 * from remote cpus, and if the zone is still empty move it off
800 * the ZoneAry.
802 if (--z->z_NFree <= 0) {
803 KKASSERT(z->z_NFree == 0);
806 * WARNING! This code competes with other cpus. It is ok
807 * for us to not drain RChunks here but we might as well, and
808 * it is ok if more accumulate after we're done.
810 * Set RSignal before pulling rchunks off, indicating that we
811 * will be moving ourselves off of the ZoneAry. Remote ends will
812 * read RSignal before putting rchunks on thus interlocking
813 * their IPI signaling.
815 if (z->z_RChunks == NULL)
816 atomic_swap_int(&z->z_RSignal, 1);
818 clean_zone_rchunks(z);
821 * Remove from the zone list if no free chunks remain.
822 * Clear RSignal
824 if (z->z_NFree == 0) {
825 TAILQ_REMOVE(&slgd->ZoneAry[zi], z, z_Entry);
826 } else {
827 z->z_RSignal = 0;
832 * Fast path, we have chunks available in z_LChunks.
834 chunk = z->z_LChunks;
835 if (chunk) {
836 chunk_mark_allocated(z, chunk);
837 z->z_LChunks = chunk->c_Next;
838 if (z->z_LChunks == NULL)
839 z->z_LChunksp = &z->z_LChunks;
840 #ifdef SLAB_DEBUG
841 slab_record_source(z, file, line);
842 #endif
843 goto done;
847 * No chunks are available in LChunks, the free chunk MUST be
848 * in the never-before-used memory area, controlled by UIndex.
850 * The consequences are very serious if our zone got corrupted so
851 * we use an explicit panic rather than a KASSERT.
853 if (z->z_UIndex + 1 != z->z_NMax)
854 ++z->z_UIndex;
855 else
856 z->z_UIndex = 0;
858 if (z->z_UIndex == z->z_UEndIndex)
859 panic("slaballoc: corrupted zone");
861 chunk = (SLChunk *)(z->z_BasePtr + z->z_UIndex * size);
862 if ((z->z_Flags & SLZF_UNOTZEROD) == 0) {
863 flags &= ~M_ZERO;
864 flags |= M_PASSIVE_ZERO;
866 chunk_mark_allocated(z, chunk);
867 #ifdef SLAB_DEBUG
868 slab_record_source(z, file, line);
869 #endif
870 goto done;
874 * If all zones are exhausted we need to allocate a new zone for this
875 * index. Use M_ZERO to take advantage of pre-zerod pages. Also see
876 * UAlloc use above in regards to M_ZERO. Note that when we are reusing
877 * a zone from the FreeZones list UAlloc'd data will not be zero'd, and
878 * we do not pre-zero it because we do not want to mess up the L1 cache.
880 * At least one subsystem, the tty code (see CROUND) expects power-of-2
881 * allocations to be power-of-2 aligned. We maintain compatibility by
882 * adjusting the base offset below.
885 int off;
886 int *kup;
888 if ((z = TAILQ_FIRST(&slgd->FreeZones)) != NULL) {
889 TAILQ_REMOVE(&slgd->FreeZones, z, z_Entry);
890 --slgd->NFreeZones;
891 bzero(z, sizeof(SLZone));
892 z->z_Flags |= SLZF_UNOTZEROD;
893 } else {
894 z = kmem_slab_alloc(ZoneSize, ZoneSize, flags|M_ZERO);
895 if (z == NULL)
896 goto fail;
897 atomic_add_int(&ZoneGenAlloc, ZoneSize / 1024);
901 * How big is the base structure?
903 #if defined(INVARIANTS)
905 * Make room for z_Bitmap. An exact calculation is somewhat more
906 * complicated so don't make an exact calculation.
908 off = offsetof(SLZone, z_Bitmap[(ZoneSize / size + 31) / 32]);
909 bzero(z->z_Bitmap, (ZoneSize / size + 31) / 8);
910 #else
911 off = sizeof(SLZone);
912 #endif
915 * Guarentee power-of-2 alignment for power-of-2-sized chunks.
916 * Otherwise properly align the data according to the chunk size.
918 if (powerof2(size))
919 align = size;
920 off = roundup2(off, align);
922 z->z_Magic = ZALLOC_SLAB_MAGIC;
923 z->z_ZoneIndex = zi;
924 z->z_NMax = (ZoneSize - off) / size;
925 z->z_NFree = z->z_NMax - 1;
926 z->z_BasePtr = (char *)z + off;
927 z->z_UIndex = z->z_UEndIndex = slgd->JunkIndex % z->z_NMax;
928 z->z_ChunkSize = size;
929 z->z_CpuGd = gd;
930 z->z_Cpu = gd->gd_cpuid;
931 z->z_LChunksp = &z->z_LChunks;
932 #ifdef SLAB_DEBUG
933 bcopy(z->z_Sources, z->z_AltSources, sizeof(z->z_Sources));
934 bzero(z->z_Sources, sizeof(z->z_Sources));
935 #endif
936 chunk = (SLChunk *)(z->z_BasePtr + z->z_UIndex * size);
937 TAILQ_INSERT_HEAD(&slgd->ZoneAry[zi], z, z_Entry);
938 if ((z->z_Flags & SLZF_UNOTZEROD) == 0) {
939 flags &= ~M_ZERO; /* already zero'd */
940 flags |= M_PASSIVE_ZERO;
942 kup = btokup(z);
943 *kup = -(z->z_Cpu + 1); /* -1 to -(N+1) */
944 chunk_mark_allocated(z, chunk);
945 #ifdef SLAB_DEBUG
946 slab_record_source(z, file, line);
947 #endif
950 * Slide the base index for initial allocations out of the next
951 * zone we create so we do not over-weight the lower part of the
952 * cpu memory caches.
954 slgd->JunkIndex = (slgd->JunkIndex + ZALLOC_SLAB_SLIDE)
955 & (ZALLOC_MAX_ZONE_SIZE - 1);
958 done:
959 ++type->ks_use[gd->gd_cpuid].inuse;
960 type->ks_use[gd->gd_cpuid].memuse += size;
961 type->ks_loosememuse += size; /* not MP synchronized */
962 crit_exit();
964 if (flags & M_ZERO)
965 bzero(chunk, size);
966 #ifdef INVARIANTS
967 else if ((flags & (M_ZERO|M_PASSIVE_ZERO)) == 0) {
968 if (use_malloc_pattern) {
969 for (i = 0; i < size; i += sizeof(int)) {
970 *(int *)((char *)chunk + i) = -1;
973 chunk->c_Next = (void *)-1; /* avoid accidental double-free check */
975 #endif
976 logmemory(malloc_end, chunk, type, size, flags);
977 return(chunk);
978 fail:
979 crit_exit();
980 logmemory(malloc_end, NULL, type, size, flags);
981 return(NULL);
985 * kernel realloc. (SLAB ALLOCATOR) (MP SAFE)
987 * Generally speaking this routine is not called very often and we do
988 * not attempt to optimize it beyond reusing the same pointer if the
989 * new size fits within the chunking of the old pointer's zone.
991 #ifdef SLAB_DEBUG
992 void *
993 krealloc_debug(void *ptr, unsigned long size,
994 struct malloc_type *type, int flags,
995 const char *file, int line)
996 #else
997 void *
998 krealloc(void *ptr, unsigned long size, struct malloc_type *type, int flags)
999 #endif
1001 unsigned long osize;
1002 unsigned long align;
1003 SLZone *z;
1004 void *nptr;
1005 int *kup;
1007 KKASSERT((flags & M_ZERO) == 0); /* not supported */
1009 if (ptr == NULL || ptr == ZERO_LENGTH_PTR)
1010 return(kmalloc_debug(size, type, flags, file, line));
1011 if (size == 0) {
1012 kfree(ptr, type);
1013 return(NULL);
1017 * Handle oversized allocations. XXX we really should require that a
1018 * size be passed to free() instead of this nonsense.
1020 kup = btokup(ptr);
1021 if (*kup > 0) {
1022 osize = *kup << PAGE_SHIFT;
1023 if (osize == round_page(size))
1024 return(ptr);
1025 if ((nptr = kmalloc_debug(size, type, flags, file, line)) == NULL)
1026 return(NULL);
1027 bcopy(ptr, nptr, min(size, osize));
1028 kfree(ptr, type);
1029 return(nptr);
1033 * Get the original allocation's zone. If the new request winds up
1034 * using the same chunk size we do not have to do anything.
1036 z = (SLZone *)((uintptr_t)ptr & ZoneMask);
1037 kup = btokup(z);
1038 KKASSERT(*kup < 0);
1039 KKASSERT(z->z_Magic == ZALLOC_SLAB_MAGIC);
1042 * Allocate memory for the new request size. Note that zoneindex has
1043 * already adjusted the request size to the appropriate chunk size, which
1044 * should optimize our bcopy(). Then copy and return the new pointer.
1046 * Resizing a non-power-of-2 allocation to a power-of-2 size does not
1047 * necessary align the result.
1049 * We can only zoneindex (to align size to the chunk size) if the new
1050 * size is not too large.
1052 if (size < ZoneLimit) {
1053 zoneindex(&size, &align);
1054 if (z->z_ChunkSize == size)
1055 return(ptr);
1057 if ((nptr = kmalloc_debug(size, type, flags, file, line)) == NULL)
1058 return(NULL);
1059 bcopy(ptr, nptr, min(size, z->z_ChunkSize));
1060 kfree(ptr, type);
1061 return(nptr);
1065 * Return the kmalloc limit for this type, in bytes.
1067 long
1068 kmalloc_limit(struct malloc_type *type)
1070 if (type->ks_limit == 0) {
1071 crit_enter();
1072 if (type->ks_limit == 0)
1073 malloc_init(type);
1074 crit_exit();
1076 return(type->ks_limit);
1080 * Allocate a copy of the specified string.
1082 * (MP SAFE) (MAY BLOCK)
1084 #ifdef SLAB_DEBUG
1085 char *
1086 kstrdup_debug(const char *str, struct malloc_type *type,
1087 const char *file, int line)
1088 #else
1089 char *
1090 kstrdup(const char *str, struct malloc_type *type)
1091 #endif
1093 int zlen; /* length inclusive of terminating NUL */
1094 char *nstr;
1096 if (str == NULL)
1097 return(NULL);
1098 zlen = strlen(str) + 1;
1099 nstr = kmalloc_debug(zlen, type, M_WAITOK, file, line);
1100 bcopy(str, nstr, zlen);
1101 return(nstr);
1104 #ifdef SLAB_DEBUG
1105 char *
1106 kstrndup_debug(const char *str, size_t maxlen, struct malloc_type *type,
1107 const char *file, int line)
1108 #else
1109 char *
1110 kstrndup(const char *str, size_t maxlen, struct malloc_type *type)
1111 #endif
1113 int zlen; /* length inclusive of terminating NUL */
1114 char *nstr;
1116 if (str == NULL)
1117 return(NULL);
1118 zlen = strnlen(str, maxlen) + 1;
1119 nstr = kmalloc_debug(zlen, type, M_WAITOK, file, line);
1120 bcopy(str, nstr, zlen);
1121 nstr[zlen - 1] = '\0';
1122 return(nstr);
1126 * Notify our cpu that a remote cpu has freed some chunks in a zone that
1127 * we own. RCount will be bumped so the memory should be good, but validate
1128 * that it really is.
1130 static
1131 void
1132 kfree_remote(void *ptr)
1134 SLGlobalData *slgd;
1135 SLZone *z;
1136 int nfree;
1137 int *kup;
1139 slgd = &mycpu->gd_slab;
1140 z = ptr;
1141 kup = btokup(z);
1142 KKASSERT(*kup == -((int)mycpuid + 1));
1143 KKASSERT(z->z_RCount > 0);
1144 atomic_subtract_int(&z->z_RCount, 1);
1146 logmemory(free_rem_beg, z, NULL, 0L, 0);
1147 KKASSERT(z->z_Magic == ZALLOC_SLAB_MAGIC);
1148 KKASSERT(z->z_Cpu == mycpu->gd_cpuid);
1149 nfree = z->z_NFree;
1152 * Indicate that we will no longer be off of the ZoneAry by
1153 * clearing RSignal.
1155 if (z->z_RChunks)
1156 z->z_RSignal = 0;
1159 * Atomically extract the bchunks list and then process it back
1160 * into the lchunks list. We want to append our bchunks to the
1161 * lchunks list and not prepend since we likely do not have
1162 * cache mastership of the related data (not that it helps since
1163 * we are using c_Next).
1165 clean_zone_rchunks(z);
1166 if (z->z_NFree && nfree == 0) {
1167 TAILQ_INSERT_HEAD(&slgd->ZoneAry[z->z_ZoneIndex], z, z_Entry);
1171 * If the zone becomes totally free and is not the only zone listed for a
1172 * chunk size we move it to the FreeZones list. We always leave at least
1173 * one zone per chunk size listed, even if it is freeable.
1175 * Since this code can be called from an IPI callback, do *NOT* try to
1176 * mess with kernel_map here. Hysteresis will be performed at malloc()
1177 * time.
1179 * Do not move the zone if there is an IPI in_flight (z_RCount != 0),
1180 * otherwise MP races can result in our free_remote code accessing a
1181 * destroyed zone. The remote end interlocks z_RCount with z_RChunks
1182 * so one has to test both z_NFree and z_RCount.
1184 if (z->z_NFree == z->z_NMax && z->z_RCount == 0 &&
1185 (TAILQ_FIRST(&slgd->ZoneAry[z->z_ZoneIndex]) != z ||
1186 TAILQ_NEXT(z, z_Entry))
1188 int *kup;
1190 TAILQ_REMOVE(&slgd->ZoneAry[z->z_ZoneIndex], z, z_Entry);
1191 z->z_Magic = -1;
1192 TAILQ_INSERT_HEAD(&slgd->FreeZones, z, z_Entry);
1193 ++slgd->NFreeZones;
1194 kup = btokup(z);
1195 *kup = 0;
1197 logmemory(free_rem_end, z, NULL, 0L, 0);
1201 * free (SLAB ALLOCATOR)
1203 * Free a memory block previously allocated by malloc. Note that we do not
1204 * attempt to update ks_loosememuse as MP races could prevent us from
1205 * checking memory limits in malloc.
1207 * MPSAFE
1209 void
1210 kfree(void *ptr, struct malloc_type *type)
1212 SLZone *z;
1213 SLChunk *chunk;
1214 SLGlobalData *slgd;
1215 struct globaldata *gd;
1216 int *kup;
1217 unsigned long size;
1218 SLChunk *bchunk;
1219 int rsignal;
1221 logmemory_quick(free_beg);
1222 gd = mycpu;
1223 slgd = &gd->gd_slab;
1225 if (ptr == NULL)
1226 panic("trying to free NULL pointer");
1229 * Handle special 0-byte allocations
1231 if (ptr == ZERO_LENGTH_PTR) {
1232 logmemory(free_zero, ptr, type, -1UL, 0);
1233 logmemory_quick(free_end);
1234 return;
1238 * Panic on bad malloc type
1240 if (type->ks_magic != M_MAGIC)
1241 panic("free: malloc type lacks magic");
1244 * Handle oversized allocations. XXX we really should require that a
1245 * size be passed to free() instead of this nonsense.
1247 * This code is never called via an ipi.
1249 kup = btokup(ptr);
1250 if (*kup > 0) {
1251 size = *kup << PAGE_SHIFT;
1252 *kup = 0;
1253 #ifdef INVARIANTS
1254 KKASSERT(sizeof(weirdary) <= size);
1255 bcopy(weirdary, ptr, sizeof(weirdary));
1256 #endif
1258 * NOTE: For oversized allocations we do not record the
1259 * originating cpu. It gets freed on the cpu calling
1260 * kfree(). The statistics are in aggregate.
1262 * note: XXX we have still inherited the interrupts-can't-block
1263 * assumption. An interrupt thread does not bump
1264 * gd_intr_nesting_level so check TDF_INTTHREAD. This is
1265 * primarily until we can fix softupdate's assumptions about free().
1267 crit_enter();
1268 --type->ks_use[gd->gd_cpuid].inuse;
1269 type->ks_use[gd->gd_cpuid].memuse -= size;
1270 if (mycpu->gd_intr_nesting_level ||
1271 (gd->gd_curthread->td_flags & TDF_INTTHREAD))
1273 logmemory(free_ovsz_delayed, ptr, type, size, 0);
1274 z = (SLZone *)ptr;
1275 z->z_Magic = ZALLOC_OVSZ_MAGIC;
1276 z->z_ChunkSize = size;
1278 TAILQ_INSERT_HEAD(&slgd->FreeOvZones, z, z_Entry);
1279 crit_exit();
1280 } else {
1281 crit_exit();
1282 logmemory(free_ovsz, ptr, type, size, 0);
1283 kmem_slab_free(ptr, size); /* may block */
1284 atomic_add_int(&ZoneBigAlloc, -(int)size / 1024);
1286 logmemory_quick(free_end);
1287 return;
1291 * Zone case. Figure out the zone based on the fact that it is
1292 * ZoneSize aligned.
1294 z = (SLZone *)((uintptr_t)ptr & ZoneMask);
1295 kup = btokup(z);
1296 KKASSERT(*kup < 0);
1297 KKASSERT(z->z_Magic == ZALLOC_SLAB_MAGIC);
1300 * If we do not own the zone then use atomic ops to free to the
1301 * remote cpu linked list and notify the target zone using a
1302 * passive message.
1304 * The target zone cannot be deallocated while we own a chunk of it,
1305 * so the zone header's storage is stable until the very moment
1306 * we adjust z_RChunks. After that we cannot safely dereference (z).
1308 * (no critical section needed)
1310 if (z->z_CpuGd != gd) {
1312 * Making these adjustments now allow us to avoid passing (type)
1313 * to the remote cpu. Note that inuse/memuse is being
1314 * adjusted on OUR cpu, not the zone cpu, but it should all still
1315 * sum up properly and cancel out.
1317 crit_enter();
1318 --type->ks_use[gd->gd_cpuid].inuse;
1319 type->ks_use[gd->gd_cpuid].memuse -= z->z_ChunkSize;
1320 crit_exit();
1323 * WARNING! This code competes with other cpus. Once we
1324 * successfully link the chunk to RChunks the remote
1325 * cpu can rip z's storage out from under us.
1327 * Bumping RCount prevents z's storage from getting
1328 * ripped out.
1330 rsignal = z->z_RSignal;
1331 cpu_lfence();
1332 if (rsignal)
1333 atomic_add_int(&z->z_RCount, 1);
1335 chunk = ptr;
1336 for (;;) {
1337 bchunk = z->z_RChunks;
1338 cpu_ccfence();
1339 chunk->c_Next = bchunk;
1340 cpu_sfence();
1342 if (atomic_cmpset_ptr(&z->z_RChunks, bchunk, chunk))
1343 break;
1347 * We have to signal the remote cpu if our actions will cause
1348 * the remote zone to be placed back on ZoneAry so it can
1349 * move the zone back on.
1351 * We only need to deal with NULL->non-NULL RChunk transitions
1352 * and only if z_RSignal is set. We interlock by reading rsignal
1353 * before adding our chunk to RChunks. This should result in
1354 * virtually no IPI traffic.
1356 * We can use a passive IPI to reduce overhead even further.
1358 if (bchunk == NULL && rsignal) {
1359 logmemory(free_request, ptr, type,
1360 (unsigned long)z->z_ChunkSize, 0);
1361 lwkt_send_ipiq_passive(z->z_CpuGd, kfree_remote, z);
1362 /* z can get ripped out from under us from this point on */
1363 } else if (rsignal) {
1364 atomic_subtract_int(&z->z_RCount, 1);
1365 /* z can get ripped out from under us from this point on */
1367 logmemory_quick(free_end);
1368 return;
1372 * kfree locally
1374 logmemory(free_chunk, ptr, type, (unsigned long)z->z_ChunkSize, 0);
1376 crit_enter();
1377 chunk = ptr;
1378 chunk_mark_free(z, chunk);
1381 * Put weird data into the memory to detect modifications after freeing,
1382 * illegal pointer use after freeing (we should fault on the odd address),
1383 * and so forth. XXX needs more work, see the old malloc code.
1385 #ifdef INVARIANTS
1386 if (z->z_ChunkSize < sizeof(weirdary))
1387 bcopy(weirdary, chunk, z->z_ChunkSize);
1388 else
1389 bcopy(weirdary, chunk, sizeof(weirdary));
1390 #endif
1393 * Add this free non-zero'd chunk to a linked list for reuse. Add
1394 * to the front of the linked list so it is more likely to be
1395 * reallocated, since it is already in our L1 cache.
1397 #ifdef INVARIANTS
1398 if ((vm_offset_t)chunk < KvaStart || (vm_offset_t)chunk >= KvaEnd)
1399 panic("BADFREE %p", chunk);
1400 #endif
1401 chunk->c_Next = z->z_LChunks;
1402 z->z_LChunks = chunk;
1403 if (chunk->c_Next == NULL)
1404 z->z_LChunksp = &chunk->c_Next;
1406 #ifdef INVARIANTS
1407 if (chunk->c_Next && (vm_offset_t)chunk->c_Next < KvaStart)
1408 panic("BADFREE2");
1409 #endif
1412 * Bump the number of free chunks. If it becomes non-zero the zone
1413 * must be added back onto the appropriate list. A fully allocated
1414 * zone that sees its first free is considered 'mature' and is placed
1415 * at the head, giving the system time to potentially free the remaining
1416 * entries even while other allocations are going on and making the zone
1417 * freeable.
1419 if (z->z_NFree++ == 0) {
1420 if (SlabFreeToTail)
1421 TAILQ_INSERT_TAIL(&slgd->ZoneAry[z->z_ZoneIndex], z, z_Entry);
1422 else
1423 TAILQ_INSERT_HEAD(&slgd->ZoneAry[z->z_ZoneIndex], z, z_Entry);
1426 --type->ks_use[z->z_Cpu].inuse;
1427 type->ks_use[z->z_Cpu].memuse -= z->z_ChunkSize;
1429 check_zone_free(slgd, z);
1430 logmemory_quick(free_end);
1431 crit_exit();
1435 * Cleanup slabs which are hanging around due to RChunks or which are wholely
1436 * free and can be moved to the free list if not moved by other means.
1438 * Called once every 10 seconds on all cpus.
1440 void
1441 slab_cleanup(void)
1443 SLGlobalData *slgd = &mycpu->gd_slab;
1444 SLZone *z;
1445 int i;
1447 crit_enter();
1448 for (i = 0; i < NZONES; ++i) {
1449 if ((z = TAILQ_FIRST(&slgd->ZoneAry[i])) == NULL)
1450 continue;
1453 * Scan zones.
1455 while (z) {
1457 * Shift all RChunks to the end of the LChunks list. This is
1458 * an O(1) operation.
1460 * Then free the zone if possible.
1462 clean_zone_rchunks(z);
1463 z = check_zone_free(slgd, z);
1466 crit_exit();
1469 #if defined(INVARIANTS)
1472 * Helper routines for sanity checks
1474 static
1475 void
1476 chunk_mark_allocated(SLZone *z, void *chunk)
1478 int bitdex = ((char *)chunk - (char *)z->z_BasePtr) / z->z_ChunkSize;
1479 uint32_t *bitptr;
1481 KKASSERT((((intptr_t)chunk ^ (intptr_t)z) & ZoneMask) == 0);
1482 KASSERT(bitdex >= 0 && bitdex < z->z_NMax,
1483 ("memory chunk %p bit index %d is illegal", chunk, bitdex));
1484 bitptr = &z->z_Bitmap[bitdex >> 5];
1485 bitdex &= 31;
1486 KASSERT((*bitptr & (1 << bitdex)) == 0,
1487 ("memory chunk %p is already allocated!", chunk));
1488 *bitptr |= 1 << bitdex;
1491 static
1492 void
1493 chunk_mark_free(SLZone *z, void *chunk)
1495 int bitdex = ((char *)chunk - (char *)z->z_BasePtr) / z->z_ChunkSize;
1496 uint32_t *bitptr;
1498 KKASSERT((((intptr_t)chunk ^ (intptr_t)z) & ZoneMask) == 0);
1499 KASSERT(bitdex >= 0 && bitdex < z->z_NMax,
1500 ("memory chunk %p bit index %d is illegal!", chunk, bitdex));
1501 bitptr = &z->z_Bitmap[bitdex >> 5];
1502 bitdex &= 31;
1503 KASSERT((*bitptr & (1 << bitdex)) != 0,
1504 ("memory chunk %p is already free!", chunk));
1505 *bitptr &= ~(1 << bitdex);
1508 #endif
1511 * kmem_slab_alloc()
1513 * Directly allocate and wire kernel memory in PAGE_SIZE chunks with the
1514 * specified alignment. M_* flags are expected in the flags field.
1516 * Alignment must be a multiple of PAGE_SIZE.
1518 * NOTE! XXX For the moment we use vm_map_entry_reserve/release(),
1519 * but when we move zalloc() over to use this function as its backend
1520 * we will have to switch to kreserve/krelease and call reserve(0)
1521 * after the new space is made available.
1523 * Interrupt code which has preempted other code is not allowed to
1524 * use PQ_CACHE pages. However, if an interrupt thread is run
1525 * non-preemptively or blocks and then runs non-preemptively, then
1526 * it is free to use PQ_CACHE pages. <--- may not apply any longer XXX
1528 static void *
1529 kmem_slab_alloc(vm_size_t size, vm_offset_t align, int flags)
1531 vm_size_t i;
1532 vm_offset_t addr;
1533 int count, vmflags, base_vmflags;
1534 vm_page_t mbase = NULL;
1535 vm_page_t m;
1536 thread_t td;
1538 size = round_page(size);
1539 addr = vm_map_min(&kernel_map);
1541 count = vm_map_entry_reserve(MAP_RESERVE_COUNT);
1542 crit_enter();
1543 vm_map_lock(&kernel_map);
1544 if (vm_map_findspace(&kernel_map, addr, size, align, 0, &addr)) {
1545 vm_map_unlock(&kernel_map);
1546 if ((flags & M_NULLOK) == 0)
1547 panic("kmem_slab_alloc(): kernel_map ran out of space!");
1548 vm_map_entry_release(count);
1549 crit_exit();
1550 return(NULL);
1554 * kernel_object maps 1:1 to kernel_map.
1556 vm_object_hold(&kernel_object);
1557 vm_object_reference_locked(&kernel_object);
1558 vm_map_insert(&kernel_map, &count,
1559 &kernel_object, NULL,
1560 addr, addr, addr + size,
1561 VM_MAPTYPE_NORMAL,
1562 VM_SUBSYS_KMALLOC,
1563 VM_PROT_ALL, VM_PROT_ALL, 0);
1564 vm_object_drop(&kernel_object);
1565 vm_map_set_wired_quick(&kernel_map, addr, size, &count);
1566 vm_map_unlock(&kernel_map);
1568 td = curthread;
1570 base_vmflags = 0;
1571 if (flags & M_ZERO)
1572 base_vmflags |= VM_ALLOC_ZERO;
1573 if (flags & M_USE_RESERVE)
1574 base_vmflags |= VM_ALLOC_SYSTEM;
1575 if (flags & M_USE_INTERRUPT_RESERVE)
1576 base_vmflags |= VM_ALLOC_INTERRUPT;
1577 if ((flags & (M_RNOWAIT|M_WAITOK)) == 0) {
1578 panic("kmem_slab_alloc: bad flags %08x (%p)",
1579 flags, ((int **)&size)[-1]);
1583 * Allocate the pages. Do not map them yet. VM_ALLOC_NORMAL can only
1584 * be set if we are not preempting.
1586 * VM_ALLOC_SYSTEM is automatically set if we are preempting and
1587 * M_WAITOK was specified as an alternative (i.e. M_USE_RESERVE is
1588 * implied in this case), though I'm not sure if we really need to
1589 * do that.
1591 vmflags = base_vmflags;
1592 if (flags & M_WAITOK) {
1593 if (td->td_preempted)
1594 vmflags |= VM_ALLOC_SYSTEM;
1595 else
1596 vmflags |= VM_ALLOC_NORMAL;
1599 vm_object_hold(&kernel_object);
1600 for (i = 0; i < size; i += PAGE_SIZE) {
1601 m = vm_page_alloc(&kernel_object, OFF_TO_IDX(addr + i), vmflags);
1602 if (i == 0)
1603 mbase = m;
1606 * If the allocation failed we either return NULL or we retry.
1608 * If M_WAITOK is specified we wait for more memory and retry.
1609 * If M_WAITOK is specified from a preemption we yield instead of
1610 * wait. Livelock will not occur because the interrupt thread
1611 * will not be preempting anyone the second time around after the
1612 * yield.
1614 if (m == NULL) {
1615 if (flags & M_WAITOK) {
1616 if (td->td_preempted) {
1617 lwkt_switch();
1618 } else {
1619 vm_wait(0);
1621 i -= PAGE_SIZE; /* retry */
1622 continue;
1624 break;
1629 * Check and deal with an allocation failure
1631 if (i != size) {
1632 while (i != 0) {
1633 i -= PAGE_SIZE;
1634 m = vm_page_lookup(&kernel_object, OFF_TO_IDX(addr + i));
1635 /* page should already be busy */
1636 vm_page_free(m);
1638 vm_map_lock(&kernel_map);
1639 vm_map_delete(&kernel_map, addr, addr + size, &count);
1640 vm_map_unlock(&kernel_map);
1641 vm_object_drop(&kernel_object);
1643 vm_map_entry_release(count);
1644 crit_exit();
1645 return(NULL);
1649 * Success!
1651 * NOTE: The VM pages are still busied. mbase points to the first one
1652 * but we have to iterate via vm_page_next()
1654 vm_object_drop(&kernel_object);
1655 crit_exit();
1658 * Enter the pages into the pmap and deal with M_ZERO.
1660 m = mbase;
1661 i = 0;
1663 while (i < size) {
1665 * page should already be busy
1667 m->valid = VM_PAGE_BITS_ALL;
1668 vm_page_wire(m);
1669 pmap_enter(&kernel_pmap, addr + i, m,
1670 VM_PROT_ALL | VM_PROT_NOSYNC, 1, NULL);
1671 if (flags & M_ZERO)
1672 pagezero((char *)addr + i);
1673 KKASSERT(m->flags & (PG_WRITEABLE | PG_MAPPED));
1674 vm_page_flag_set(m, PG_REFERENCED);
1675 vm_page_wakeup(m);
1677 i += PAGE_SIZE;
1678 vm_object_hold(&kernel_object);
1679 m = vm_page_next(m);
1680 vm_object_drop(&kernel_object);
1682 smp_invltlb();
1683 vm_map_entry_release(count);
1684 atomic_add_long(&SlabsAllocated, 1);
1685 return((void *)addr);
1689 * kmem_slab_free()
1691 static void
1692 kmem_slab_free(void *ptr, vm_size_t size)
1694 crit_enter();
1695 vm_map_remove(&kernel_map, (vm_offset_t)ptr, (vm_offset_t)ptr + size);
1696 atomic_add_long(&SlabsFreed, 1);
1697 crit_exit();
1700 void *
1701 kmalloc_cachealign(unsigned long size_alloc, struct malloc_type *type,
1702 int flags)
1704 #if (__VM_CACHELINE_SIZE == 32)
1705 #define CAN_CACHEALIGN(sz) ((sz) >= 256)
1706 #elif (__VM_CACHELINE_SIZE == 64)
1707 #define CAN_CACHEALIGN(sz) ((sz) >= 512)
1708 #elif (__VM_CACHELINE_SIZE == 128)
1709 #define CAN_CACHEALIGN(sz) ((sz) >= 1024)
1710 #else
1711 #error "unsupported cacheline size"
1712 #endif
1714 void *ret;
1716 if (size_alloc < __VM_CACHELINE_SIZE)
1717 size_alloc = __VM_CACHELINE_SIZE;
1718 else if (!CAN_CACHEALIGN(size_alloc))
1719 flags |= M_POWEROF2;
1721 ret = kmalloc(size_alloc, type, flags);
1722 KASSERT(((uintptr_t)ret & (__VM_CACHELINE_SIZE - 1)) == 0,
1723 ("%p(%lu) not cacheline %d aligned",
1724 ret, size_alloc, __VM_CACHELINE_SIZE));
1725 return ret;
1727 #undef CAN_CACHEALIGN