| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add init_param3() to subr_param. This function is called | Mike Silbersack | 2003-07-11 | 1 | -0/+5 |
| * | Don't overflow when calculating vm_kmem_size. This fixes kmem_map | Paul Saab | 2003-06-11 | 1 | -4/+4 |
| * | Use __FBSDID(). | David E. O'Brien | 2003-06-11 | 1 | -1/+3 |
| * | Don't pass NULL pointer to memset if we are compiled with DIAGNOSTIC | Poul-Henning Kamp | 2003-05-12 | 1 | -4/+3 |
| * | Add two KASSERTS which trigger if free(9) would drag the "memuse" statistic | Poul-Henning Kamp | 2003-05-05 | 1 | -0/+6 |
| * | Update the "last malloc failure timestamp" also for simulated | Poul-Henning Kamp | 2003-04-25 | 1 | -0/+1 |
| * | Permit debug.malloc.failure_rate to be specified using a tunable so | Robert Watson | 2003-03-26 | 1 | -0/+1 |
| * | Add a new kernel option, MALLOC_MAKE_FAILURES, which compiles | Robert Watson | 2003-03-26 | 1 | -0/+26 |
| * | PHCC[1]: | Poul-Henning Kamp | 2003-03-10 | 1 | -2/+2 |
| * | Make malloc and mbuf allocation mode flags nonoverlapping. | Poul-Henning Kamp | 2003-03-10 | 1 | -1/+18 |
| * | o Allow "buckets" in mb_alloc to be differently sized (according to | Bosko Milekic | 2003-02-20 | 1 | -2/+1 |
| * | Back out M_* changes, per decision of the TRB. | Warner Losh | 2003-02-19 | 1 | -4/+4 |
| * | Under #ifdef DIAGNOSTIC, fill malloc(9) allocations which do not have | Poul-Henning Kamp | 2003-02-01 | 1 | -0/+8 |
| * | Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0. | Alfred Perlstein | 2003-01-21 | 1 | -4/+4 |
| * | Introduce malloc_last_fail() which returns the number of seconds since | Poul-Henning Kamp | 2002-11-01 | 1 | -0/+16 |
| * | - Split UMA_ZFLAG_OFFPAGE into UMA_ZFLAG_OFFPAGE and UMA_ZFLAG_HASH. | Jeff Roberson | 2002-09-18 | 1 | -33/+9 |
| * | - Replace the bandaid introduced in revision 1.110 with | Robert Drehmel | 2002-05-31 | 1 | -1/+3 |
| * | Add a bandaid so that sysctl kern.malloc works on sparc64. | Jake Burkholder | 2002-05-20 | 1 | -1/+1 |
| * | Fix the td_intr_nesting_level check to work ok if a flag like M_ZERO is | John Baldwin | 2002-05-20 | 1 | -3/+1 |
| * | Hide a pointer to the malloc_type bucket at the end of the freed memory. If | Jeff Roberson | 2002-05-02 | 1 | -1/+19 |
| * | malloc/free(9) no longer require Giant. Use the malloc_mtx to protect the | Jeff Roberson | 2002-05-02 | 1 | -1/+21 |
| * | Remove the temporary alignment check in free(). | Jeff Roberson | 2002-05-02 | 1 | -6/+0 |
| * | Convert longs to u_longs in stats. This will hold off wrap arounds for a | Jeff Roberson | 2002-04-30 | 1 | -1/+1 |
| * | Add a new UMA debugging facility. This will overwrite freed memory with | Jeff Roberson | 2002-04-30 | 1 | -2/+8 |
| * | Move the implementation of M_ZERO into UMA so that it can be passed to | Jeff Roberson | 2002-04-30 | 1 | -3/+0 |
| * | Re-add the 16384 bucket also. | Robert Watson | 2002-04-29 | 1 | -0/+1 |
| * | Revert a portion of kern_malloc.c:1.99, which (in addition to adding | Robert Watson | 2002-04-29 | 1 | -1/+3 |
| * | Add a basic sanity check on pointers passed to free(9). | Poul-Henning Kamp | 2002-04-23 | 1 | -0/+10 |
| * | Finish adding support code for sysctl kern.mprof. This dumps some malloc | Jeff Roberson | 2002-04-15 | 1 | -11/+68 |
| * | Remove malloc_type's ks_limit. | Jeff Roberson | 2002-04-15 | 1 | -84/+135 |
| * | Change callers of mtx_init() to pass in an appropriate lock type name. In | John Baldwin | 2002-04-04 | 1 | -1/+1 |
| * | Remove __P. | Alfred Perlstein | 2002-03-19 | 1 | -1/+1 |
| * | This is the first part of the new kernel memory allocator. This replaces | Jeff Roberson | 2002-03-19 | 1 | -299/+122 |
| * | Add realloc() and reallocf(), and make free(NULL, ...) acceptable. | Archie Cobbs | 2002-03-13 | 1 | -0/+74 |
| * | KSE Milestone 2 | Julian Elischer | 2001-09-12 | 1 | -1/+1 |
| * | - Remove asleep(), await(), and M_ASLEEP. | John Baldwin | 2001-08-10 | 1 | -9/+0 |
| * | Rename mb_init() mbuf subsystem initialization routine to mbuf_init(), in | Bosko Milekic | 2001-08-03 | 1 | -1/+1 |
| * | Remove some code that appears to have endian problems with INVARIANTS. | Jake Burkholder | 2001-08-03 | 1 | -5/+0 |
| * | Introduce numerous SMP friendly changes to the mbuf allocator. Namely, | Bosko Milekic | 2001-06-22 | 1 | -1/+8 |
| * | "Fix" the previous initial attempt at fixing TUNABLE_INT(). This time | Peter Wemm | 2001-06-08 | 1 | -1/+1 |
| * | Back out part of my previous commit. This was a last minute change | Peter Wemm | 2001-06-07 | 1 | -1/+1 |
| * | Make the TUNABLE_*() macros look and behave more consistantly like the | Peter Wemm | 2001-06-06 | 1 | -7/+6 |
| * | Undo part of the tangle of having sys/lock.h and sys/mutex.h included in | Mark Murray | 2001-05-01 | 1 | -1/+1 |
| * | Fix inconsistency in setup of kernel_map: we need to make sure that | Bosko Milekic | 2001-04-18 | 1 | -2/+2 |
| * | Change and clean the mutex lock interface. | Bosko Milekic | 2001-02-09 | 1 | -12/+12 |
| * | Let M_PANIC go back to the private tree as its intention isn't understood well | Boris Popov | 2001-01-31 | 1 | -6/+2 |
| * | Add M_PANIC flag to the list of available flags passed to malloc(). | Boris Popov | 2001-01-29 | 1 | -2/+6 |
| * | p->p_intr_nesting_level is MI now and initialized to 0 in kern_fork.c, | Peter Wemm | 2001-01-27 | 1 | -1/+1 |
| * | Don't grab Giant when calling kmem_alloc/kmem_free as this is just | John Baldwin | 2001-01-24 | 1 | -4/+0 |
| * | Make intr_nesting_level per-process, rather than per-cpu. Setup | Jake Burkholder | 2001-01-21 | 1 | -1/+2 |