summaryrefslogtreecommitdiff
path: root/sys/net/if.c
AgeCommit message (Expand)Author
2016-12-29Change NET_LOCK()/NET_UNLOCK() to be simple wrappers aroundMartin Pieuchot
2016-12-21Generate an IFINFO message when changing the MTU of an interface.Jeremie Courreges-Anglas
2016-12-20Grab the netlock during interface attach and detach.Mike Belopuhov
2016-12-19Introduce the NET_LOCK() a rwlock used to serialize accesses to the partsMartin Pieuchot
2016-12-12Remove most of the splsoftnet() recursions related to cloned interfaces.Martin Pieuchot
2016-12-02Clean up leftovers from r1.442.Vincent Gross
2016-11-28Remove simple recursive splsoftnet() calls inside ifioctl().Martin Pieuchot
2016-11-21Enforce that pr_usrreq functions are called at IPL_SOFTNET.Martin Pieuchot
2016-11-14Automatically set ::1 on all default lo(4) interfaces.Martin Pieuchot
2016-11-14It should be possible to create the default loopback interface.Martin Pieuchot
2016-11-14Automatically create a default lo(4) interface per rdomain.Martin Pieuchot
2016-11-08No longer need radix.hMartin Pieuchot
2016-11-08RIP ifa_ifwithnet()Martin Pieuchot
2016-10-19Remove the if_input task from the correct taskq.YASUOKA Masahiko
2016-10-16m_resethdr() clears information attached to a mbuf that has beenAlexander Bluhm
2016-10-09This needs radix.h because it uses rn_refines().Claudio Jeker
2016-10-07Use detach hook to notify switch(4) about interface removals instead ofRafael Zalamena
2016-10-03Use detach hook to notify bridge of interface removal instead of addingRafael Zalamena
2016-09-28Fix a kernel panic that happened when destroying interfaces attached toRafael Zalamena
2016-09-22Raise spl level to IPL_SOFTNET before calling rt_ifmsg().Martin Pieuchot
2016-09-20Create and destroy cloneable interfaces under splsoftnetMike Belopuhov
2016-09-13Split if_linkstate_task() in two to avoid SPL recursion when theMartin Pieuchot
2016-09-08Replace two if/do/while dances by while loops.Martin Pieuchot
2016-09-07Rename rtable_mpath_next() into rtable_iterate() and make it do a properMartin Pieuchot
2016-09-05Rename if_linkstate() to if_linkstate_task() and make sure that all callersClaudio Jeker
2016-09-04Prevent a race between a thread detaching an interface and the watchdogMartin Pieuchot
2016-09-04When auto-creating an interface when opening a /dev/{tun,tap,switch}Reyk Floeter
2016-09-04Move code to change the rdomain of an interface from the ioctl switch caseReyk Floeter
2016-09-04Purge routes attached to an address when this address is removed.Martin Pieuchot
2016-09-03Remove routes added by the kernel before userland ones.Martin Pieuchot
2016-09-03Use per-ifp tasks to process incoming packets.Martin Pieuchot
2016-09-01Import switch(4), an in-kernel OpenFlow switch which can work alone.Kazuya Goda
2016-08-11take TASKQ_CANTSLEEP way from the softnet taskq.David Gwynne
2016-07-13Move ARP processing back to the KERNEL_LOCK()ed task until the raceMartin Pieuchot
2016-07-12Directly drop packets filtered by bpf(4) instead of going through theMartin Pieuchot
2016-06-10Add the "llprio" field to struct ifnet, and the corresponding keywordVincent Gross
2016-05-18rework the srp api so it takes an srp_ref struct that the caller provides.David Gwynne
2016-05-10make bpf_mtap callers set the M_FILDROP flag if they care about it.David Gwynne
2016-05-08Do not export the IFXF_MPSAFE flag to userland, it is a kernel-onlyMartin Pieuchot
2016-05-03Stop using a soft-interrupt context to process incoming network packets.Martin Pieuchot
2016-03-16if ticks diverge from ifq_congestion too far the diff will go negativeDavid Gwynne
2016-03-07Sync no-argument function declaration and definition by adding (void).Christian Weisgerber
2016-03-02provide generic ioctls for managing an interfaces parentDavid Gwynne
2016-02-28Support for running Linux binaries under emulation is going away.Christian Weisgerber
2015-12-09rework the if_start mpsafe serialisation so it can serialise arbitrary workDavid Gwynne
2015-12-08Kill unused iftxlist.Martin Pieuchot
2015-12-08split the interface send queue (struct ifqueue) implementation out.David Gwynne
2015-12-05remove old lint annotationsTed Unangst
2015-12-04Grab the KERNEL_LOCK() around bridge_output().Martin Pieuchot
2015-12-03Use SRPL_HEAD() and SRPL_ENTRY() to be consistent with and allow toMartin Pieuchot