summaryrefslogtreecommitdiffstats
path: root/sys/net/if_aggr.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* big numbers need suffixes on some platforms. fix LACP_ADDR_SLOW_E64.dlg2021-02-281-2/+2
* put the mac addr into a uint64_t to compare it to the ethernet slow addr.dlg2021-02-271-5/+9
* aggr(4): convert ifunit() to if_unit(9)mvs2021-01-191-16/+21
* Rename the macro MCLGETI to MCLGETL and removes the dead parameter ifp.jan2020-12-121-2/+2
* Leave default ifq_maxlen handling to ifq_init()kn2020-08-211-2/+1
* deprecate interface input handler lists, just use one input function.dlg2020-07-221-12/+27
* Change users of IFQ_SET_MAXLEN() and IFQ_IS_EMPTY() to use the "new" API.patrick2020-07-101-2/+2
* make ph_flowid in mbufs 16bits by storing whether it's set in csum_flags.dlg2020-06-171-6/+4
* When the set of ports in an aggr changes, set the aggr capabilities tojmatthew2020-06-021-13/+14
* take NET_LOCK in aggr_clone_destroy() before calling aggr_p_dtor()dlg2020-04-121-1/+3
* properly limit indexing into the aggr_periodic_times array.dlg2020-03-111-3/+2
* when aggr(4) comes up, check port link state to push the rxm forward.dlg2019-12-231-3/+2
* Add a missing unlock.visa2019-12-151-1/+2
* use sockaddr_storage to store the address used to generate mcast entries.dlg2019-12-111-8/+11
* you still need newlines when using log(9). add some errnos while here.dlg2019-11-111-25/+34
* whitespace fixes, no functional change.dlg2019-11-091-23/+23
* move the port destructor calls in clone destroy back out of NET_LOCK.dlg2019-11-071-4/+5
* turn the linkstate hooks into a task list, like the detach hooks.dlg2019-11-071-5/+5
* replace the hooks used with if_detachhooks with a task list.dlg2019-11-061-9/+9
* try to be more compliant with the spec by implementing marker responses.dlg2019-08-051-2/+64
* generate the actor info per port to send to userland.dlg2019-07-201-1/+8
* just use LINK_STATE_IS_UP to see if a port has link.dlg2019-07-201-8/+2
* try to notify the partner when the port is going away or down.dlg2019-07-191-1/+16
* default (ie, reset) the partner info when a ports link goes down.dlg2019-07-191-1/+3
* export all the partner info to userland, not just what ifconfig prints.dlg2019-07-191-1/+14
* make the UCT in the rxm generate debug outputdlg2019-07-181-3/+8
* run the selection logic from the rxm current state if the port is unselecteddlg2019-07-181-9/+6
* bulk up the debug output around selection logicdlg2019-07-181-7/+41
* replace ether_{cmp,is_eq,is_zero} with the new ones in netinet/if_ether.hdlg2019-07-181-13/+10
* pretend to handle setting trunkproto, but only support setting it to lacpdlg2019-07-051-1/+14
* fix the $OpenBSD$ tagdlg2019-07-051-1/+1
* initialise sc_lacp_timeout to AGGR_LACP_TIMEOUT_SLOW, not 0;dlg2019-07-051-1/+1
* iterate over distributing ports when populating the tx map, not all portsdlg2019-07-051-1/+1
* init the log of tx times to somewhere in the past when adding a port.dlg2019-07-051-0/+5
* move a declaration before a statement.dlg2019-07-051-1/+2
* report a port as active to userland if it is muxeddlg2019-07-051-0/+2
* tweak mtu handling and propagate mtu setting to trunkportsdlg2019-07-051-1/+66
* add aggr(4), a dedicated driver that implements 802.1AX link aggregationdlg2019-07-051-0/+2670