| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add the M_FREELIST flag, which is used to detect whenever a | Mike Silbersack | 2003-05-02 | 1 | -0/+10 |
| * | Fix some easy, global, lint warnings. In most cases, this means | Mark Murray | 2003-04-30 | 1 | -1/+1 |
| * | Move MAC label storage for mbufs into m_tags from the m_pkthdr structure, | Robert Watson | 2003-04-14 | 1 | -17/+9 |
| * | Use MBTOM() to convert mbuf allocator flags to malloc() flags, rather | Robert Watson | 2003-04-14 | 1 | -3/+2 |
| * | 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 | -0/+15 |
| * | Replace calls to WITNESS_SLEEP() and witness_list() with equivalent calls | John Baldwin | 2003-03-04 | 1 | -9/+2 |
| * | o Allow "buckets" in mb_alloc to be differently sized (according to | Bosko Milekic | 2003-02-20 | 1 | -73/+112 |
| * | Fix a serious bug when computing the index for the | Bosko Milekic | 2003-02-20 | 1 | -1/+1 |
| * | Back out M_* changes, per decision of the TRB. | Warner Losh | 2003-02-19 | 1 | -22/+22 |
| * | Make m_getm() always return the top of the newly allocated chain, as | Bosko Milekic | 2003-02-14 | 1 | -4/+2 |
| * | Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0. | Alfred Perlstein | 2003-01-21 | 1 | -22/+22 |
| * | o Introduce a new external mbuf type, EXT_EXTREF. | Andrew Gallatin | 2003-01-02 | 1 | -3/+8 |
| * | o Initialise each mbuf's m_len to 0 in m_getm(); mb_put_mem() depends | Tim J. Robbins | 2002-11-27 | 1 | -1/+3 |
| * | Fix a fairly subtle bug in mbuf_init() where the reference counter | Bosko Milekic | 2002-10-16 | 1 | -1/+1 |
| * | Replace aux mbufs with packet tags: | Sam Leffler | 2002-10-16 | 1 | -14/+7 |
| * | Be consistent about "static" functions: if the function is marked | Poul-Henning Kamp | 2002-09-28 | 1 | -1/+1 |
| * | Make m_flags an int instead of a short, this is consistent with the | Bosko Milekic | 2002-08-15 | 1 | -1/+1 |
| * | Only my brain can fart while fixing a previous brain fart. | Bosko Milekic | 2002-08-08 | 1 | -2/+1 |
| * | YIKES, I take the pointy-hat for a really big braino here. I | Bosko Milekic | 2002-08-08 | 1 | -4/+3 |
| * | Correct a bug introduced in 1.26: M_PKTHDR is set in the 'flags' | Robert Watson | 2002-08-07 | 1 | -1/+1 |
| * | Move the MAC label init/destroy stuff to more appropriate places so that | Bosko Milekic | 2002-08-01 | 1 | -10/+20 |
| * | Introduce support for Mandatory Access Control and extensible | Robert Watson | 2002-07-31 | 1 | -1/+22 |
| * | Make reference counting for mbuf clusters [only] work like in RELENG_4. | Bosko Milekic | 2002-07-30 | 1 | -49/+37 |
| * | Move m_freem() from uipc_mbuf.c to subr_mbuf.c so it can take advantage | Bosko Milekic | 2002-07-24 | 1 | -0/+48 |
| * | Introduce mb_free() to the MBP_PERSIST{,ENT} interface. What this means | Bosko Milekic | 2002-07-23 | 1 | -17/+70 |
| * | o Introduce new m_getcl() interface routine that allocates an mbuf | Bosko Milekic | 2002-07-15 | 1 | -73/+394 |
| * | m_extadd takes a void (*freef)(void *, void *) now, not a | Alfred Perlstein | 2002-06-29 | 1 | -1/+1 |
| * | Set system_map for both mbuf_map and clust_map to 1, in mbuf_init(). | Bosko Milekic | 2002-06-13 | 1 | -2/+4 |
| * | Separate "seperate" from kernel source. | Eric Melville | 2002-05-16 | 1 | -1/+1 |
| * | Remove a printf(3) argument with no corresponding format specifier. | Dag-Erling Smørgrav | 2002-05-14 | 1 | -1/+1 |
| * | Change the mbuf exhaustion warning message to match the message | Mike Silbersack | 2002-05-09 | 1 | -1/+2 |
| * | Change callers of mtx_init() to pass in an appropriate lock type name. In | John Baldwin | 2002-04-04 | 1 | -2/+2 |
| * | Fix bug in mb_alloc that made systems configured with | Bosko Milekic | 2002-03-03 | 1 | -3/+1 |
| * | On the first day of Christmas bde gave to me: | Bosko Milekic | 2001-12-23 | 1 | -143/+132 |
| * | Move prototype of _mext_free to mbuf.h, where it belongs, because it is | Bosko Milekic | 2001-12-22 | 1 | -1/+0 |
| * | vm/vm_kern.c: rate limit (to once per second) diagnostic printf when | Luigi Rizzo | 2001-12-01 | 1 | -1/+14 |
| * | Context: | Bosko Milekic | 2001-11-25 | 1 | -1/+2 |
| * | Re-enable mbtypes statistics in the mbuf allocator. I disabled these | Bosko Milekic | 2001-09-30 | 1 | -13/+71 |
| * | KSE Milestone 2 | Julian Elischer | 2001-09-12 | 1 | -1/+1 |
| * | Rename mb_init() mbuf subsystem initialization routine to mbuf_init(), in | Bosko Milekic | 2001-08-03 | 1 | -4/+4 |
| * | Move CPU_ABSENT() macro to smp.h, where it belongs anyway. It will be | Bosko Milekic | 2001-08-01 | 1 | -15/+4 |
| * | Use the tunable maxusers rather than the compile-time one. Evaluate and | Peter Wemm | 2001-07-26 | 1 | -12/+18 |
| * | - Do not handle the per-CPU containers in mbuf code as though the cpuids | Bosko Milekic | 2001-07-26 | 1 | -6/+23 |
| * | Increase NMBCLUSTERS by 4x. | David E. O'Brien | 2001-07-17 | 1 | -1/+1 |
| * | Temporary fix at least- define NCPU_PRESENT which will be mp_npcus for | Matt Jacob | 2001-06-22 | 1 | -2/+11 |
| * | Introduce numerous SMP friendly changes to the mbuf allocator. Namely, | Bosko Milekic | 2001-06-22 | 1 | -0/+1029 |