summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_malloc.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* 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
* Revert the change to use pools for <= PAGE_SIZE allocations. Itkettenis2008-10-181-124/+229
* Since malloc_page_alloc() is a pool allocator it should check for PR_WAITOKkettenis2008-10-111-2/+3
* In malloc_page_free(), restore the correct wire_count value.miod2008-10-051-2/+2
* Use pools to do allocations for all sizes <= PAGE_SIZE.art2008-09-291-229/+123
* Prevent possible free list corruption when malloc(9) sleeps.kettenis2008-02-211-3/+2
* replace ctob and btoc with ptoa and atop respectivelymartin2007-09-151-2/+2
* Add the long requested M_ZERO flag to malloc(9).art2007-09-071-4/+10
* replace the machine dependant bytes-to-clicks macro by the MI ptoa()martin2007-09-011-3/+3
* Add a name argument to the RWLOCK_INITIALIZER macro.thib2007-05-291-2/+2
* Allow machine-dependant overrides for the ``deadbeef'' sentinel values,miod2007-04-121-1/+5
* Instead of managing pages for intrsafe maps in special objects (aka.art2007-04-111-4/+4
* remove a few void * casts that are uselesstedu2007-03-251-4/+4
* Switch some lockmgr locks to rwlocks.art2007-01-121-4/+5
* Make malloc() print out a warning message when returning NULL due topedro2006-11-281-3/+14
* If M_CANFAIL is set and the malloc() size is to bigthib2006-11-221-3/+8