summaryrefslogtreecommitdiffstats
path: root/sys/netgraph/ng_atmllc.c
Commit message (Collapse)AuthorAgeFilesLines
* Mechanically substitute flags from historic mbuf allocator withglebius2012-12-051-2/+2
| | | | | | | | | malloc(9) flags within sys. Exceptions: - sys/contrib not touched - sys/mbuf.h edited manually
* - Fix potential double mbuf free: M_PREPEND may free mbuf chain and returnfjoe2011-11-061-1/+3
| | | | | | NULL but item will still have the reference ot the mbuf chain and will free it upon destruction. - Fix memory leak (unfree'd item on error path).
* Node constructor methods are supposed to be called in syscallglebius2011-04-181-6/+1
| | | | | | | context always. Convert nodes to consistently use M_WAITOK flag for memory allocation. Reviewed by: julian
* Retire the MALLOC and FREE macros. They are an abomination unto style(9).des2008-10-231-2/+2
| | | | MFC after: 3 months
* /* -> /*- for license, minor formatting changesimp2005-01-071-1/+1
|
* Switch to using C99 sparse initialisers for the type methods array.julian2004-05-291-12/+8
| | | | | | | | Should make no binary difference. Submitted by: Gleb Smirnoff <glebius@cell.sick.ru> Reviewed by: Harti Brandt <harti@freebsd.org> MFC after: 1 week
* Add a netgraph node to handle ATM LLC encapsulation. This currently handlesbenno2004-03-081-0/+278
ethernet (tested) and FDDI (not tested). The main use for this is on ADSL (or other ATM) connections where bridged ethernet is used, PPPoE being a prime example. There is no manual page as yet, I will write one shortly. Reviewed by: harti
OpenPOWER on IntegriCloud