Age | Commit message (Expand) | Author |
2012-09-26 | add M_ZEROIZE as an mbuf flag, so copied PFKEY messages (with embedded keys) | Markus Friedl |
2012-04-13 | unneccessary casts to unsigned; ok claudio | Theo de Raadt |
2011-12-02 | dont put MAXMCLBYTES in the mclsizes array with a comment saying its 64k | David Gwynne |
2011-11-30 | this diff introduces the MAXMCLBYTES macro to describe the largest | David Gwynne |
2011-11-30 | correctly calculate the space available in external storage in m_pullup. | David Gwynne |
2011-11-29 | whitespace fixes. no binary change. | David Gwynne |
2011-09-18 | One more %hh format string. | Miod Vallat |
2011-07-08 | new priority queueing implementation, extremely low overhead, thus fast. | Henning Brauer |
2011-07-05 | Minor cleanup. OK blambert@ | Claudio Jeker |
2011-06-23 | Make mbufs and dma_alloc be contig allocations. | Ariane van der Steldt |
2011-05-04 | Collapse m_pullup and m_pullup2 into a single function, as they're | Bret Lambert |
2011-04-18 | Put back the change of pool and malloc into the new km_alloc(9) api. | Artur Grabowski |
2011-04-11 | Move the DDB includes up in the file so that the m_print() prototype is | Claudio Jeker |
2011-04-10 | Backout m_split_mbuf() from revision 1.150. It seems that m_split() | Alexander Bluhm |
2011-04-06 | Backout the uvm_km_getpage -> km_alloc conversion. Weird things are happening | Artur Grabowski |
2011-04-05 | Passing M_WAITOK to mbuf functions is supposed to be a contract between | Bret Lambert |
2011-04-05 | - Change pool constraints to use kmem_pa_mode instead of uvm_constraint_range | Artur Grabowski |
2011-04-04 | both m_inject() and m_split() reached a point at which they needed | Bret Lambert |
2011-01-29 | The function m_tag_copy_chain() returned 0 on success and 1 on | Alexander Bluhm |
2010-12-21 | Ugly workaround in nmbclust_update(). Additionally to setting the limit | Claudio Jeker |
2010-11-05 | Implement m_print as real ddb command "show mbuf addr" in the way other | Claudio Jeker |
2010-10-28 | Add m_print() a function to print mbuf headers. Can be called from ddb | Claudio Jeker |
2010-10-05 | implicitly protect m_cldrop with splnet; ok claudio dlg | Mike Belopuhov |
2010-09-23 | tweak the mclgeti algorithm to behave better under load. | David Gwynne |
2010-07-15 | m_getptr(m, 0, ...) may return an mbuf different from m -- if m has no | Claudio Jeker |
2010-07-14 | Eliminate some unused malloc(9) type defines. Also get rid of the | Matthew Dempsky |
2010-07-03 | replace 0 with equivalent allocation flag. ok thib | Ted Unangst |
2010-07-02 | m_copyback can fail to allocate memory, but is a void fucntion so gymnastics | Bret Lambert |
2010-07-01 | pool setconstraints must be called immediately after pool_init, otherwise | Bob Beck |
2010-06-27 | uvm constraints. Add two mandatory MD symbols, uvm_md_constraints | Thordur I. Bjornsson |
2010-06-07 | Replace some handrolled instances of m_getptr() with that function, which | Bret Lambert |
2010-01-14 | fix typos in comments, no code changes; | Ingo Schwarze |
2010-01-12 | Move initialization of the MCLGETI ticker to mbinit(), instead of ifinit() | Theo de Raadt |
2009-09-13 | M_DUP_PKTHDR() define -> m_dup_pkthdr() function to properly deal | Kenneth R Westerback |
2009-08-12 | just bzero the pkthdr instead of setting each and every member of that | Henning Brauer |
2009-08-12 | revert my change to m_cluncount which tries to prevent the system | David Gwynne |
2009-08-12 | if we get dangerously low on clusters during interrupts, we need | David Gwynne |
2009-08-11 | optimise m_clget so that it holds spl for even less | Theo de Raadt |
2009-08-11 | Must move the splx() lower in m_clget() so that it protects atomic access | Theo de Raadt |
2009-08-09 | remove the ancient MCFail / MPFail debugging technique; ok claudio | Theo de Raadt |
2009-08-09 | use m_free_unlocked() in m_pullup() to avoid iterative splnet/splx down | Theo de Raadt |
2009-08-09 | make mbuf tags suck a bit less, performance wise. | Henning Brauer |
2009-08-09 | create a m_free_unlocked which is now used by both m_freem() and m_free(). | Theo de Raadt |
2009-08-09 | do not clear a field before we pool_put it into oblivion; ok henning | Theo de Raadt |
2009-08-09 | MCLGETI() will now allocate a mbuf header if it is not provided, thus | Theo de Raadt |
2009-06-22 | sync m_inithdr() with m_gethdr() after the | Thordur I. Bjornsson |
2009-06-05 | Initial support for routing domains. This allows to bind interfaces to | Claudio Jeker |
2009-06-02 | Move M_PREPEND macro code to be entirely into m_prepend the function; | Bret Lambert |
2009-03-02 | the packet length passed to m_clget is a u_int, print it with %u not %d in | David Gwynne |
2009-02-09 | Don't panic if m_copyback() is working on a M_READONLY() mbuf. The old version | Claudio Jeker |