summaryrefslogtreecommitdiffstats
path: root/sys/net/if_switch.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Unused switch_port variable.akoshibe2019-05-121-4/+1
* Add port protection support to switch(4). The behavior copies that ofakoshibe2019-05-101-2/+16
* Removes the KERNEL_LOCK() from bridge(4)'s output fast-path.mpi2019-04-281-2/+2
* Fix mbuf releated crashes in switch(4). They have been found bybluhm2018-12-281-7/+10
* Stop passing `sc' when it isn't needed and use `ifp' where it's goodmpi2018-12-071-3/+2
* Remove almost unused `flags' argument of suser().mpi2018-02-191-4/+4
* Creating a cloned interface could return ENOMEM due to temporarybluhm2018-01-091-3/+1
* Remove duplicated code working around the fact that ifpromisc() requiredmpi2017-11-201-28/+3
* Move IPv4 & IPv6 incoming/forwarding path, PIPEX ppp processing andmpi2017-05-311-4/+2
* Make a kernel with switch(4) but without INET6 compile again.bluhm2017-05-121-1/+7
* Clean-up switch(4) device by removing excess prototypes, verbose debugsrzalamena2017-01-171-36/+3
* Validate the OFP header to make sure it always have a sane size, alsorzalamena2016-12-221-1/+8
* Rename "flowmax" to "maxflow" and give each switch(4) ioctl areyk2016-11-281-2/+2
* Fix panic on detach hook when interfaces get destroyed.rzalamena2016-11-221-2/+3
* Extend the DLT_OPENFLOW header to include the switch datapath id.reyk2016-11-201-4/+9
* Add new DLT_OPENFLOW link-type to allow using tcpdump to debug switch(4),reyk2016-11-161-3/+10
* Add support for partial writes in switchwrite so we can use multiplerzalamena2016-11-101-1/+30
* Remove unused function, the code is already inlined in action_outputrzalamena2016-10-281-22/+1
* When doing pktout we must run the classifier again, because some action(s)rzalamena2016-10-281-4/+1
* Add missing if_put() in the switch(4) destroy path.rzalamena2016-10-081-3/+4
* Use detach hook to notify switch(4) about interface removals instead ofrzalamena2016-10-071-12/+10
* Rename brtag_src/brtag_dst to brtag_peer/brtag_local to avoidreyk2016-09-291-8/+8
* Fix a kernel panic that happened when destroying interfaces attached torzalamena2016-09-281-8/+19
* Fixed uninitialized variable in switch_process()goda2016-09-041-2/+2
* Make per-packet allocated memory use pool in switch(4)goda2016-09-041-3/+4
* Add support for a multipoint-to-multipoint mode in vxlan(4). In thisreyk2016-09-031-2/+39
* Add switch(4) support to ifconfiggoda2016-09-021-3/+134
* Import switch(4), an in-kernel OpenFlow switch which can work alone.goda2016-09-011-0/+1374