summaryrefslogtreecommitdiff
path: root/sys/net
AgeCommit message (Expand)Author
2020-04-01Disallow session timeout on pppx(4).Martin Pieuchot
2020-03-26Unify #ifdef guarding code to remove PPTP and L2TP sessions.Martin Pieuchot
2020-03-25Grab the NET_LOCK() before calling pipex_iface_stop().Martin Pieuchot
2020-03-24Remove redundant 'NULL' check for 'rtm'.tobhe
2020-03-21r1.244 introduced rt_hash() with careful checks of src for NULL atKenneth R Westerback
2020-03-18Plug mem leak in SADB_REGISTER.Martin Pieuchot
2020-03-11properly limit indexing into the aggr_periodic_times array.David Gwynne
2020-03-10The return value of rt_ifa_purge() is ignored, so stopKenneth R Westerback
2020-03-10Properly exit loop at end of hooks TAILQ.tobhe
2020-03-10Make sure return value 'error' is initialized to '0'.tobhe
2020-02-20Replace field f_isfd with field f_flags in struct filterops to allowVisa Hankala
2020-02-18pppx(4): rwsleep(9) -> rwsleep_nsec(9); ok claudio@cheloha
2020-02-18Cleanup <sys/kthread.h> and <sys/proc.h> includes.Martin Pieuchot
2020-02-15Remove needless #ifdef.YASUOKA Masahiko
2020-02-14Push the KERNEL_LOCK() insidge pgsigio() and selwakeup().Martin Pieuchot
2020-02-01replace vlan instance SRP lists with SMR_SLISTsJonathan Matthew
2020-01-31actually set the link state down when the /dev entry is closed.David Gwynne
2020-01-30device poll handlers should return POLL flags, not errnos.David Gwynne
2020-01-28Simplify filterops routines where klist_invalidate() is used.Visa Hankala
2020-01-27update bpf_iflist in bpfsdetach instead of bpfdetach as some driversJoshua Stein
2020-01-27add some comments to tun_destroy, and try be a bit more paranoid.David Gwynne
2020-01-25move the SMR_LIST_REMOVE and smr_barrier up in tun_clone_destroy.David Gwynne
2020-01-25tweaks sleeping for an mbuf so it's more mpsafe.David Gwynne
2020-01-25use SMRs to find the right tun_softc on syscall entries.David Gwynne
2020-01-25rework the driver to better manage lifetimes and device lifetimes.David Gwynne
2020-01-24add pf.h include for NPF > 0 use added in rev 1.71Jonathan Gray
2020-01-24cleanup unused headers generated by configJonathan Gray
2020-01-24move to if_vinput() in tun_dev_write.David Gwynne
2020-01-24provide a tun_input() interface input handler for tun(4) packets.David Gwynne
2020-01-24change tun_dev_write to allocate one mbuf and cluster for the whole packet.David Gwynne
2020-01-23simplify the uiomove loop in tun_dev_read.David Gwynne
2020-01-23don't need to manage TUN_NBIO ourselves, we get IO_NDELAY for free.David Gwynne
2020-01-23provide a custom if_enqueue handler.David Gwynne
2020-01-23remove IFCAP_VLAN_MTU from tap(4). it's a lie.David Gwynne
2020-01-23unify the tun and tap output and read behaviour.David Gwynne
2020-01-23mild whitespace massaging. no functional change.David Gwynne
2020-01-23don't prototype the cdev entrypoints, sys/conf.h already does it.David Gwynne
2020-01-23remove PIPEX from tun(4) now that pppac(4) should be used instead.David Gwynne
2020-01-23fix some ioctl/kq weirdness in the pppx(4) side of things.David Gwynne
2020-01-22add pppac(4) code for a dedicated PPP Access Concentrator interface.David Gwynne
2020-01-08Check address family of pf ioctl(2) DIOCNATLOOK parameter at kernelAlexander Bluhm
2020-01-08Unify handling of ioctls FIOSETOWN/SIOCSPGRP/TIOCSPGRP andVisa Hankala
2020-01-08Fix confusion around rtlabelid and rtableid in rt_ifa_add() and rt_ifa_del().Claudio Jeker
2020-01-08In loop_clone_destroy() reset the rdomain with rtable_l2set() afterClaudio Jeker
2020-01-02Switch bpf to use pgsigio(9) and sigio_init(9) instead of handrollingClaudio Jeker
2020-01-02Switch tun(4) and tap(4) to use pgsigio(9) and sigio_init(9) forClaudio Jeker
2019-12-31Use C99 designated initializers with struct filterops. In addition,Visa Hankala
2019-12-23when aggr(4) comes up, check port link state to push the rxm forward.David Gwynne
2019-12-19poll handlers must return a poll(2) revents value, not errno(2) values.Reyk Floeter
2019-12-15Add a missing unlock.Visa Hankala