summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_malloc.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Remove some includes include-what-you-use claims don'tjsg2015-03-141-2/+1
* Include sys/stdint.h for SIZE_MAX instead of relying on the misplacedmillert2015-02-131-1/+2
* convert bcopy to memcpy. ok millerttedu2014-12-101-2/+2
* move arc4random prototype to systm.h. more appropriate for most codetedu2014-11-181-3/+1
* Replace a plethora of historical protection options with justderaadt2014-11-161-2/+2
* need to calculate correct size before doing the free checks. the biggesttedu2014-11-061-2/+3
* let ramdisks compilederaadt2014-11-061-2/+5
* need to move lock up to prevent more than one malloc. ok guenthertedu2014-11-051-8/+6
* don't use loop variable (i) for not loop things. use a new var.tedu2014-11-051-4/+5
* use memname to print string of type. stolen from deraadttedu2014-11-051-5/+5
* also print type when free size is wrongtedu2014-11-051-4/+5
* tweak free panic messages tootedu2014-11-021-3/+3
* tweak panic messages for consistencytedu2014-11-021-3/+3
* remove uneeded proc.h includesjsg2014-09-141-2/+1
* if the freedsize isn't zero, check that's reasonable. ok becktedu2014-07-131-2/+7
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-2/+2
* instead of defining two versions of bucketidx, just don't inline for small.tedu2014-07-101-14/+6
* Add mallocarray(9)matthew2014-07-101-2/+36
* pool_debug still needed for non-DIAGNOSTIC kernelsderaadt2014-07-101-2/+2
* hide the biglock thrashing under pool_debug so it can be turned offtedu2014-07-101-2/+2
* you've had 12+ years to update your kernel config.daniel2014-06-211-5/+1
* consistent use of uint32_t for poison valuestedu2014-05-191-2/+2
* if it's ok to wait, it must also be ok to give the kernel lock. do so.tedu2014-04-031-3/+7
* Reduce uvm include madness. Use <uvm/uvm_extern.h> instead ofmpi2014-03-281-2/+2
* bzero -> memsettedu2014-01-211-3/+3
* Uncomment kprintf format attributes for sys/kernsyl2013-08-081-2/+2
* permit free(NULL) to work. ok deraadttedu2013-07-041-1/+4
* open up some races. if pool_debug == 2, force a yield() whenever waitok.tedu2013-05-311-2/+8
* switch the malloc and pool freelists to using xor simpleq.tedu2013-05-031-11/+13
* shuffle around some poison code, prototypes, values...tedu2013-04-061-13/+18
* separate memory poisoning code to a new file and make it usable kernel widetedu2013-03-281-48/+15
* replace kern malloc's hand rolled freelist with simpleq macros.tedu2013-03-261-65/+31
* use PAGE_SHIFT instead of PGSHIFTderaadt2013-03-211-2/+2
* factor out the deadbeef code for legibility.tedu2013-03-151-37/+51
* Comment out recently added __attribute__((__format__(__kprintf__))) annotationsmiod2013-02-171-2/+2
* Add explicit __attribute__ ((__format__(__kprintf__)))) to the functions andmiod2013-02-091-5/+6
* Expand the panic to show the malloc type and size. Okay deraadt@.pirofti2012-03-301-2/+3
* New vmmap implementation.ariane2012-03-091-3/+8
* Improve kernel malloc type checking.jsing2011-09-221-2/+2
* Backout vmmap in order to repair virtual address selection algorithmsariane2011-06-061-8/+3
* push kernel malloc(9) and kernel stacks into non-dma memory, since thatderaadt2011-06-061-2/+2
* Reimplement uvm/uvm_map.ariane2011-05-241-3/+8
* unify some pool and malloc flag values. the important bit is that all flagstedu2010-09-261-1/+3
* Add assertwaitok(9) to declare code paths that assume they can sleep.matthew2010-09-211-1/+4
* We have this nice KMEMSTATS option to control when we use kmemstats,matthew2010-07-221-1/+3
* add an align argument to uvm_km_kmemalloc_pla.art2010-07-021-2/+2
* constrain malloc to only grab pages from dma reachable memory.thib2010-07-011-4/+6
* If option DIAGNOSTIC, do not bother doing sanity checks, including anmiod2009-08-251-16/+28
* The BUCKETINDX() giant macro is used to compute the base 2 logarithm of itsmiod2009-08-251-1/+33
* Don't enforce a minimum size for nkmempages by default; if the computedmiod2009-02-221-2/+2