Age | Commit message (Expand) | Author |
2022-07-14 | Turn pppoe(4) back to kernel lock. We can't predict netlock state within | Vitaliy Makkoveev |
2022-07-09 | Fix the error path of the 'SIOCSIFMTU' pppoe_ioctl() case. Return error | Vitaliy Makkoveev |
2022-06-29 | ether_input() called with shared netlock, but pppoe(4) wants it to be | Vitaliy Makkoveev |
2022-05-14 | When receiving a PADO offer, clear stored tags from previous PADO packets. | Tobias Heider |
2021-11-23 | Use system uptime not UTC time to calculate PPPoE session duration | Klemens Nanni |
2021-07-19 | Fix an alignment fault observed on an octeon machine while pppoe(4) was | Stefan Sperling |
2021-01-19 | pppoe(4): convert ifunit() to if_unit(9) | mvs |
2021-01-04 | Process pppoe(4) packets directly, do not queue through netis | kn |
2020-12-30 | Fix pppoe_dispatch_disc_pkt definition to be in accordance with style(9) | mvs |
2020-12-30 | Convert the `off' argument of pppoe_dispatch_disc_pkt function to | mvs |
2020-09-13 | Start documenting locks for struct pppoe_softc members | kn |
2020-08-21 | Leave default ifq_maxlen handling to ifq_init() | kn |
2020-08-21 | Add sizes to free(9) calls | kn |
2020-07-28 | Add missing `IFXF_CLONED' flag to clone interfaces. | mvs |
2020-07-10 | Change users of IFQ_SET_MAXLEN() and IFQ_IS_EMPTY() to use the "new" API. | Patrick Wildt |
2019-06-16 | Use timeout_add_sec(9) | kn |
2018-02-19 | Remove almost unused `flags' argument of suser(). | Martin Pieuchot |
2018-01-09 | Creating a cloned interface could return ENOMEM due to temporary | Alexander Bluhm |
2017-09-08 | If you use sys/param.h, you don't need sys/types.h | Theo de Raadt |
2017-08-11 | Remove NET_LOCK()'s argument. | Martin Pieuchot |
2017-07-19 | Fix double free in pppoe_dispatch_disc_pkt(). If m_pulldown() fails m is | Claudio Jeker |
2017-05-27 | Protect the global list of softc with the NET_LOCK(). | Martin Pieuchot |
2017-05-16 | Replace remaining splsoftassert(IPL_SOFTNET) by NET_ASSERT_LOCKED(). | Martin Pieuchot |
2017-01-22 | move counting if_opackets next to counting if_obytes in if_enqueue. | David Gwynne |
2017-01-02 | spacing | Martin Pieuchot |
2017-01-02 | pppoe_timeout() needs to take the NET_LOCK(). | Martin Pieuchot |
2016-06-14 | Don't hardcode vlan/queue priority for pppoe packets; inherit it from the | Stuart Henderson |
2016-05-30 | Set pppoe(4) control frames to high (NC, "network control") | Stuart Henderson |
2016-04-18 | Remove the hack that prevents changing pppoe params at runtime. | Mike Belopuhov |
2016-04-13 | We're always ready! So send IFQ_SET_READY() to the bitbucket. | Martin Pieuchot |
2016-04-01 | Building kernels with PPPOE_SERVER enabled has been broken for at least | Jonathan Gray |
2015-12-05 | remove old lint annotations | Ted Unangst |
2015-11-28 | Convert pppoe(4) to use if_get()/if_put(): instead of storing a | Reyk Floeter |
2015-11-20 | sppp(4) is now only used for pppoe(4) which doesn't use framing, so remove | Stuart Henderson |
2015-10-25 | Introduce if_rtrequest() the successor of ifa_rtrequest(). | Martin Pieuchot |
2015-09-13 | There's no point in abstracting ifp->if_output() as long as pf_test() | Martin Pieuchot |
2015-09-12 | Stop overwriting the rt_ifp pointer of RTF_LOCAL routes with lo0ifp. | Martin Pieuchot |
2015-06-16 | Store a unique ID, an interface index, rather than a pointer to the | Martin Pieuchot |
2015-04-10 | replace the use of ifqueues for most input queues serviced by netisr | David Gwynne |
2015-03-14 | Remove some includes include-what-you-use claims don't | Jonathan Gray |
2014-12-05 | Explicitly include <net/if_var.h> instead of pulling it in <net/if.h>. | Martin Pieuchot |
2014-11-18 | move arc4random prototype to systm.h. more appropriate for most code | Ted Unangst |
2014-08-13 | Correctly set the rtable ID of the packet header when sending | Martin Pieuchot |
2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. | Ted Unangst |
2014-06-07 | g/c unused IFT_L2VLAN, ok reyk bluhm | Henning Brauer |
2014-04-14 | "struct pkthdr" holds a routing table ID, not a routing domain one. | Martin Pieuchot |
2013-04-10 | Remove various external variable declaration from sources files and | Martin Pieuchot |
2013-03-28 | no need for a lot of code to include proc.h | Ted Unangst |
2012-04-11 | fix all the suser calls which pass an incorrect p_acflag argument; | Mike Belopuhov |
2012-01-19 | Teach pppoe(4) about RFC 4638. This allows negotiating increased MTU with | Stuart Henderson |