summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_malloc.c
Commit message (Expand)AuthorAgeFilesLines
* Fix bug in malloc_uninit():ps2006-03-031-1/+3
* Add buffer corruption protection (RedZone) for kernel's malloc(9).pjd2006-01-311-1/+22
* Improve memguard a bit:pjd2005-12-301-13/+17
* In realloc(9), determine size of the original block based onpjd2005-12-281-1/+1
* Detect memory leaks when memory type is being destroyed.pjd2005-11-031-0/+21
* Change format string for u_int64_t to %ju from %llu, in order to use therwatson2005-10-201-1/+1
* Add a "show malloc" command to DDB, which prints out the current stats forrwatson2005-10-201-0/+27
* Long overdue, keep up with mbuf.h,v 1.148.ru2005-08-021-3/+2
* Fix the way how "InUse" column in 'vmstat -m' output works:pjd2005-07-271-3/+6
* Correct build on 64-bit: cast u_int64_t to (unsigned long long) beforerwatson2005-07-141-1/+1
* Introduce a new sysctl, kern.malloc_stats, which exports kernel mallocrwatson2005-07-141-5/+93
* Remove a variable that became unused as a result of changes madekensmith2005-06-161-1/+0
* Fix typo.jkoshy2005-06-101-1/+1
* Kernel malloc layers malloc_type allocation over one of two underlyingrwatson2005-05-291-130/+159
* Consistently style function declarations in kern_malloc.c.rwatson2005-04-121-23/+7
* Bring in MemGuard, a very simple and small replacement allocatorbmilekic2005-01-211-0/+53
* /* -> /*- for copyright notices, minor format tweaks as necessaryimp2005-01-061-1/+1
* Turn VM_KMEM_SIZE_MAX and VM_KMEM_SIZE_SCALE into tunables.des2004-09-291-4/+17
* Reimplement contigmalloc(9) with an algorithm which stands a greatly-green2004-07-191-27/+47
* Update for the KDB framework:marcel2004-07-101-2/+3
* Bring in mbuma to replace mballoc.bmilekic2004-05-311-17/+10
* Remove advertising clause from University of California Regent's license,imp2004-04-051-4/+0
* Rename the kern.vm.kmem.size tunable to the more logical vm.kmem_size. Todes2004-01-271-1/+7
* - Only use UMA to cache malloc requests up to PAGE_SIZE. Values larger thanjeff2003-09-191-1/+12
* Revert stuff which accidentally ended up in the previous commit.phk2003-07-221-6/+3
* Don't attempt to inline large functions mb_alloc() and mb_free(),phk2003-07-221-3/+6
* Add init_param3() to subr_param. This function is calledsilby2003-07-111-0/+5
* Don't overflow when calculating vm_kmem_size. This fixes kmem_mapps2003-06-111-4/+4
* Use __FBSDID().obrien2003-06-111-1/+3
* Don't pass NULL pointer to memset if we are compiled with DIAGNOSTICphk2003-05-121-4/+3
* Add two KASSERTS which trigger if free(9) would drag the "memuse" statisticphk2003-05-051-0/+6
* Update the "last malloc failure timestamp" also for simulatedphk2003-04-251-0/+1
* Permit debug.malloc.failure_rate to be specified using a tunable sorwatson2003-03-261-0/+1
* Add a new kernel option, MALLOC_MAKE_FAILURES, which compilesrwatson2003-03-261-0/+26
* PHCC[1]:phk2003-03-101-2/+2
* Make malloc and mbuf allocation mode flags nonoverlapping.phk2003-03-101-1/+18
* o Allow "buckets" in mb_alloc to be differently sized (according tobmilekic2003-02-201-2/+1
* Back out M_* changes, per decision of the TRB.imp2003-02-191-4/+4
* Under #ifdef DIAGNOSTIC, fill malloc(9) allocations which do not havephk2003-02-011-0/+8
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.alfred2003-01-211-4/+4
* Introduce malloc_last_fail() which returns the number of seconds sincephk2002-11-011-0/+16
* - Split UMA_ZFLAG_OFFPAGE into UMA_ZFLAG_OFFPAGE and UMA_ZFLAG_HASH.jeff2002-09-181-33/+9
* - Replace the bandaid introduced in revision 1.110 withrobert2002-05-311-1/+3
* Add a bandaid so that sysctl kern.malloc works on sparc64.jake2002-05-201-1/+1
* Fix the td_intr_nesting_level check to work ok if a flag like M_ZERO isjhb2002-05-201-3/+1
* Hide a pointer to the malloc_type bucket at the end of the freed memory. Ifjeff2002-05-021-1/+19
* malloc/free(9) no longer require Giant. Use the malloc_mtx to protect thejeff2002-05-021-1/+21
* Remove the temporary alignment check in free().jeff2002-05-021-6/+0
* Convert longs to u_longs in stats. This will hold off wrap arounds for ajeff2002-04-301-1/+1
* Add a new UMA debugging facility. This will overwrite freed memory withjeff2002-04-301-2/+8
OpenPOWER on IntegriCloud