| Commit message (Expand) | Author | Age | Files | Lines |
| * | add a size argument to free. will be used soon, but for now default to 0. |  tedu | 2014-07-12 | 1 | -2/+2 |
| * | instead of defining two versions of bucketidx, just don't inline for small. |  tedu | 2014-07-10 | 1 | -14/+6 |
| * | Add mallocarray(9) |  matthew | 2014-07-10 | 1 | -2/+36 |
| * | pool_debug still needed for non-DIAGNOSTIC kernels |  deraadt | 2014-07-10 | 1 | -2/+2 |
| * | hide the biglock thrashing under pool_debug so it can be turned off |  tedu | 2014-07-10 | 1 | -2/+2 |
| * | you've had 12+ years to update your kernel config. |  daniel | 2014-06-21 | 1 | -5/+1 |
| * | consistent use of uint32_t for poison values |  tedu | 2014-05-19 | 1 | -2/+2 |
| * | if it's ok to wait, it must also be ok to give the kernel lock. do so. |  tedu | 2014-04-03 | 1 | -3/+7 |
| * | Reduce uvm include madness. Use <uvm/uvm_extern.h> instead of |  mpi | 2014-03-28 | 1 | -2/+2 |
| * | bzero -> memset |  tedu | 2014-01-21 | 1 | -3/+3 |
| * | Uncomment kprintf format attributes for sys/kern |  syl | 2013-08-08 | 1 | -2/+2 |
| * | permit free(NULL) to work. ok deraadt |  tedu | 2013-07-04 | 1 | -1/+4 |
| * | open up some races. if pool_debug == 2, force a yield() whenever waitok. |  tedu | 2013-05-31 | 1 | -2/+8 |
| * | switch the malloc and pool freelists to using xor simpleq. |  tedu | 2013-05-03 | 1 | -11/+13 |
| * | shuffle around some poison code, prototypes, values... |  tedu | 2013-04-06 | 1 | -13/+18 |
| * | separate memory poisoning code to a new file and make it usable kernel wide |  tedu | 2013-03-28 | 1 | -48/+15 |
| * | replace kern malloc's hand rolled freelist with simpleq macros. |  tedu | 2013-03-26 | 1 | -65/+31 |
| * | use PAGE_SHIFT instead of PGSHIFT |  deraadt | 2013-03-21 | 1 | -2/+2 |
| * | factor out the deadbeef code for legibility. |  tedu | 2013-03-15 | 1 | -37/+51 |
| * | Comment out recently added __attribute__((__format__(__kprintf__))) annotations |  miod | 2013-02-17 | 1 | -2/+2 |
| * | Add explicit __attribute__ ((__format__(__kprintf__)))) to the functions and |  miod | 2013-02-09 | 1 | -5/+6 |
| * | Expand the panic to show the malloc type and size. Okay deraadt@. |  pirofti | 2012-03-30 | 1 | -2/+3 |
| * | New vmmap implementation. |  ariane | 2012-03-09 | 1 | -3/+8 |
| * | Improve kernel malloc type checking. |  jsing | 2011-09-22 | 1 | -2/+2 |
| * | Backout vmmap in order to repair virtual address selection algorithms |  ariane | 2011-06-06 | 1 | -8/+3 |
| * | push kernel malloc(9) and kernel stacks into non-dma memory, since that |  deraadt | 2011-06-06 | 1 | -2/+2 |
| * | Reimplement uvm/uvm_map. |  ariane | 2011-05-24 | 1 | -3/+8 |
| * | unify some pool and malloc flag values. the important bit is that all flags |  tedu | 2010-09-26 | 1 | -1/+3 |
| * | Add assertwaitok(9) to declare code paths that assume they can sleep. |  matthew | 2010-09-21 | 1 | -1/+4 |
| * | We have this nice KMEMSTATS option to control when we use kmemstats, |  matthew | 2010-07-22 | 1 | -1/+3 |
| * | add an align argument to uvm_km_kmemalloc_pla. |  art | 2010-07-02 | 1 | -2/+2 |
| * | constrain malloc to only grab pages from dma reachable memory. |  thib | 2010-07-01 | 1 | -4/+6 |
| * | If option DIAGNOSTIC, do not bother doing sanity checks, including an |  miod | 2009-08-25 | 1 | -16/+28 |
| * | The BUCKETINDX() giant macro is used to compute the base 2 logarithm of its |  miod | 2009-08-25 | 1 | -1/+33 |
| * | Don't enforce a minimum size for nkmempages by default; if the computed |  miod | 2009-02-22 | 1 | -2/+2 |
| * | 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 |