| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Revert the change to use pools for <= PAGE_SIZE allocations. It |  kettenis | 2008-10-18 | 1 | -124/+229 |
* | Since malloc_page_alloc() is a pool allocator it should check for PR_WAITOK |  kettenis | 2008-10-11 | 1 | -2/+3 |
* | In malloc_page_free(), restore the correct wire_count value. |  miod | 2008-10-05 | 1 | -2/+2 |
* | Use pools to do allocations for all sizes <= PAGE_SIZE. |  art | 2008-09-29 | 1 | -229/+123 |
* | Prevent possible free list corruption when malloc(9) sleeps. |  kettenis | 2008-02-21 | 1 | -3/+2 |
* | replace ctob and btoc with ptoa and atop respectively |  martin | 2007-09-15 | 1 | -2/+2 |
* | Add the long requested M_ZERO flag to malloc(9). |  art | 2007-09-07 | 1 | -4/+10 |
* | replace the machine dependant bytes-to-clicks macro by the MI ptoa() |  martin | 2007-09-01 | 1 | -3/+3 |
* | Add a name argument to the RWLOCK_INITIALIZER macro. |  thib | 2007-05-29 | 1 | -2/+2 |
* | Allow machine-dependant overrides for the ``deadbeef'' sentinel values, |  miod | 2007-04-12 | 1 | -1/+5 |
* | Instead of managing pages for intrsafe maps in special objects (aka. |  art | 2007-04-11 | 1 | -4/+4 |
* | remove a few void * casts that are useless |  tedu | 2007-03-25 | 1 | -4/+4 |
* | Switch some lockmgr locks to rwlocks. |  art | 2007-01-12 | 1 | -4/+5 |
* | Make malloc() print out a warning message when returning NULL due to |  pedro | 2006-11-28 | 1 | -3/+14 |
* | If M_CANFAIL is set and the malloc() size is to big |  thib | 2006-11-22 | 1 | -3/+8 |
* | no malloc debug but configured kmemstats allow 'sh mal' to print smth useful; miod@ ok |  mickey | 2006-09-30 | 1 | -1/+31 |
* | ansi/deregister. |  jsg | 2005-11-28 | 1 | -25/+15 |
* | Remove unnecessary lockmgr() archaism that was costing too much in terms |  pedro | 2005-11-19 | 1 | -3/+3 |
* | Change the NKMEMPAGES range to 4-64MB for 32bit arches, and 8-128MB for 64bit |  miod | 2005-09-12 | 1 | -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 many |  niklas | 2004-12-30 | 1 | -5/+6 |
* | bad stuff escaped by accident |  tedu | 2004-05-23 | 1 | -2/+1 |
* | according to fork1(9), retval is optional. make it so. |  tedu | 2004-05-23 | 1 | -1/+2 |
* | make check for too large allocations earlier, instead of fiddling with it. |  tedu | 2003-12-28 | 1 | -3/+3 |
* | remove caddr_t casts. it's just silly to cast something when the function |  tedu | 2003-07-21 | 1 | -4/+4 |
* | addrmask canbe const |  mickey | 2003-06-26 | 1 | -2/+2 |
* | Remove the advertising clause in the UCB license which Berkeley |  millert | 2003-06-02 | 1 | -6/+2 |
* | uvm_km_suballoc passes the 'min' argument untouched to uvm_map. uvm_map |  art | 2003-06-01 | 1 | -5/+8 |
* | string fixes; tedu ok |  deraadt | 2003-05-03 | 1 | -8/+13 |
* | woah. last commit contained way too much. revert, and apply only the change intended. |  tedu | 2003-04-10 | 1 | -23/+8 |
* | off by one bounds check in diag code. ok art. |  tedu | 2003-04-10 | 1 | -9/+24 |
* | splvm, not splimp |  art | 2002-06-11 | 1 | -3/+3 |
* | malloc_roundup to calculate allocation size malloc will use; from netbsd; |  provos | 2002-02-12 | 1 | -1/+13 |
* | Don't include <sys/map.h> when you don't need what's in it. |  miod | 2002-01-16 | 1 | -2/+1 |
* | UBC was a disaster. It worked very good when it worked, but on some |  art | 2001-12-19 | 1 | -3/+3 |
* | If we assume (just pure speculation) that there will be a pmap sometime in |  art | 2001-12-05 | 1 | -3/+3 |
* | make nkmempages dynamic based on memory. okay art@ from netbsd: |  provos | 2001-12-05 | 1 | -9/+72 |
* | Sync in more uvm from NetBSD. Mostly just cosmetic stuff. |  art | 2001-11-28 | 1 | -3/+3 |
* | zap some typedefs. |  art | 2001-11-28 | 1 | -2/+2 |
* | Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary. |  miod | 2001-11-06 | 1 | -2/+1 |
* | merge vm/vm_kern.h into uvm/uvm_extern.h; art@ ok |  mickey | 2001-09-19 | 1 | -3/+1 |
* | When this code was imported to NetBSD by Jason Thorpe he did a bunch of |  art | 2001-08-17 | 1 | -7/+1 |
* | Sysctl for finding out how many pages there are in kmem_map. |  art | 2001-08-02 | 1 | -1/+5 |
* | Print "data modified on freelist" sizes in hex. |  art | 2001-07-26 | 1 | -3/+3 |
* | remove old vm |  art | 2001-06-27 | 1 | -28/+2 |
* | KNF |  deraadt | 2001-06-22 | 1 | -17/+16 |
* | Canonicalize panic message |  niklas | 2001-06-21 | 1 | -2/+2 |
* | Panic if we free stuff not in malloc region. (ifdef DIAGNOSTIC) |  niklas | 2001-06-21 | 1 | -1/+7 |
* | Use lockmgr locks for kern.malloc.kmemstat and |  angelos | 2001-05-14 | 1 | -5/+10 |
* | Be more paranoid about zapping trailing comma. |  angelos | 2001-05-14 | 1 | -3/+8 |
* | Use M_SYSCTL, fix a couple of buglets, style. deraadt@ ok |  angelos | 2001-05-14 | 1 | -22/+13 |