aboutsummaryrefslogtreecommitdiff
path: root/sys/net
Commit message (Expand)AuthorAgeFilesLines
* Set bridge MAC addresses to the MAC address of their first interface unlessPhilip Paeps2008-07-011-6/+33
* Remove the unused softc from the lo(4) driver.Ed Schouten2008-06-291-20/+2
* Introduce locking around use of ifindex_table, whose use was previouslyRobert Watson2008-06-262-16/+73
* change a variable name ot stop it from colliding with other names inJulian Elischer2008-06-261-7/+7
* Add support for the optional key in the GRE header.Andrew Thompson2008-06-202-3/+51
* Duh, wrong directory, needed to be in netinetJack F Vogel2008-06-112-464/+0
* Add generic TCP LRO code, moved from the ixgbe driver into netJack F Vogel2008-06-112-0/+464
* Don't enforce unique device minor number policy anymore.Ed Schouten2008-06-112-2/+2
* When RADIX_MPATH is enabled, the route selection is not rotatingQing Li2008-05-302-6/+6
* The if_check() function performed three actions:Brooks Davis2008-05-171-28/+10
* Spelling and capitalization fixes.Sean Farley2008-05-161-4/+4
* Add missing braces in #if 0ed code.Antoine Brodin2008-05-101-1/+2
* move a #define from a place it shouldn't have been to a place it shouldJulian Elischer2008-05-102-4/+3
* undef MAXFIBS before redefining itJulian Elischer2008-05-101-0/+1
* Add code to allow the system to handle multiple routing tables.Julian Elischer2008-05-0915-149/+465
* Trim trailing whitespace at ends of lines.Robert Watson2008-05-091-16/+16
* Set D_TRACKCLOSE to avoid a race in devfs that could lead to orphaned bpfJohn Baldwin2008-05-091-0/+1
* Add an option (compiled out by default)Julian Elischer2008-04-291-0/+2
* Check packet directions more properly instead of just checking receivedJung-uk Kim2008-04-281-5/+5
* In function rtalloc_mpath(), do not try to release the lock if the ro_rtQing Li2008-04-241-1/+3
* Move "1000baseT" from IFM_SUBTYPE_ETHERNET_DESCRIPTIONS toAntoine Brodin2008-04-201-1/+1
* Delay the global registration of the struct ifnet in if_alloc() until afterBrooks Davis2008-04-191-1/+1
* Revert the previous commit and use M_PROMISC flag instead.Jung-uk Kim2008-04-151-8/+17
* Fix possible buffer overrun on 64-bit arch when generating MACMaksim Yevmenkin2008-04-151-1/+3
* Remove M_SKIP_FIREWALL abuse and add more appropriate check.Jung-uk Kim2008-04-151-20/+11
* Make this file compile on IPv6 kernels.Qing Li2008-04-131-0/+2
* Make this compile also on non-IPv6 kernels.Poul-Henning Kamp2008-04-131-0/+2
* Fix the build in case RADIX_MPATH is not defined.Bjoern A. Zeeb2008-04-131-1/+3
* These files handle the radix tree for the ECMP routes.Qing Li2008-04-132-0/+396
* This patch provides the back end support for equal-cost multi-pathQing Li2008-04-135-1/+167
* Maintain and observe a ZBUF_FLAG_IMMUTABLE flag on zero-copy BPFRobert Watson2008-04-073-14/+125
* Coerce if_loop.c in the general direction of style(9):Robert Watson2008-04-071-33/+18
* Add IFF_NEEDSGIANT to IFF_CANTCHANGE, to prevent user-level codeIan Dowse2008-03-271-1/+2
* Add a comment explaining that we initialize the 'a' buffer forRobert Watson2008-03-261-0/+5
* expose if_purgemaddrs, it will be used by the vap code unless someoneSam Leffler2008-03-252-2/+2
* IFM_IEEE80211_IBSSMASTER hasn't been used in many years; replace itSam Leffler2008-03-251-2/+2
* Replaced the misleading uses of a historical artefact M_TRYWAIT with M_WAIT.Ruslan Ermilov2008-03-256-38/+11
* Check for a NULL free buffer pointer in BPF before invokingRobert Watson2008-03-251-1/+1
* Fix build with option BPF_JITTER.Jung-uk Kim2008-03-242-1/+3
* Remove redundant inclusions of net/bpfdesc.h.Jung-uk Kim2008-03-242-2/+0
* Introduce support for zero-copy BPF buffering, which reduces theChristian S.J. Peron2008-03-247-122/+1227
* back out last change as Sam believes that it breaks multicast - need to revis...Kip Macy2008-03-201-2/+1
* Don't re-initialize the interface if it is already running.Kip Macy2008-03-201-1/+2
* Replace really convoluted code that simplifies to "a ^= 0x01;"Julian Elischer2008-03-191-9/+2
* Remove extra semicolons.Andrew Thompson2008-03-171-2/+2
* Switch the LACP state machine over to its own mutex to protect the internals,Andrew Thompson2008-03-163-130/+156
* In keeping with style(9)'s recommendations on macros, use a ';'Robert Watson2008-03-164-5/+5
* Improve convergence of bpf_filter.c toward style(9).Robert Watson2008-03-091-40/+29
* Move IFF_NEEDSGIANT warning from if_ethersubr.c to if.c so it is displayedRobert Watson2008-03-072-3/+5
* Improve EtherIP interaction with the bridgeAndrew Thompson2008-03-061-2/+30