__P() removal
[dragonfly.git] / sys / kern / kern_malloc.c
1 /*
2  * Copyright (c) 1987, 1991, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *      @(#)kern_malloc.c       8.3 (Berkeley) 1/4/94
34  * $FreeBSD: src/sys/kern/kern_malloc.c,v 1.64.2.5 2002/03/16 02:19:51 archie Exp $
35  * $DragonFly: src/sys/kern/Attic/kern_malloc.c,v 1.11 2003/08/26 21:09:02 rob Exp $
36  */
37
38 #include "opt_vm.h"
39
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/kernel.h>
43 #include <sys/malloc.h>
44 #include <sys/mbuf.h>
45 #include <sys/vmmeter.h>
46 #include <sys/lock.h>
47 #include <sys/thread.h>
48 #include <sys/globaldata.h>
49
50 #include <vm/vm.h>
51 #include <vm/vm_param.h>
52 #include <vm/vm_kern.h>
53 #include <vm/vm_extern.h>
54 #include <vm/pmap.h>
55 #include <vm/vm_map.h>
56
57 #if defined(INVARIANTS) && defined(__i386__)
58 #include <machine/cpu.h>
59 #endif
60
61 /*
62  * When realloc() is called, if the new size is sufficiently smaller than
63  * the old size, realloc() will allocate a new, smaller block to avoid
64  * wasting memory. 'Sufficiently smaller' is defined as: newsize <=
65  * oldsize / 2^n, where REALLOC_FRACTION defines the value of 'n'.
66  */
67 #ifndef REALLOC_FRACTION
68 #define REALLOC_FRACTION        1       /* new block if <= half the size */
69 #endif
70
71 MALLOC_DEFINE(M_CACHE, "cache", "Various Dynamically allocated caches");
72 MALLOC_DEFINE(M_DEVBUF, "devbuf", "device driver memory");
73 MALLOC_DEFINE(M_TEMP, "temp", "misc temporary data buffers");
74
75 MALLOC_DEFINE(M_IP6OPT, "ip6opt", "IPv6 options");
76 MALLOC_DEFINE(M_IP6NDP, "ip6ndp", "IPv6 Neighbor Discovery");
77
78 static void kmeminit (void *);
79 SYSINIT(kmem, SI_SUB_KMEM, SI_ORDER_FIRST, kmeminit, NULL)
80
81 static MALLOC_DEFINE(M_FREE, "free", "should be on free list");
82
83 static struct malloc_type *kmemstatistics;
84 static struct kmembuckets bucket[MINBUCKET + 16];
85 static struct kmemusage *kmemusage;
86 #if defined(NO_KMEM_MAP)
87 static const char *kmembase = (char *)VM_MIN_KERNEL_ADDRESS;
88 static const char *kmemlimit = (char *)VM_MAX_KERNEL_ADDRESS;
89 #else
90 static char *kmembase;
91 static char *kmemlimit;
92 #endif
93
94 #if !defined(NO_KMEM_MAP)
95 u_int vm_kmem_size;
96 #endif
97
98 #ifdef INVARIANTS
99 /*
100  * This structure provides a set of masks to catch unaligned frees.
101  */
102 static long addrmask[] = { 0,
103         0x00000001, 0x00000003, 0x00000007, 0x0000000f,
104         0x0000001f, 0x0000003f, 0x0000007f, 0x000000ff,
105         0x000001ff, 0x000003ff, 0x000007ff, 0x00000fff,
106         0x00001fff, 0x00003fff, 0x00007fff, 0x0000ffff,
107 };
108
109 /*
110  * The WEIRD_ADDR is used as known text to copy into free objects so
111  * that modifications after frees can be detected.
112  */
113 #define WEIRD_ADDR      0xdeadc0de
114 #define MAX_COPY        64
115
116 /*
117  * Normally the first word of the structure is used to hold the list
118  * pointer for free objects. However, when running with diagnostics,
119  * we use the third and fourth fields, so as to catch modifications
120  * in the most commonly trashed first two words.
121  */
122 struct freelist {
123         long    spare0;
124         struct malloc_type *type;
125         long    spare1;
126         caddr_t next;
127 };
128 #else /* !INVARIANTS */
129 struct freelist {
130         caddr_t next;
131 };
132 #endif /* INVARIANTS */
133
134 /*
135  *      malloc:
136  *
137  *      Allocate a block of memory.
138  *
139  *      If M_NOWAIT is set, this routine will not block and return NULL if
140  *      the allocation fails.
141  */
142 void *
143 malloc(size, type, flags)
144         unsigned long size;
145         struct malloc_type *type;
146         int flags;
147 {
148         struct kmembuckets *kbp;
149         struct kmemusage *kup;
150         struct freelist *freep;
151         long indx, npg, allocsize;
152         int s;
153         caddr_t va, cp, savedlist;
154 #ifdef INVARIANTS
155         long *end, *lp;
156         int copysize;
157         const char *savedtype;
158 #endif
159         struct malloc_type *ksp = type;
160
161 #if defined(INVARIANTS)
162         if (mycpu->gd_intr_nesting_level)
163                 printf("WARNING: malloc() called from FASTint or ipiq, from %p\n", ((int **)&size)[-1]);
164         if (flags == M_WAITOK) {
165                 KASSERT(mycpu->gd_intr_nesting_level == 0,
166                    ("malloc(M_WAITOK) in interrupt context"));
167         }
168 #endif
169         /*
170          * Must be at splmem() prior to initializing segment to handle
171          * potential initialization race.
172          */
173
174         s = splmem();
175
176         if (type->ks_limit == 0)
177                 malloc_init(type);
178
179         indx = BUCKETINDX(size);
180         kbp = &bucket[indx];
181
182         restart:
183         while (ksp->ks_memuse >= ksp->ks_limit) {
184                 if (flags & M_NOWAIT) {
185                         splx(s);
186                         return ((void *) NULL);
187                 }
188                 if (ksp->ks_limblocks < 65535)
189                         ksp->ks_limblocks++;
190                 tsleep((caddr_t)ksp, 0, type->ks_shortdesc, 0);
191         }
192         ksp->ks_size |= 1 << indx;
193 #ifdef INVARIANTS
194         copysize = 1 << indx < MAX_COPY ? 1 << indx : MAX_COPY;
195 #endif
196         if (kbp->kb_next == NULL) {
197                 kbp->kb_last = NULL;
198                 if (size > MAXALLOCSAVE)
199                         allocsize = roundup(size, PAGE_SIZE);
200                 else
201                         allocsize = 1 << indx;
202                 npg = btoc(allocsize);
203 #if defined(NO_KMEM_MAP)
204                 va = (caddr_t) kmem_malloc(kernel_map,
205                                     (vm_size_t)ctob(npg), flags);
206 #else
207                 va = (caddr_t) kmem_malloc(kmem_map,
208                                     (vm_size_t)ctob(npg), flags);
209 #endif
210                 if (va == NULL) {
211                         splx(s);
212                         return ((void *) NULL);
213                 }
214                 kbp->kb_total += kbp->kb_elmpercl;
215                 kup = btokup(va);
216                 kup->ku_indx = indx;
217                 if (allocsize > MAXALLOCSAVE) {
218                         if (npg > 65535)
219                                 panic("malloc: allocation too large");
220                         kup->ku_pagecnt = npg;
221                         ksp->ks_memuse += allocsize;
222                         goto out;
223                 }
224                 kup->ku_freecnt = kbp->kb_elmpercl;
225                 kbp->kb_totalfree += kbp->kb_elmpercl;
226                 /*
227                  * Just in case we blocked while allocating memory,
228                  * and someone else also allocated memory for this
229                  * bucket, don't assume the list is still empty.
230                  */
231                 savedlist = kbp->kb_next;
232                 kbp->kb_next = cp = va + (npg * PAGE_SIZE) - allocsize;
233                 for (;;) {
234                         freep = (struct freelist *)cp;
235 #ifdef INVARIANTS
236                         /*
237                          * Copy in known text to detect modification
238                          * after freeing.
239                          */
240                         end = (long *)&cp[copysize];
241                         for (lp = (long *)cp; lp < end; lp++)
242                                 *lp = WEIRD_ADDR;
243                         freep->type = M_FREE;
244 #endif /* INVARIANTS */
245                         if (cp <= va)
246                                 break;
247                         cp -= allocsize;
248                         freep->next = cp;
249                 }
250                 freep->next = savedlist;
251                 if (kbp->kb_last == NULL)
252                         kbp->kb_last = (caddr_t)freep;
253         }
254         va = kbp->kb_next;
255         if (va == NULL) {
256                 if (flags & M_NOWAIT) {
257                         splx(s);
258                         return ((void *) NULL);
259                 }
260                 goto restart;
261         }
262         kbp->kb_next = ((struct freelist *)va)->next;
263 #ifdef INVARIANTS
264         freep = (struct freelist *)va;
265         savedtype = (const char *) freep->type->ks_shortdesc;
266 #if BYTE_ORDER == BIG_ENDIAN
267         freep->type = (struct malloc_type *)WEIRD_ADDR >> 16;
268 #endif
269 #if BYTE_ORDER == LITTLE_ENDIAN
270         freep->type = (struct malloc_type *)WEIRD_ADDR;
271 #endif
272         if ((intptr_t)(void *)&freep->next & 0x2)
273                 freep->next = (caddr_t)((WEIRD_ADDR >> 16)|(WEIRD_ADDR << 16));
274         else
275                 freep->next = (caddr_t)WEIRD_ADDR;
276         end = (long *)&va[copysize];
277         for (lp = (long *)va; lp < end; lp++) {
278                 if (*lp == WEIRD_ADDR)
279                         continue;
280                 printf("%s %ld of object %p size %lu %s %s (0x%lx != 0x%lx)\n",
281                         "Data modified on freelist: word",
282                         (long)(lp - (long *)va), (void *)va, size,
283                         "previous type", savedtype, *lp, (u_long)WEIRD_ADDR);
284                 break;
285         }
286         freep->spare0 = 0;
287 #endif /* INVARIANTS */
288         kup = btokup(va);
289         if (kup->ku_indx != indx)
290                 panic("malloc: wrong bucket");
291         if (kup->ku_freecnt == 0)
292                 panic("malloc: lost data");
293         kup->ku_freecnt--;
294         kbp->kb_totalfree--;
295         ksp->ks_memuse += 1 << indx;
296 out:
297         kbp->kb_calls++;
298         ksp->ks_inuse++;
299         ksp->ks_calls++;
300         if (ksp->ks_memuse > ksp->ks_maxused)
301                 ksp->ks_maxused = ksp->ks_memuse;
302         splx(s);
303         /* XXX: Do idle pre-zeroing.  */
304         if (va != NULL && (flags & M_ZERO))
305                 bzero(va, size);
306         return ((void *) va);
307 }
308
309 /*
310  *      free:
311  *
312  *      Free a block of memory allocated by malloc.
313  *
314  *      This routine may not block.
315  */
316 void
317 free(addr, type)
318         void *addr;
319         struct malloc_type *type;
320 {
321         struct kmembuckets *kbp;
322         struct kmemusage *kup;
323         struct freelist *freep;
324         long size;
325         int s;
326 #ifdef INVARIANTS
327         struct freelist *fp;
328         long *end, *lp, alloc, copysize;
329 #endif
330         struct malloc_type *ksp = type;
331
332         if (type->ks_limit == 0)
333                 panic("freeing with unknown type (%s)", type->ks_shortdesc);
334
335         /* free(NULL, ...) does nothing */
336         if (addr == NULL)
337                 return;
338
339         KASSERT(kmembase <= (char *)addr && (char *)addr < kmemlimit,
340             ("free: address %p out of range", (void *)addr));
341         kup = btokup(addr);
342         size = 1 << kup->ku_indx;
343         kbp = &bucket[kup->ku_indx];
344         s = splmem();
345 #ifdef INVARIANTS
346         /*
347          * Check for returns of data that do not point to the
348          * beginning of the allocation.
349          */
350         if (size > PAGE_SIZE)
351                 alloc = addrmask[BUCKETINDX(PAGE_SIZE)];
352         else
353                 alloc = addrmask[kup->ku_indx];
354         if (((uintptr_t)(void *)addr & alloc) != 0)
355                 panic("free: unaligned addr %p, size %ld, type %s, mask %ld",
356                     (void *)addr, size, type->ks_shortdesc, alloc);
357 #endif /* INVARIANTS */
358         if (size > MAXALLOCSAVE) {
359 #if defined(NO_KMEM_MAP)
360                 kmem_free(kernel_map, (vm_offset_t)addr, ctob(kup->ku_pagecnt));
361 #else
362                 kmem_free(kmem_map, (vm_offset_t)addr, ctob(kup->ku_pagecnt));
363 #endif
364                 size = kup->ku_pagecnt << PAGE_SHIFT;
365                 ksp->ks_memuse -= size;
366                 kup->ku_indx = 0;
367                 kup->ku_pagecnt = 0;
368                 if (ksp->ks_memuse + size >= ksp->ks_limit &&
369                     ksp->ks_memuse < ksp->ks_limit)
370                         wakeup((caddr_t)ksp);
371                 ksp->ks_inuse--;
372                 kbp->kb_total -= 1;
373                 splx(s);
374                 return;
375         }
376         freep = (struct freelist *)addr;
377 #ifdef INVARIANTS
378         /*
379          * Check for multiple frees. Use a quick check to see if
380          * it looks free before laboriously searching the freelist.
381          */
382         if (freep->spare0 == WEIRD_ADDR) {
383                 fp = (struct freelist *)kbp->kb_next;
384                 while (fp) {
385                         if (fp->spare0 != WEIRD_ADDR)
386                                 panic("free: free item %p modified", fp);
387                         else if (addr == (caddr_t)fp)
388                                 panic("free: multiple freed item %p", addr);
389                         fp = (struct freelist *)fp->next;
390                 }
391         }
392         /*
393          * Copy in known text to detect modification after freeing
394          * and to make it look free. Also, save the type being freed
395          * so we can list likely culprit if modification is detected
396          * when the object is reallocated.
397          */
398         copysize = size < MAX_COPY ? size : MAX_COPY;
399         end = (long *)&((caddr_t)addr)[copysize];
400         for (lp = (long *)addr; lp < end; lp++)
401                 *lp = WEIRD_ADDR;
402         freep->type = type;
403 #endif /* INVARIANTS */
404         kup->ku_freecnt++;
405         if (kup->ku_freecnt >= kbp->kb_elmpercl) {
406                 if (kup->ku_freecnt > kbp->kb_elmpercl)
407                         panic("free: multiple frees");
408                 else if (kbp->kb_totalfree > kbp->kb_highwat)
409                         kbp->kb_couldfree++;
410         }
411         kbp->kb_totalfree++;
412         ksp->ks_memuse -= size;
413         if (ksp->ks_memuse + size >= ksp->ks_limit &&
414             ksp->ks_memuse < ksp->ks_limit)
415                 wakeup((caddr_t)ksp);
416         ksp->ks_inuse--;
417 #ifdef OLD_MALLOC_MEMORY_POLICY
418         if (kbp->kb_next == NULL)
419                 kbp->kb_next = addr;
420         else
421                 ((struct freelist *)kbp->kb_last)->next = addr;
422         freep->next = NULL;
423         kbp->kb_last = addr;
424 #else
425         /*
426          * Return memory to the head of the queue for quick reuse.  This
427          * can improve performance by improving the probability of the
428          * item being in the cache when it is reused.
429          */
430         if (kbp->kb_next == NULL) {
431                 kbp->kb_next = addr;
432                 kbp->kb_last = addr;
433                 freep->next = NULL;
434         } else {
435                 freep->next = kbp->kb_next;
436                 kbp->kb_next = addr;
437         }
438 #endif
439         splx(s);
440 }
441
442 /*
443  *      realloc: change the size of a memory block
444  */
445 void *
446 realloc(addr, size, type, flags)
447         void *addr;
448         unsigned long size;
449         struct malloc_type *type;
450         int flags;
451 {
452         struct kmemusage *kup;
453         unsigned long alloc;
454         void *newaddr;
455
456         /* realloc(NULL, ...) is equivalent to malloc(...) */
457         if (addr == NULL)
458                 return (malloc(size, type, flags));
459
460         /* Sanity check */
461         KASSERT(kmembase <= (char *)addr && (char *)addr < kmemlimit,
462             ("realloc: address %p out of range", (void *)addr));
463
464         /* Get the size of the original block */
465         kup = btokup(addr);
466         alloc = 1 << kup->ku_indx;
467         if (alloc > MAXALLOCSAVE)
468                 alloc = kup->ku_pagecnt << PAGE_SHIFT;
469
470         /* Reuse the original block if appropriate */
471         if (size <= alloc
472             && (size > (alloc >> REALLOC_FRACTION) || alloc == MINALLOCSIZE))
473                 return (addr);
474
475         /* Allocate a new, bigger (or smaller) block */
476         if ((newaddr = malloc(size, type, flags)) == NULL)
477                 return (NULL);
478
479         /* Copy over original contents */
480         bcopy(addr, newaddr, min(size, alloc));
481         free(addr, type);
482         return (newaddr);
483 }
484
485 /*
486  *      reallocf: same as realloc() but free memory on failure.
487  */
488 void *
489 reallocf(addr, size, type, flags)
490         void *addr;
491         unsigned long size;
492         struct malloc_type *type;
493         int flags;
494 {
495         void *mem;
496
497         if ((mem = realloc(addr, size, type, flags)) == NULL)
498                 free(addr, type);
499         return (mem);
500 }
501
502 /*
503  * Initialize the kernel memory allocator
504  */
505 /* ARGSUSED*/
506 static void
507 kmeminit(dummy)
508         void *dummy;
509 {
510         long indx;
511         u_long npg;
512         u_long mem_size;
513
514 #if     ((MAXALLOCSAVE & (MAXALLOCSAVE - 1)) != 0)
515 #error "kmeminit: MAXALLOCSAVE not power of 2"
516 #endif
517 #if     (MAXALLOCSAVE > MINALLOCSIZE * 32768)
518 #error "kmeminit: MAXALLOCSAVE too big"
519 #endif
520 #if     (MAXALLOCSAVE < PAGE_SIZE)
521 #error "kmeminit: MAXALLOCSAVE too small"
522 #endif
523
524         /*
525          * Try to auto-tune the kernel memory size, so that it is
526          * more applicable for a wider range of machine sizes.
527          * On an X86, a VM_KMEM_SIZE_SCALE value of 4 is good, while
528          * a VM_KMEM_SIZE of 12MB is a fair compromise.  The
529          * VM_KMEM_SIZE_MAX is dependent on the maximum KVA space
530          * available, and on an X86 with a total KVA space of 256MB,
531          * try to keep VM_KMEM_SIZE_MAX at 80MB or below.
532          *
533          * Note that the kmem_map is also used by the zone allocator,
534          * so make sure that there is enough space.
535          */
536         mem_size = vmstats.v_page_count * PAGE_SIZE;
537
538 #if !defined(NO_KMEM_MAP)
539         vm_kmem_size = VM_KMEM_SIZE;
540 #if defined(VM_KMEM_SIZE_SCALE)
541         if ((mem_size / VM_KMEM_SIZE_SCALE) > vm_kmem_size)
542                 vm_kmem_size = mem_size / VM_KMEM_SIZE_SCALE;
543 #endif
544
545 #if defined(VM_KMEM_SIZE_MAX)
546         if (vm_kmem_size >= VM_KMEM_SIZE_MAX)
547                 vm_kmem_size = VM_KMEM_SIZE_MAX;
548 #endif
549
550         /* Allow final override from the kernel environment */
551         TUNABLE_INT_FETCH("kern.vm.kmem.size", &vm_kmem_size);
552
553         /*
554          * Limit kmem virtual size to twice the physical memory.
555          * This allows for kmem map sparseness, but limits the size
556          * to something sane. Be careful to not overflow the 32bit
557          * ints while doing the check.
558          */
559         if ((vm_kmem_size / 2) > (vmstats.v_page_count * PAGE_SIZE))
560                 vm_kmem_size = 2 * vmstats.v_page_count * PAGE_SIZE;
561
562         npg = (nmbufs * MSIZE + nmbclusters * MCLBYTES + vm_kmem_size)
563                 / PAGE_SIZE;
564
565         kmemusage = (struct kmemusage *) kmem_alloc(kernel_map,
566                 (vm_size_t)(npg * sizeof(struct kmemusage)));
567         kmem_map = kmem_suballoc(kernel_map, (vm_offset_t *)&kmembase,
568                 (vm_offset_t *)&kmemlimit, (vm_size_t)(npg * PAGE_SIZE));
569         kmem_map->system_map = 1;
570 #else
571         npg = (VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS) / PAGE_SIZE;
572         kmemusage = (struct kmemusage *) kmem_alloc(kernel_map,
573                 (vm_size_t)(npg * sizeof(struct kmemusage)));
574 #endif
575         for (indx = 0; indx < MINBUCKET + 16; indx++) {
576                 if (1 << indx >= PAGE_SIZE)
577                         bucket[indx].kb_elmpercl = 1;
578                 else
579                         bucket[indx].kb_elmpercl = PAGE_SIZE / (1 << indx);
580                 bucket[indx].kb_highwat = 5 * bucket[indx].kb_elmpercl;
581         }
582 }
583
584 void
585 malloc_init(data)
586         void *data;
587 {
588         struct malloc_type *type = (struct malloc_type *)data;
589 #if defined(NO_KMEM_MAP)
590         uintptr_t limsize;
591 #endif
592
593         if (type->ks_magic != M_MAGIC)
594                 panic("malloc type lacks magic");
595
596         if (type->ks_limit != 0)
597                 return;
598
599         if (vmstats.v_page_count == 0)
600                 panic("malloc_init not allowed before vm init");
601
602         /*
603          * The default limits for each malloc region is 1/10 of available
604          * memory or 1/10 of our KVA space, whichever is lower.
605          */
606 #if defined(NO_KMEM_MAP)
607         limsize = (uintptr_t)vmstats.v_page_count * PAGE_SIZE;
608         if (limsize > VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS)
609                 limsize = VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS;
610         type->ks_limit = limsize / 10;
611 #else
612         type->ks_limit = vm_kmem_size / 2;
613 #endif
614         type->ks_next = kmemstatistics; 
615         kmemstatistics = type;
616 }
617
618 void
619 malloc_uninit(data)
620         void *data;
621 {
622         struct malloc_type *type = (struct malloc_type *)data;
623         struct malloc_type *t;
624 #ifdef INVARIANTS
625         struct kmembuckets *kbp;
626         struct freelist *freep;
627         long indx;
628         int s;
629 #endif
630
631         if (type->ks_magic != M_MAGIC)
632                 panic("malloc type lacks magic");
633
634         if (vmstats.v_page_count == 0)
635                 panic("malloc_uninit not allowed before vm init");
636
637         if (type->ks_limit == 0)
638                 panic("malloc_uninit on uninitialized type");
639
640 #ifdef INVARIANTS
641         s = splmem();
642         for (indx = 0; indx < MINBUCKET + 16; indx++) {
643                 kbp = bucket + indx;
644                 freep = (struct freelist*)kbp->kb_next;
645                 while (freep) {
646                         if (freep->type == type)
647                                 freep->type = M_FREE;
648                         freep = (struct freelist*)freep->next;
649                 }
650         }
651         splx(s);
652
653         if (type->ks_memuse != 0)
654                 printf("malloc_uninit: %ld bytes of '%s' still allocated\n",
655                     type->ks_memuse, type->ks_shortdesc);
656 #endif
657
658         if (type == kmemstatistics)
659                 kmemstatistics = type->ks_next;
660         else {
661                 for (t = kmemstatistics; t->ks_next != NULL; t = t->ks_next) {
662                         if (t->ks_next == type) {
663                                 t->ks_next = type->ks_next;
664                                 break;
665                         }
666                 }
667         }
668         type->ks_next = NULL;
669         type->ks_limit = 0;
670 }