Age | Commit message (Expand) | Author |
2020-08-21 | Leave default ifq_maxlen handling to ifq_init() | kn |
2020-07-22 | deprecate interface input handler lists, just use one input function. | David Gwynne |
2020-07-10 | Change users of IFQ_SET_MAXLEN() and IFQ_IS_EMPTY() to use the "new" API. | Patrick Wildt |
2020-07-10 | Change users of IFQ_DEQUEUE(), IFQ_ENQUEUE() and IFQ_LEN() to use the | Patrick Wildt |
2020-05-13 | only pass the IO_NDELAY flag to ifq_deq_sleep as the nbio argument. | David Gwynne |
2020-04-12 | Stop processing packets under non-exclusive (read) netlock. | Martin Pieuchot |
2020-04-07 | Abstract the head of knote lists. This allows extending the lists, | Visa Hankala |
2020-02-20 | Replace field f_isfd with field f_flags in struct filterops to allow | Visa Hankala |
2020-02-14 | Push the KERNEL_LOCK() insidge pgsigio() and selwakeup(). | Martin Pieuchot |
2020-01-31 | actually set the link state down when the /dev entry is closed. | David Gwynne |
2020-01-30 | device poll handlers should return POLL flags, not errnos. | David Gwynne |
2020-01-28 | Simplify filterops routines where klist_invalidate() is used. | Visa Hankala |
2020-01-27 | add some comments to tun_destroy, and try be a bit more paranoid. | David Gwynne |
2020-01-25 | move the SMR_LIST_REMOVE and smr_barrier up in tun_clone_destroy. | David Gwynne |
2020-01-25 | tweaks sleeping for an mbuf so it's more mpsafe. | David Gwynne |
2020-01-25 | use SMRs to find the right tun_softc on syscall entries. | David Gwynne |
2020-01-25 | rework the driver to better manage lifetimes and device lifetimes. | David Gwynne |
2020-01-24 | move to if_vinput() in tun_dev_write. | David Gwynne |
2020-01-24 | provide a tun_input() interface input handler for tun(4) packets. | David Gwynne |
2020-01-24 | change tun_dev_write to allocate one mbuf and cluster for the whole packet. | David Gwynne |
2020-01-23 | simplify the uiomove loop in tun_dev_read. | David Gwynne |
2020-01-23 | don't need to manage TUN_NBIO ourselves, we get IO_NDELAY for free. | David Gwynne |
2020-01-23 | provide a custom if_enqueue handler. | David Gwynne |
2020-01-23 | remove IFCAP_VLAN_MTU from tap(4). it's a lie. | David Gwynne |
2020-01-23 | unify the tun and tap output and read behaviour. | David Gwynne |
2020-01-23 | mild whitespace massaging. no functional change. | David Gwynne |
2020-01-23 | don't prototype the cdev entrypoints, sys/conf.h already does it. | David Gwynne |
2020-01-23 | remove PIPEX from tun(4) now that pppac(4) should be used instead. | David Gwynne |
2020-01-08 | Unify handling of ioctls FIOSETOWN/SIOCSPGRP/TIOCSPGRP and | Visa Hankala |
2020-01-02 | Switch tun(4) and tap(4) to use pgsigio(9) and sigio_init(9) for | Claudio Jeker |
2019-12-31 | Use C99 designated initializers with struct filterops. In addition, | Visa Hankala |
2019-11-26 | s/sc_arpcom/sc_ac/ to be consistent with other drivers. | David Gwynne |
2019-11-26 | use "sc" as the name of tun_softc variables, not "tp". | David Gwynne |
2019-11-21 | rename struct tun_softc members so they're prefixed with "sc". | David Gwynne |
2019-11-19 | take care to avoid a race when creating the same interface. | David Gwynne |
2019-10-16 | tsleep(9) -> tsleep_nsec(9) | Martin Pieuchot |
2019-09-13 | tweak tun/tap kn_data to be more consistent with everything else. | David Gwynne |
2019-09-12 | knf for the switch statement in tun_dev_kqfilter. | David Gwynne |
2019-09-12 | let userland write up to hardmtu bytes, not just mtu bytes. | David Gwynne |
2019-06-10 | don't allow userland to change if_type. | David Gwynne |
2019-05-12 | pushing NET_LOCK() further down from if_clone_{create,destroy}() | Alexandr Nedvedicky |
2019-05-01 | pretty much all of tun_wakeup needs to be protected with KERNEL_LOCK | David Gwynne |
2019-02-03 | let tun read AF_MPLS packets from userland. | David Gwynne |
2018-12-11 | use ifq_hdatalen for handling the FIONREAD ioctl | David Gwynne |
2018-11-12 | limit the number of interface units to the number of device minors | David Gwynne |
2018-02-24 | when comparing nvgre entries, compare a with b, not a with itself. | David Gwynne |
2018-01-09 | Creating a cloned interface could return ENOMEM due to temporary | Alexander Bluhm |
2017-12-30 | Don't pull in <sys/file.h> just to get fcntl.h | Philip Guenther |
2017-08-11 | Remove NET_LOCK()'s argument. | Martin Pieuchot |
2017-06-03 | Add missing NET_LOCK(). | Martin Pieuchot |