Age | Commit message (Expand) | Author |
2015-12-01 | Kill redundant or unused arguments in rtredirect(). | Martin Pieuchot |
2015-12-01 | Split functions in if_bridge.c into if_bridge.c bridgectl.c . | Kazuya Goda |
2015-12-01 | Iterating on &ifnet should only be done with the KERNEL_LOCK held. | Vincent Gross |
2015-12-01 | Fix bridge to forward broadcast/multicast frames from gif. | Kazuya Goda |
2015-11-29 | Convert the simple list of multipath route entries used by ART kernels | Martin Pieuchot |
2015-11-28 | Convert pppoe(4) to use if_get()/if_put(): instead of storing a | Reyk Floeter |
2015-11-28 | Delete sc_root_port which became unused when RSTP is merged. | YASUOKA Masahiko |
2015-11-27 | Keep "struct vxlan_softc" private to prevent pulling more headers when | Martin Pieuchot |
2015-11-27 | Keep lo(4) definitions inside if_loop.c | Martin Pieuchot |
2015-11-27 | Document that routing table heads are never freed as suggested by dlg@ | Martin Pieuchot |
2015-11-27 | Protect the growth of the routing table arrays used by rtable_get() | Martin Pieuchot |
2015-11-25 | replace IFF_OACTIVE manipulation with mpsafe operations. | David Gwynne |
2015-11-24 | No need for <net/ethertypes.h> it is part of <netinet/if_ether.h> | Martin Pieuchot |
2015-11-24 | No need for <net/if_types.h> | Martin Pieuchot |
2015-11-24 | in art_insert, if at_default on the first table is set then return the | David Gwynne |
2015-11-24 | Provide art_free(), a method to release unused routing table heads. | Martin Pieuchot |
2015-11-23 | There's no longer a need to include <net/hfsc.h> in <net/if_var.h> | Martin Pieuchot |
2015-11-23 | if_start needs splnet. help/ok dlg@ | Stuart Henderson |
2015-11-23 | Include <sys/atomic.h> when atomic operations are used. | Martin Pieuchot |
2015-11-21 | Add a comment after every #endif | Martin Pieuchot |
2015-11-21 | dont check IFF_OACTIVE to see if the port is busy. | David Gwynne |
2015-11-21 | simplify ifq_deq_rollback by only having it unlock. | David Gwynne |
2015-11-20 | Initialise the ifidx to 0 (no interface) in rtredirect() to avoid using | Jonathan Gray |
2015-11-20 | Keep if_ref() private, if_get() is what you want to use before if_put(). | Martin Pieuchot |
2015-11-20 | Prefer if_get() over if_ref() when checking if the interface has been | Martin Pieuchot |
2015-11-20 | sppp(4) is now only used for pppoe(4) which doesn't use framing, so remove | Stuart Henderson |
2015-11-20 | avoid a use after enqueue, which is like a use after free. | David Gwynne |
2015-11-20 | i made a mistake. rename ifq_enq and ifq_deq to ifq_enqueue and ifq_dequeue | David Gwynne |
2015-11-20 | Make use if_get() and get rid of rt_ifp. | Martin Pieuchot |
2015-11-20 | fix prio KASSERT, it should be <= not <. ok dlg@ | Stuart Henderson |
2015-11-20 | correctly indent a line to make the intent clear | Jonathan Gray |
2015-11-20 | dont needlessly clear IFF_OACTIVE. | David Gwynne |
2015-11-20 | dont play with IFF_OACTIVE needlessly. | David Gwynne |
2015-11-20 | dont check for IFF_OACTIVE | David Gwynne |
2015-11-20 | dont check for OACTIVE | David Gwynne |
2015-11-20 | if we deq m0, we should probably send it to bpf, not m. | David Gwynne |
2015-11-20 | shuffle struct ifqueue so in flight mbufs are protected by a mutex. | David Gwynne |
2015-11-18 | Do not dereference rt_ifp to call if_rtrequest. | Martin Pieuchot |
2015-11-18 | Factorize the bits to check if a L2 route is connected, wether it is | Martin Pieuchot |
2015-11-18 | Revert previous workaround now that multipath route selection has been | Martin Pieuchot |
2015-11-18 | Multipath selection should be done before caching the next hop. | Martin Pieuchot |
2015-11-17 | Unbreak next-hop caching on multipath setups. | Martin Pieuchot |
2015-11-15 | Add ifmedia definitions for 802.11n. | Stefan Sperling |
2015-11-14 | mutli -> multi | Miod Vallat |
2015-11-13 | Sore the index of the interface used for revarp instead of a pointer to | Martin Pieuchot |
2015-11-12 | Allocate root tables on demand an free them like any other table. | Martin Pieuchot |
2015-11-12 | Prefix flowid with ph_ and print it in m_print(). | Martin Pieuchot |
2015-11-11 | Remove an XXX that no longer makes sense, rt_ifp is now always the same | Martin Pieuchot |
2015-11-11 | Store the index of the lo0 interface instead of a pointer to its | Martin Pieuchot |
2015-11-11 | replace the ifqueue used for the pp_cpq with an mbuf_queue. | David Gwynne |