aboutsummaryrefslogtreecommitdiff
path: root/sys/net
Commit message (Expand)AuthorAgeFilesLines
...
* Check return value of m_pullup() in firewire_input().Robert Watson2007-05-191-0/+2
* Fix a mbuf leak where sc_start fails or the protocol is none.Andrew Thompson2007-05-191-2/+4
* Fix locking assert where we should hold the reader lock.Andrew Thompson2007-05-182-2/+2
* Update the comments on if_alloc(), if_free(), if_free_type(), andBrooks Davis2007-05-161-12/+26
* The struct if_data members ifi_recvquota and ifi_xmitquota have beenBrooks Davis2007-05-162-4/+2
* Fix unused variable error with !INET6Andrew Thompson2007-05-151-1/+2
* Feed ipv6 flowlabel to hash calculation.Andrew Thompson2007-05-151-1/+3
* Change from a mutex to a read/write lock. This allows the tx port to beAndrew Thompson2007-05-154-83/+132
* Add prototypes for ether_aton_r() and ether_ntoa_r() missed in previousRobert Watson2007-05-131-0/+2
* Integrate the Camellia Block Cipher. For more information see RFC 4132George V. Neville-Neil2007-05-091-0/+2
* - Correctly check if lp_ioctl is nullAndrew Thompson2007-05-071-20/+9
* The purgemulti call is not needed since all the ports have already been detac...Andrew Thompson2007-05-071-3/+0
* Call if_setlladdr() on the aggregation port from a taskqueue so the softc lockAndrew Thompson2007-05-072-5/+89
* Avoid touching various unsafe parts if the interface is disappearing.Andrew Thompson2007-05-073-8/+16
* Change from using if_delmulti() to if_delmulti_ifma() as it simplifies the codeAndrew Thompson2007-05-074-81/+37
* Fix flag descriptions.Andrew Thompson2007-05-031-2/+2
* - Add a disabled state for ports that can not be aggregatedAndrew Thompson2007-05-033-6/+21
* Fix a couple of typos in a comment.Yaroslav Tykhiy2007-05-021-2/+2
* Set the master flag on the right variable.Andrew Thompson2007-05-021-1/+1
* Test for IFM_FDX rather than IFM_HDX as the half-duplex bit may not be set evenAndrew Thompson2007-05-021-1/+1
* Rename the trunk(4) driver to lagg(4) as it is too similar to vlan trunking.Andrew Thompson2007-04-179-1916/+1916
* Fix a case where the multicast addresses were not removed from some ports. TheAndrew Thompson2007-04-121-32/+49
* Fix an uninitialized variable warning.Andrew Thompson2007-04-101-1/+1
* Add the trunk(4) driver for providing link aggregation, failover and faultAndrew Thompson2007-04-107-0/+3872
* Fix regression in rev. 1.140.Gleb Smirnoff2007-03-271-6/+7
* Fix a case where hardware removal of an interface caused an attempt toBruce M Simpson2007-03-272-5/+13
* Fix some statements in disc(4) and about it:Yaroslav Tykhiy2007-03-261-1/+1
* Give a hint that softc can contain many things besides ifp.Yaroslav Tykhiy2007-03-261-0/+5
* We no longer embed ifnet in softc, and the pointer to ifnetYaroslav Tykhiy2007-03-261-4/+4
* Introduce a new toy interface, edsc(4). It's a discard interfaceYaroslav Tykhiy2007-03-261-0/+349
* Fix a typo, and update a comment.Bruce M Simpson2007-03-221-3/+2
* When working on an RTM_CHANGE do the route editing in the followingGleb Smirnoff2007-03-221-18/+17
* Make the m_pullup() diagnostic message compile-time conditional on DIAGNOSTIC.Bruce M Simpson2007-03-201-0/+2
* Fix tinderbox; ng_ether needs to see if_findmulti().Bruce M Simpson2007-03-202-3/+3
* Implement reference counting for ifmultiaddr, in_multi, and in6_multiBruce M Simpson2007-03-202-39/+195
* etherbroadcastaddr is now unused.Andrew Thompson2007-03-191-3/+0
* M_BCAST & M_MCAST are now set by ether_input before passing to the bridge.Andrew Thompson2007-03-191-7/+1
* Clean up the ether_input() path by using the M_PROMISC flag.Bruce M Simpson2007-03-191-120/+125
* Add a sysctl net.link.tap.up_on_open which defaults to zero; when itBruce M Simpson2007-03-191-1/+6
* Now <net/if_arp.h> is unused here.Yaroslav Tykhiy2007-03-191-1/+0
* Fix a nameless constant: 6 -> ETHER_ADDR_LENYaroslav Tykhiy2007-03-191-1/+1
* Now that this driver uses ether_ioctl(), it no longer needsYaroslav Tykhiy2007-03-191-6/+0
* Give a chance for packet to appear with a correct input interfacesRoman Kurakin2007-03-181-30/+50
* Remove a spurious blank line at the start of vlan_growhash().Yaroslav Tykhiy2007-03-151-1/+4
* Properly move the setting of bstp_linkstate_p to the bridgestp module.Andrew Thompson2007-03-142-2/+1
* Let vlan_ioctl() pass some work on to ether_ioctl()Yaroslav Tykhiy2007-03-141-25/+1
* Emit load and unload messages under bootverbose.Yaroslav Tykhiy2007-03-121-0/+11
* Fix some minor issues in the internal vlan lists:Yaroslav Tykhiy2007-03-121-20/+6
* Change the passing of callbacks to a struct in case this needs to be extended...Andrew Thompson2007-03-093-6/+14
* Add Ethertype for 802.3ad LACP.Bruce M Simpson2007-03-071-0/+1