Age | Commit message (Expand) | Author |
2016-06-10 | Add the "llprio" field to struct ifnet, and the corresponding keyword | Vincent Gross |
2016-04-15 | remove ml_filter, mq_filter, niq_filter. | David Gwynne |
2016-04-13 | We're always ready! So send IFQ_SET_READY() to the bitbucket. | Martin Pieuchot |
2015-12-18 | Remove leftover prototype. | Visa Hankala |
2015-12-09 | Keep all ether prototypes in one place. | Martin Pieuchot |
2015-12-09 | rework the if_start mpsafe serialisation so it can serialise arbitrary work | David Gwynne |
2015-12-08 | if_stop is unused, so kill it. | David Gwynne |
2015-12-08 | split the interface send queue (struct ifqueue) implementation out. | David Gwynne |
2015-12-05 | Keep kernel definitions under _KERNEL to unbreak ports that include | Martin Pieuchot |
2015-12-03 | ip_send()/ip6_send() allow PF to send response packet in ipsoftnet task. | Alexandr Nedvedicky |
2015-12-03 | Use SRPL_HEAD() and SRPL_ENTRY() to be consistent with and allow to | Martin Pieuchot |
2015-12-03 | rework if_start to allow nics to provide an mpsafe start routine. | David Gwynne |
2015-12-02 | Remove forward declarations that are no longer needed, times and APIs are | Martin Pieuchot |
2015-11-27 | Keep lo(4) definitions inside if_loop.c | Martin Pieuchot |
2015-11-25 | replace IFF_OACTIVE manipulation with mpsafe operations. | David Gwynne |
2015-11-23 | There's no longer a need to include <net/hfsc.h> in <net/if_var.h> | Martin Pieuchot |
2015-11-21 | simplify ifq_deq_rollback by only having it unlock. | 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 | shuffle struct ifqueue so in flight mbufs are protected by a mutex. | David Gwynne |
2015-11-18 | Factorize the bits to check if a L2 route is connected, wether it is | Martin Pieuchot |
2015-11-11 | Store the index of the lo0 interface instead of a pointer to its | Martin Pieuchot |
2015-10-25 | Introduce if_rtrequest() the successor of ifa_rtrequest(). | Martin Pieuchot |
2015-10-24 | Add pair(4), a vether-based virtual Ethernet driver to interconnect | Reyk Floeter |
2015-10-22 | Kill link_rtrequest(), introduce in 1990 to "fix" the result | Martin Pieuchot |
2015-10-12 | the pattr argument to IFQ_ENQUEUE is unused, so let's get rid of it. | David Gwynne |
2015-10-05 | Add ifi_oqdrops and its alias to struct if_data. | Masao Uebayashi |
2015-09-30 | sleep until all references to an interface have been released during detach. | David Gwynne |
2015-09-28 | Remove "if_tp" from the "struct ifnet". | Martin Pieuchot |
2015-09-27 | pull the m_freem calls out of hfsc_enqueue by having IFQ_ENQUEUE free | David Gwynne |
2015-09-13 | There's no point in abstracting ifp->if_output() as long as pf_test() | Martin Pieuchot |
2015-09-13 | Run the interface watchdog timer routine as a task such that we have process | Mark Kettenis |
2015-09-12 | Stop overwriting the rt_ifp pointer of RTF_LOCAL routes with lo0ifp. | Martin Pieuchot |
2015-09-12 | Introduce if_input_local() a function to feed local traffic back to | Martin Pieuchot |
2015-09-10 | rework how we store and manage the interface index to ifp map in preparation ... | David Gwynne |
2015-09-10 | pass a cookie argument to interface input handlers that can be used | Mike Belopuhov |
2015-09-10 | include srp.h so userland can understand struct srpl. | David Gwynne |
2015-09-10 | move the if input handler list to an SRP list. | David Gwynne |
2015-09-09 | introduce reference counts for interfaces (ie, struct ifnet *ifp). | David Gwynne |
2015-07-02 | By design if_input_process() needs to hold a reference on the receiving | Martin Pieuchot |
2015-06-30 | Rename if_output() into if_enqueue() to avoid confusion with comments | Martin Pieuchot |
2015-06-02 | RIP ether_input_mbuf(). | Martin Pieuchot |
2015-05-28 | Kill unused IF_INPUT_ENQUEUE(). | Martin Pieuchot |
2015-05-26 | Now that the Ethernet header is always passed as part of the mbuf, kill | Martin Pieuchot |
2015-05-19 | Take vlan(4) out of ether_input(). | Martin Pieuchot |
2015-05-18 | Move the rdomain from struct ifnet into struct if_data. This way it | Reyk Floeter |
2015-05-15 | Give carp(4) interfaces their own low priority. The change should not | Claudio Jeker |
2015-05-15 | Introduce if_output(), a function do to the last steps before enqueuing | Martin Pieuchot |
2015-04-23 | replace the use of struct ifqueue in pipex with mbuf_queues. | David Gwynne |
2015-04-07 | Do not pass an `ifp' argument to interface input handlers since it | Martin Pieuchot |
2015-04-01 | create a taskq for network tasks to run in. cut ether_input_mbuf | David Gwynne |