aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/uipc_mbuf.c
Commit message (Expand)AuthorAgeFilesLines
* /* -> /*- for copyright notices, minor format tweaks as necessaryWarner Losh2005-01-061-1/+1
* fix m_append for case where additional mbufs are requiredSam Leffler2004-12-151-2/+2
* add m_append utility function to be used in forthcoming changesSam Leffler2004-12-081-0/+46
* improve the mbuf m_print function.. Only pull length from pkthdr if thereJohn-Mark Gurney2004-09-281-5/+20
* Back out just a portion of Alfred's last commit. Remove the MBUF_CHECKBosko Milekic2004-07-211-2/+0
* Make sure we don't call mbuf allocation functions with mutexes held.Alfred Perlstein2004-07-211-0/+8
* Gah! Plug a mbuf leak I introduced in the last commit.Bosko Milekic2004-06-111-2/+3
* Plug a race where upon free this scenario could occur:Bosko Milekic2004-06-101-15/+30
* Fix a panic happening when m_getm() is called with len < MCLBYTES.Maxime Henrion2004-06-091-1/+1
* Bring in mbuma to replace mballoc.Bosko Milekic2004-05-311-38/+197
* constify the last argument of m_copyback.Luigi Rizzo2004-04-181-1/+1
* Remove advertising clause from University of California Regent's license,Warner Losh2004-04-051-4/+0
* Style fixes: don't indent variable names.Mike Silbersack2004-02-051-6/+6
* Style fixesMike Silbersack2004-02-041-6/+0
* Rewrite sendfile's header support so that headers are now sent in the firstMike Silbersack2004-02-011-0/+56
* Fix another 0 / NULL mixup.Mike Silbersack2003-12-251-1/+1
* Catch a few places where NULL (pointer) was used where 0 (integer) wasPeter Wemm2003-12-231-1/+1
* style(9) pass and type fixups.Bruce M Simpson2003-12-161-14/+8
* Push m_apply() and m_getptr() up into the colleciton of standard mbufBruce M Simpson2003-12-151-0/+67
* Implement MBUF_STRESS_TEST mark II.Mike Silbersack2003-09-011-0/+84
* Three fixes:Mike Silbersack2003-07-191-2/+10
* Hide the m_defrag* statistics under MBUF_STRESS_TEST, there seemsMike Silbersack2003-06-171-2/+8
* Use __FBSDID().David E. O'Brien2003-06-111-1/+3
* Add another MBUF_STRESS_TEST feature, m_defragrandomfailures.Mike Silbersack2003-04-151-0/+15
* Move MAC label storage for mbufs into m_tags from the m_pkthdr structure,Robert Watson2003-04-141-15/+8
* Use MBTOM() to convert mbuf allocator flags to malloc() flags, ratherRobert Watson2003-04-141-2/+1
* Introduce an M_ASSERTPKTHDR() macro which performs the very common taskDag-Erling Smørgrav2003-04-081-4/+3
* Add the m_defrag routine, as discussed on committers@. ThisMike Silbersack2003-03-291-0/+83
* Allow m_dup_pkthdr to accept mbufs with attached clusters asMike Silbersack2003-03-281-3/+3
* In m_dup_pkthdr(), convert the supplied `how' argument into mallocIan Dowse2003-03-131-1/+2
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-7/+7
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-7/+7
* Correct mbuf packet header propagation. Previously, packet headersSam Leffler2002-12-301-14/+54
* Replace aux mbufs with packet tags:Sam Leffler2002-10-161-1/+1
* While well intentionned the check to see it there is a packetJulian Elischer2002-09-191-3/+0
* fix style.. Return in the kernel always has () around the arguments.Julian Elischer2002-09-191-1/+1
* Compiler was correct:Julian Elischer2002-09-191-1/+1
* If M_PKTHDR is set then we don't need to do a loop to find the total length.Darren Reed2002-09-191-0/+3
* style nit: unsigned -> u_int in the kernel, particularly toBosko Milekic2002-09-181-11/+11
* Make m_length() and m_fixhdr() return unsigned.Poul-Henning Kamp2002-09-181-4/+4
* Introduce the m_length() function which will return the accumulatedPoul-Henning Kamp2002-09-181-6/+19
* Move m_fixhdr() from "mbchain" to "mbuf" where it belongs.Poul-Henning Kamp2002-09-181-0/+14
* Include file cleanup; mac.h and malloc.h at one point had orderingRobert Watson2002-08-011-1/+1
* Introduce support for Mandatory Access Control and extensibleRobert Watson2002-07-311-0/+14
* Make M_COPY_PKTHDR() macro into a wrapper for a m_copy_pkthdr()Robert Watson2002-07-301-0/+19
* Move m_freem() from uipc_mbuf.c to subr_mbuf.c so it can take advantageBosko Milekic2002-07-241-8/+0
* o Introduce new m_getcl() interface routine that allocates an mbufBosko Milekic2002-07-151-66/+0
* Fix a bug in m_split(): the "m->m_ext.ext_size" field of an mbuf was beingArchie Cobbs2002-05-311-1/+5
* Fix corner case where m_len was not being initialized.Jeffrey Hsu2002-04-121-1/+3
* Get rid of the twisted MFREE() macro entirely.Matthew Dillon2002-02-051-8/+3