| Commit message (Expand) | Author | Age | Files | Lines |
* | If we're passed garbage in malloc_init(), panic() rather than expecting | brian | 2009-06-05 | 1 | -3/+7 |
* | Retire kern.vm.kmem.size. It was marked as obsolete prior to 5.2, so | imp | 2009-05-09 | 1 | -4/+0 |
* | struct malloc_type has had a 'magic' field statically initialized to | rwatson | 2009-04-19 | 1 | -1/+13 |
* | Remove even more unneeded variable assignments. | ed | 2009-02-26 | 1 | -2/+0 |
* | - Make the keg abstraction more complete. Permit a zone to have multiple | jeff | 2009-01-25 | 1 | -4/+1 |
* | Enable the creation of a kmem map larger than 4GB. | alc | 2008-07-05 | 1 | -11/+11 |
* | Correct an error in the comments for init_param3(). | alc | 2008-07-04 | 1 | -1/+1 |
* | Add support for the DTrace malloc provider which can enable probes | jb | 2008-05-23 | 1 | -0/+63 |
* | Introduce a new parameter "superpage_align" to kmem_suballoc() that is | alc | 2008-05-10 | 1 | -1/+1 |
* | In keeping with style(9)'s recommendations on macros, use a ';' | rwatson | 2008-03-16 | 1 | -1/+1 |
* | Use vm_offset_t for kmembase and kmemlimit rather than char *, avoiding | rwatson | 2007-06-27 | 1 | -4/+4 |
* | Spell statistics more correctly in comments. | rwatson | 2007-06-14 | 1 | -1/+1 |
* | Revert VMCNT_* operations introduction. | attilio | 2007-05-31 | 1 | -5/+4 |
* | Remove #if 0'd check for 0-size allocations, which if enabled, called | rwatson | 2007-05-27 | 1 | -4/+0 |
* | - define and use VMCNT_{GET,SET,ADD,SUB,PTR} macros for manipulating | jeff | 2007-05-18 | 1 | -4/+5 |
* | Add support for specifying a minimal size for vm.kmem_size in the loader via | sepotvin | 2007-04-21 | 1 | -0/+12 |
* | Increase usefulness of "show malloc" by moving from displaying the basic | rwatson | 2006-10-26 | 1 | -5/+11 |
* | Remove old kern.malloc sysctl, which generated a text representation of | rwatson | 2006-07-23 | 1 | -104/+0 |
* | Expand comments for malloc(9) to better describe the design and | rwatson | 2006-07-23 | 1 | -8/+44 |
* | Fix bug in malloc_uninit(): | ps | 2006-03-03 | 1 | -1/+3 |
* | Add buffer corruption protection (RedZone) for kernel's malloc(9). | pjd | 2006-01-31 | 1 | -1/+22 |
* | Improve memguard a bit: | pjd | 2005-12-30 | 1 | -13/+17 |
* | In realloc(9), determine size of the original block based on | pjd | 2005-12-28 | 1 | -1/+1 |
* | Detect memory leaks when memory type is being destroyed. | pjd | 2005-11-03 | 1 | -0/+21 |
* | Change format string for u_int64_t to %ju from %llu, in order to use the | rwatson | 2005-10-20 | 1 | -1/+1 |
* | Add a "show malloc" command to DDB, which prints out the current stats for | rwatson | 2005-10-20 | 1 | -0/+27 |
* | Long overdue, keep up with mbuf.h,v 1.148. | ru | 2005-08-02 | 1 | -3/+2 |
* | Fix the way how "InUse" column in 'vmstat -m' output works: | pjd | 2005-07-27 | 1 | -3/+6 |
* | Correct build on 64-bit: cast u_int64_t to (unsigned long long) before | rwatson | 2005-07-14 | 1 | -1/+1 |
* | Introduce a new sysctl, kern.malloc_stats, which exports kernel malloc | rwatson | 2005-07-14 | 1 | -5/+93 |
* | Remove a variable that became unused as a result of changes made | kensmith | 2005-06-16 | 1 | -1/+0 |
* | Fix typo. | jkoshy | 2005-06-10 | 1 | -1/+1 |
* | Kernel malloc layers malloc_type allocation over one of two underlying | rwatson | 2005-05-29 | 1 | -130/+159 |
* | Consistently style function declarations in kern_malloc.c. | rwatson | 2005-04-12 | 1 | -23/+7 |
* | Bring in MemGuard, a very simple and small replacement allocator | bmilekic | 2005-01-21 | 1 | -0/+53 |
* | /* -> /*- for copyright notices, minor format tweaks as necessary | imp | 2005-01-06 | 1 | -1/+1 |
* | Turn VM_KMEM_SIZE_MAX and VM_KMEM_SIZE_SCALE into tunables. | des | 2004-09-29 | 1 | -4/+17 |
* | Reimplement contigmalloc(9) with an algorithm which stands a greatly- | green | 2004-07-19 | 1 | -27/+47 |
* | Update for the KDB framework: | marcel | 2004-07-10 | 1 | -2/+3 |
* | Bring in mbuma to replace mballoc. | bmilekic | 2004-05-31 | 1 | -17/+10 |
* | Remove advertising clause from University of California Regent's license, | imp | 2004-04-05 | 1 | -4/+0 |
* | Rename the kern.vm.kmem.size tunable to the more logical vm.kmem_size. To | des | 2004-01-27 | 1 | -1/+7 |
* | - Only use UMA to cache malloc requests up to PAGE_SIZE. Values larger than | jeff | 2003-09-19 | 1 | -1/+12 |
* | Revert stuff which accidentally ended up in the previous commit. | phk | 2003-07-22 | 1 | -6/+3 |
* | Don't attempt to inline large functions mb_alloc() and mb_free(), | phk | 2003-07-22 | 1 | -3/+6 |
* | Add init_param3() to subr_param. This function is called | silby | 2003-07-11 | 1 | -0/+5 |
* | Don't overflow when calculating vm_kmem_size. This fixes kmem_map | ps | 2003-06-11 | 1 | -4/+4 |
* | Use __FBSDID(). | obrien | 2003-06-11 | 1 | -1/+3 |
* | Don't pass NULL pointer to memset if we are compiled with DIAGNOSTIC | phk | 2003-05-12 | 1 | -4/+3 |
* | Add two KASSERTS which trigger if free(9) would drag the "memuse" statistic | phk | 2003-05-05 | 1 | -0/+6 |