| Commit message (Expand) | Author | Age | Files | Lines |
* | add m_copyup function.. This can be used to help make our ip stack less | jmg | 2005-03-17 | 1 | -0/+48 |
* | allow the destination of m_move_pkthdr to have external | sam | 2005-03-08 | 1 | -3/+3 |
* | The m_ext reference counts are potentially shared and modified | alc | 2005-03-06 | 1 | -6/+4 |
* | Insert volatile cast to discourage gcc from optimizing the read outside | dwhite | 2005-03-03 | 1 | -1/+4 |
* | change m_adj to reclaim unused mbufs instead of zero'ing m_len | sam | 2005-02-24 | 1 | -2/+4 |
* | remove dead code | sam | 2005-02-23 | 1 | -4/+0 |
* | Optimize the way reference counting is performed with Mbufs. We | bmilekic | 2005-02-10 | 1 | -21/+37 |
* | Make a bunch of malloc types static. | phk | 2005-02-10 | 1 | -1/+1 |
* | /* -> /*- for copyright notices, minor format tweaks as necessary | imp | 2005-01-06 | 1 | -1/+1 |
* | fix m_append for case where additional mbufs are required | sam | 2004-12-15 | 1 | -2/+2 |
* | add m_append utility function to be used in forthcoming changes | sam | 2004-12-08 | 1 | -0/+46 |
* | improve the mbuf m_print function.. Only pull length from pkthdr if there | jmg | 2004-09-28 | 1 | -5/+20 |
* | Back out just a portion of Alfred's last commit. Remove the MBUF_CHECK | bmilekic | 2004-07-21 | 1 | -2/+0 |
* | Make sure we don't call mbuf allocation functions with mutexes held. | alfred | 2004-07-21 | 1 | -0/+8 |
* | Gah! Plug a mbuf leak I introduced in the last commit. | bmilekic | 2004-06-11 | 1 | -2/+3 |
* | Plug a race where upon free this scenario could occur: | bmilekic | 2004-06-10 | 1 | -15/+30 |
* | Fix a panic happening when m_getm() is called with len < MCLBYTES. | mux | 2004-06-09 | 1 | -1/+1 |
* | Bring in mbuma to replace mballoc. | bmilekic | 2004-05-31 | 1 | -38/+197 |
* | constify the last argument of m_copyback. | luigi | 2004-04-18 | 1 | -1/+1 |
* | Remove advertising clause from University of California Regent's license, | imp | 2004-04-05 | 1 | -4/+0 |
* | Style fixes: don't indent variable names. | silby | 2004-02-05 | 1 | -6/+6 |
* | Style fixes | silby | 2004-02-04 | 1 | -6/+0 |
* | Rewrite sendfile's header support so that headers are now sent in the first | silby | 2004-02-01 | 1 | -0/+56 |
* | Fix another 0 / NULL mixup. | silby | 2003-12-25 | 1 | -1/+1 |
* | Catch a few places where NULL (pointer) was used where 0 (integer) was | peter | 2003-12-23 | 1 | -1/+1 |
* | style(9) pass and type fixups. | bms | 2003-12-16 | 1 | -14/+8 |
* | Push m_apply() and m_getptr() up into the colleciton of standard mbuf | bms | 2003-12-15 | 1 | -0/+67 |
* | Implement MBUF_STRESS_TEST mark II. | silby | 2003-09-01 | 1 | -0/+84 |
* | Three fixes: | silby | 2003-07-19 | 1 | -2/+10 |
* | Hide the m_defrag* statistics under MBUF_STRESS_TEST, there seems | silby | 2003-06-17 | 1 | -2/+8 |
* | Use __FBSDID(). | obrien | 2003-06-11 | 1 | -1/+3 |
* | Add another MBUF_STRESS_TEST feature, m_defragrandomfailures. | silby | 2003-04-15 | 1 | -0/+15 |
* | Move MAC label storage for mbufs into m_tags from the m_pkthdr structure, | rwatson | 2003-04-14 | 1 | -15/+8 |
* | Use MBTOM() to convert mbuf allocator flags to malloc() flags, rather | rwatson | 2003-04-14 | 1 | -2/+1 |
* | Introduce an M_ASSERTPKTHDR() macro which performs the very common task | des | 2003-04-08 | 1 | -4/+3 |
* | Add the m_defrag routine, as discussed on committers@. This | silby | 2003-03-29 | 1 | -0/+83 |
* | Allow m_dup_pkthdr to accept mbufs with attached clusters as | silby | 2003-03-28 | 1 | -3/+3 |
* | In m_dup_pkthdr(), convert the supplied `how' argument into malloc | iedowse | 2003-03-13 | 1 | -1/+2 |
* | Back out M_* changes, per decision of the TRB. | imp | 2003-02-19 | 1 | -7/+7 |
* | Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0. | alfred | 2003-01-21 | 1 | -7/+7 |
* | Correct mbuf packet header propagation. Previously, packet headers | sam | 2002-12-30 | 1 | -14/+54 |
* | Replace aux mbufs with packet tags: | sam | 2002-10-16 | 1 | -1/+1 |
* | While well intentionned the check to see it there is a packet | julian | 2002-09-19 | 1 | -3/+0 |
* | fix style.. Return in the kernel always has () around the arguments. | julian | 2002-09-19 | 1 | -1/+1 |
* | Compiler was correct: | julian | 2002-09-19 | 1 | -1/+1 |
* | If M_PKTHDR is set then we don't need to do a loop to find the total length. | darrenr | 2002-09-19 | 1 | -0/+3 |
* | style nit: unsigned -> u_int in the kernel, particularly to | bmilekic | 2002-09-18 | 1 | -11/+11 |
* | Make m_length() and m_fixhdr() return unsigned. | phk | 2002-09-18 | 1 | -4/+4 |
* | Introduce the m_length() function which will return the accumulated | phk | 2002-09-18 | 1 | -6/+19 |
* | Move m_fixhdr() from "mbchain" to "mbuf" where it belongs. | phk | 2002-09-18 | 1 | -0/+14 |