aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_mbuf.c
Commit message (Expand)AuthorAgeFilesLines
* Temporary workaround for the limitations of the mbuf flowid field: zeroRobert Watson2009-01-011-0/+2
* Removed a comment made obsolete by revisions 157927 and 174292.Ruslan Ermilov2008-12-181-1/+0
* Make sure nmbclusters are initialized before maxsocketsBjoern A. Zeeb2008-12-101-1/+6
* make kern.ipc.nmbclusters actually have a useful effect on nmbclusters et al.Kip Macy2008-11-091-3/+4
* Reintroduce UMA_SLAB_KMAP; however, change its spelling toAlan Cox2008-04-041-1/+2
* In keeping with style(9)'s recommendations on macros, use a ';'Robert Watson2008-03-161-1/+1
* Give MEXTADD() another argument to make both void pointers to thePoul-Henning Kamp2008-02-011-2/+4
* - fix tab to space issue, hmm maybe I should use vi.Randall Stewart2007-12-151-1/+1
* - Puts default limits on 4k/9k and 16k zones for mbufs all basedRandall Stewart2007-12-051-6/+67
* Introduce an UMA backend page allocator for the jumbo frame zones thatAlan Cox2007-12-041-0/+33
* style(9)David E. O'Brien2007-10-261-11/+13
* Merge first in a series of TrustedBSD MAC Framework KPI changesRobert Watson2007-10-241-2/+2
* This patch adds an M_NOFREE flag which allows one to mark an mbuf asKip Macy2007-10-061-0/+1
* Allow drivers to free an mbuf without having the mbuf be touched ifKip Macy2007-10-061-2/+5
* Despite several examples in the kernel, the third argument ofDavid Malone2007-06-041-1/+1
* Fix mb_ctor_clust and mb_dtor_clust to reference the appropriate zone,Kip Macy2007-04-041-29/+37
* Fix for problems that occur when all mbuf clusters migrate to the mbuf packetMohan Srinivasan2007-01-251-0/+8
* Complete break-out of sys/sys/mac.h into sys/security/mac/mac_framework.hRobert Watson2006-10-221-1/+2
* Remove VLAN mtag UMA zones and initialize ether_vtag and tso_segsz packetAndre Oppermann2006-09-171-25/+4
* Move some functions and definitions from uipc_socket2.c to uipc_socket.c:Robert Watson2006-06-101-1/+0
* Allow for nmbclusters and maxsockets to be increased via sysctl.Paul Saab2006-04-211-1/+19
* Properly handle the case when the packet secondary zone can't allocateAndre Oppermann2006-03-081-2/+2
* One more grammar nit.Gleb Smirnoff2006-02-271-1/+1
* Fix several typos and trim spaces at eol.Gleb Smirnoff2006-02-261-7/+7
* Replace the 4k fixed sized jumbo mbuf clusters with PAGE_SIZE sizedAndre Oppermann2006-02-171-11/+11
* Merge the //depot/user/yar/vlan branch into CVS. It contains some collectiveGleb Smirnoff2006-01-301-0/+25
* In mb_zinit_pack() explicitly ignore the return value of uma_zalloc_arg().Andre Oppermann2006-01-231-1/+1
* Hide the 4k mbuf clusters if the normal clusters are defined to beAndre Oppermann2005-12-101-0/+2
* Add an API for jumbo mbuf cluster allocation and also provideAndre Oppermann2005-12-081-1/+19
* Fix panic string in last revision.Gleb Smirnoff2005-11-061-1/+1
* Free only those mbuf+clusters back to the packet zone that were allocatedAndre Oppermann2005-11-051-1/+2
* Fix a logic error introduced with mandatory mbuf cluster refcounting andAndre Oppermann2005-11-041-4/+3
* Mandatory mbuf cluster reference counting and groundwork for UMAAndre Oppermann2005-11-021-42/+151
* No longer maintain mbstat statistics for the mbuf allocator, UMARobert Watson2005-09-271-11/+0
* Define four constants, MBUF_{,MEM,CLUSTER,PACKET,TAG}_MEM_NAME, whichRobert Watson2005-07-171-4/+6
* Fix the false memory modified after free messages some users have beenMike Silbersack2005-06-291-0/+3
* Change the mbuf, mbuf cluster, and mbuf packet allocation routines so thatMike Silbersack2005-06-231-0/+34
* Well, it seems that I pre-maturely removed the "All rights reserved"Bosko Milekic2005-02-161-2/+2
* Optimize the way reference counting is performed with Mbufs. WeBosko Milekic2005-02-101-4/+2
* Update copyright, remove "all rights reserved" (since they are notBosko Milekic2005-02-011-5/+1
* CTASSERT that MSZIE is a power of 2 (otherwise dtom() breaks)Brian Somers2004-09-201-1/+4
* * Add a "how" argument to uma_zone constructors and initialization functionsBrian Feldman2004-08-021-35/+32
* Fix a couple of bugs in the mbuf and packet ctors. In the latter case,Bosko Milekic2004-06-011-5/+3
* Bring in mbuma to replace mballoc.Bosko Milekic2004-05-311-0/+385