summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_malloc.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* no malloc debug but configured kmemstats allow 'sh mal' to print smth useful; miod@ okmickey2006-09-301-1/+31
* ansi/deregister.jsg2005-11-281-25/+15
* Remove unnecessary lockmgr() archaism that was costing too much in termspedro2005-11-191-3/+3
* Change the NKMEMPAGES range to 4-64MB for 32bit arches, and 8-128MB for 64bitmiod2005-09-121-9/+22
* Import M_CANFAIL support from NetBSD, removes a nasty panic during low-mem scenarios, instead generating an ENOMEM backfeed, ok tedu@, prodded by manyniklas2004-12-301-5/+6
* bad stuff escaped by accidenttedu2004-05-231-2/+1
* according to fork1(9), retval is optional. make it so.tedu2004-05-231-1/+2
* make check for too large allocations earlier, instead of fiddling with it.tedu2003-12-281-3/+3
* remove caddr_t casts. it's just silly to cast something when the functiontedu2003-07-211-4/+4
* addrmask canbe constmickey2003-06-261-2/+2
* Remove the advertising clause in the UCB license which Berkeleymillert2003-06-021-6/+2
* uvm_km_suballoc passes the 'min' argument untouched to uvm_map. uvm_mapart2003-06-011-5/+8
* string fixes; tedu okderaadt2003-05-031-8/+13
* woah. last commit contained way too much. revert, and apply only the change intended.tedu2003-04-101-23/+8
* off by one bounds check in diag code. ok art.tedu2003-04-101-9/+24
* splvm, not splimpart2002-06-111-3/+3
* malloc_roundup to calculate allocation size malloc will use; from netbsd;provos2002-02-121-1/+13
* Don't include <sys/map.h> when you don't need what's in it.miod2002-01-161-2/+1
* UBC was a disaster. It worked very good when it worked, but on someart2001-12-191-3/+3
* If we assume (just pure speculation) that there will be a pmap sometime inart2001-12-051-3/+3
* make nkmempages dynamic based on memory. okay art@ from netbsd:provos2001-12-051-9/+72
* Sync in more uvm from NetBSD. Mostly just cosmetic stuff.art2001-11-281-3/+3
* zap some typedefs.art2001-11-281-2/+2
* Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary.miod2001-11-061-2/+1
* merge vm/vm_kern.h into uvm/uvm_extern.h; art@ okmickey2001-09-191-3/+1
* When this code was imported to NetBSD by Jason Thorpe he did a bunch ofart2001-08-171-7/+1
* Sysctl for finding out how many pages there are in kmem_map.art2001-08-021-1/+5
* Print "data modified on freelist" sizes in hex.art2001-07-261-3/+3
* remove old vmart2001-06-271-28/+2
* KNFderaadt2001-06-221-17/+16
* Canonicalize panic messageniklas2001-06-211-2/+2
* Panic if we free stuff not in malloc region. (ifdef DIAGNOSTIC)niklas2001-06-211-1/+7
* Use lockmgr locks for kern.malloc.kmemstat andangelos2001-05-141-5/+10
* Be more paranoid about zapping trailing comma.angelos2001-05-141-3/+8
* Use M_SYSCTL, fix a couple of buglets, style. deraadt@ okangelos2001-05-141-22/+13