Age | Commit message (Expand) | Author |
2015-12-02 | Kill the RT_REPORT flag to rtalloc() and stop sending RTM_MISS messages | Claudio Jeker |
2015-12-02 | remove unimplemented PF_KEY algorithms; ok sthen@ mpi@ mikeb@ | Christian Weisgerber |
2015-12-02 | Respect priorities when inserting routes to the same destination in ART. | Martin Pieuchot |
2015-12-02 | allocate route labels as M_RTABLE instead of M_TEMP | Bret Lambert |
2015-12-02 | Move multipath Hash-Threshold selection mechanism inside rtable_match(). | Martin Pieuchot |
2015-12-02 | Rework the MPLS handling. Remove the lookup loops since nothing is using | Claudio Jeker |
2015-12-02 | Include cleanup. | Martin Pieuchot |
2015-12-02 | Remove forward declarations that are no longer needed, times and APIs are | Martin Pieuchot |
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 |