Age | Commit message (Expand) | Author |
2017-08-11 | Remove NET_LOCK()'s argument. | Martin Pieuchot |
2017-06-03 | Add missing NET_LOCK(). | Martin Pieuchot |
2017-05-30 | sizes for free() | Theo de Raadt |
2017-05-30 | Introduce ipv{4,6}_input(), two wrappers around IP queues. | Martin Pieuchot |
2017-05-27 | Remove superflyous splnet()/splx() dances. | Martin Pieuchot |
2017-01-24 | A space here, a space there. Soon we're talking real whitespace | Kenneth R Westerback |
2017-01-22 | move counting if_opackets next to counting if_obytes in if_enqueue. | David Gwynne |
2016-12-21 | Grab the netlock when opened and closed; ok mpi, rzalamena | Mike Belopuhov |
2016-12-12 | Remove most of the splsoftnet() recursions related to cloned interfaces. | Martin Pieuchot |
2016-09-04 | When auto-creating an interface when opening a /dev/{tun,tap,switch} | Reyk Floeter |
2016-04-13 | We're always ready! So send IFQ_SET_READY() to the bitbucket. | Martin Pieuchot |
2016-03-01 | Set IFF_MULTICAST flag on tun(4) interfaces so IPv6 addresses can be assigned. | Stefan Sperling |
2016-01-31 | Convert to ulmin and uiomove to prevent integer truncations. | Stefan Kempf |
2016-01-07 | Make open(O_NONBLOCK) of tun, tap, and bpf behave like open+ioctl(FIONBIO) | Philip Guenther |
2015-12-05 | Make pppx pass packets with npppd through the device. This makes pppx work | YASUOKA Masahiko |
2015-11-20 | Prefer if_get() over if_ref() when checking if the interface has been | Martin Pieuchot |
2015-11-20 | dont needlessly clear IFF_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-10-25 | arp_ifinit() is no longer required. | Martin Pieuchot |
2015-10-25 | Introduce if_rtrequest() the successor of ifa_rtrequest(). | Martin Pieuchot |
2015-10-24 | lookup tap devices in tapkqfilter, not tun devices. | David Gwynne |
2015-10-23 | Split up tun(4) into tun(4) & tap(4). Killing the link0 magic to switch | Claudio Jeker |
2015-09-10 | dont leak an ifp reference if tun isnt ready to read. | David Gwynne |
2015-09-09 | if_put after if_get. | David Gwynne |
2015-09-01 | Replace sockaddr casts with the proper satosin(), ... calls. | Alexander Bluhm |
2015-08-28 | Fix compiling a kernel without NBPFILTER > 0. | Reyk Floeter |
2015-07-20 | Remove splassert(IPL_NET) from if_input(). | Martin Pieuchot |
2015-07-15 | m_freem() can handle NULL, do not check for this condition beforehands. | Theo de Raadt |
2015-07-08 | MFREE(9) is dead, long live m_freem(9)! | Martin Pieuchot |
2015-06-30 | Rename if_output() into if_enqueue() to avoid confusion with comments | Martin Pieuchot |
2015-06-24 | Increment if_ipackets in if_input(). | Martin Pieuchot |
2015-06-16 | Store a unique ID, an interface index, rather than a pointer to the | Martin Pieuchot |
2015-06-01 | Convert tun(4) to if_input(). | Martin Pieuchot |
2015-05-26 | move add_net_randomness from ether_input to the if_input task. | David Gwynne |
2015-05-20 | Do not increment if_opackets in if_output(). It might make sense to do | Martin Pieuchot |
2015-05-19 | splx should also be called in the error case, fix a regression | Martin Pieuchot |
2015-05-15 | Remove useless comments mentioning ether_output(). | Martin Pieuchot |
2015-05-15 | Introduce if_output(), a function do to the last steps before enqueuing | Martin Pieuchot |
2015-04-30 | Do not free & reallocate a new chunk of memory for the interface | Martin Pieuchot |
2015-04-29 | Use if_get() after every tsleep(), in case the bottom half of the driver | Theo de Raadt |
2015-04-15 | Fix a typo introduced in the niq_enqueue() conversion. | Martin Pieuchot |
2015-04-10 | replace the use of ifqueues for most input queues serviced by netisr | David Gwynne |
2015-04-01 | Kill useless comments talking about ether_input(). | Martin Pieuchot |
2015-03-18 | remove the congestion handling from struct ifqueue. | David Gwynne |
2015-03-14 | Remove some includes include-what-you-use claims don't | Jonathan Gray |
2015-02-10 | First step towards making uiomove() take a size_t size argument: | Miod Vallat |
2015-01-21 | Delete option COMPAT_43: support for pre-sa_len binaries has been obsolete | Philip Guenther |
2014-12-19 | unifdef INET in net code as a precursor to removing the pretend option. | Ted Unangst |
2014-10-21 | tun(4) has a pipex session which is used for multicast internally, it | YASUOKA Masahiko |