summaryrefslogtreecommitdiffstats
path: root/sys/net/if_ppp.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* M_LEADINGSPACE() and M_TRAILINGSPACE() are just wrappers forclaudio2018-11-091-4/+3
* Remove almost unused `flags' argument of suser().mpi2018-02-191-7/+7
* Creating a cloned interface could return ENOMEM due to temporarybluhm2018-01-091-5/+2
* Remove NET_LOCK()'s argument.mpi2017-08-111-14/+11
* Introduce ipv{4,6}_input(), two wrappers around IP queues.mpi2017-05-301-5/+3
* Protect the global list of softc with the NET_LOCK().mpi2017-05-271-6/+9
* Replace remaining splsoftassert(IPL_SOFTNET) by NET_ASSERT_LOCKED().mpi2017-05-161-2/+2
* No need to clear IFF_UP after calling if_down().mpi2017-03-081-2/+2
* Remove non longer needed splsoftnet()/splx() dances.mpi2017-03-031-22/+6
* Grab the NET_LOCK() in pppdealloc(), prevent an assert reported by stsp@.mpi2017-01-011-3/+4
* Kill outdated comment talking about sofnet.mpi2016-11-161-6/+2
* Remove redundant comments that say a function must be called atbluhm2016-10-061-4/+3
* No modules thus no need for extra space for additional ppp compressions.jca2016-06-221-3/+2
* remove the function pointer from mbufs. this memory is shared with datatedu2016-05-231-2/+2
* We're always ready! So send IFQ_SET_READY() to the bitbucket.mpi2016-04-131-2/+1
* correctly indent a line to make the intent clearjsg2015-11-201-2/+2
* use time_uptime instead of time_second.dlg2015-11-111-7/+7
* replace sc_npqueue and sc_npqtail with a simple mbuf_list.dlg2015-11-061-22/+11
* apply some knf.dlg2015-11-051-1001/+1051
* use mq_purge to free a queue of mbufs.dlg2015-11-041-3/+2
* get rid of the "fastq", which is where this driver puts ip packetsdlg2015-11-021-52/+5
* Introduce if_rtrequest() the successor of ifa_rtrequest().mpi2015-10-251-2/+2
* the pattr argument to IFQ_ENQUEUE is unused, so let's get rid of it.dlg2015-10-121-3/+3
* Revert if_oqdrops accounting changes done in kernel, per request from mpi@.uebayasi2015-10-051-9/+5
* Count IFQ_ENQUEUE() failure as output drop.uebayasi2015-10-051-5/+9
* m_freem() can handle NULL, do not check for this condition beforehands.deraadt2015-07-151-5/+4
* MFREE(9) is dead, long live m_freem(9)!mpi2015-07-081-2/+2
* Store a unique ID, an interface index, rather than a pointer to thempi2015-06-161-2/+2
* there's been a long standing issue in ppp on a tty/serial line where it allocates mbufs at IPL_SOFTTTY, which is above the IPL_NET the mbuf layer protects itself at.dlg2015-06-031-51/+112
* test mbuf pointers against NULL not 0jsg2015-05-131-2/+2
* replace the use of ifqueues for most input queues serviced by netisrdlg2015-04-101-25/+20
* remove the congestion handling from struct ifqueue.dlg2015-03-181-3/+2
* unifdef INET in net code as a precursor to removing the pretend option.tedu2014-12-191-13/+1
* yet more mallocarray() changes.doug2014-12-131-3/+4
* Explicitly include <net/if_var.h> instead of pulling it in <net/if.h>.mpi2014-12-051-1/+2
* Yet more #include de-duplication.krw2014-11-201-4/+1
* Fewer <netinet/in_systm.h> !mpi2014-07-221-2/+1
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-8/+8
* Use a custom ifa_rtrequest function for point-to-point interfacesmpi2014-05-051-1/+2
* remove altq special casing.henning2014-04-191-11/+3
* "struct pkthdr" holds a routing table ID, not a routing domain one.mpi2014-04-141-5/+5
* Remove the number of in_var.h inclusions by moving some functions andmpi2013-10-231-2/+1
* Uniformize drivers doing nothing with their multicast filters to makempi2013-10-191-14/+1
* do not include machine/cpu.h from a .c file; it is the responsibility ofderaadt2013-03-281-2/+1
* Remove various read-only *maxlen variables and use IFQ_MAXLEN directly.mpi2013-03-261-5/+5
* Delete needless check for NULL. From Michael W. Bombardieri.yasuoka2012-11-291-2/+2
* do not steal mbuf types (leads to a panic if M_ZEROIZE gets set onmarkus2012-11-261-3/+3
* More p_pid to p_p->ps_pid updates. OK deraadt@, guenther@claudio2012-03-281-2/+2
* Ansify ppp... function definitions.bluhm2012-01-201-50/+21
* use IF_LEN/IFQ_LEN to access and ifqueue's length field. ryan okhenning2011-07-071-2/+2