aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph/ng_bpf.c
Commit message (Expand)AuthorAgeFilesLines
* Mark MALLOC_DEFINEs static that have no corresponding MALLOC_DECLAREs.Ed Schouten2011-11-071-1/+1
* Retire the MALLOC and FREE macros. They are an abomination unto style(9).Dag-Erling Smørgrav2008-10-231-8/+8
* Make sure BPF program is not bigger than set maximum (net.bpf.maxinsns).Jung-uk Kim2008-08-291-1/+5
* Prepare hooks direct pointers on setup to avoid heavy ng_findhook() callsAlexander Motin2008-02-041-27/+66
* Avoid data copying when it is possible.Alexander Motin2008-01-281-9/+21
* Reduce stack usage by 256 bytes per call. It helps to avoid kernelAlexander Motin2007-07-261-5/+11
* Fix build without BPF_JITTER option.Jung-uk Kim2005-12-071-1/+3
* Add BPF Just-In-Time compiler support for ng_bpf(4).Jung-uk Kim2005-12-071-2/+28
* /* -> /*- for license, minor formatting changesWarner Losh2005-01-071-2/+3
* Avoid calling bpf_filter() with len == 0, which causes a change in semanticsArchie Cobbs2004-06-231-1/+4
* Switch to using C99 sparse initialisers for the type methods array.Julian Elischer2004-05-291-12/+9
* Fix GCC warnings caused by initializing a zero length array. In the process,Archie Cobbs2002-05-311-9/+7
* Update to C99, s/__FUNCTION__/__func__/,David E. O'Brien2001-12-101-1/+1
* Fix cut and paste error in a comment.Julian Elischer2001-01-301-1/+1
* Another brian fix, luckily not in live code.Julian Elischer2001-01-111-3/+1
* Fix some memory leaksJulian Elischer2001-01-101-8/+14
* Part 2 of the netgraph rewrite.Julian Elischer2001-01-081-16/+15
* Rewrite of netgraph to start getting ready for SMP.Julian Elischer2001-01-061-30/+32
* Divorce the kernel binary ABI version number from the messageJulian Elischer2000-12-181-1/+1
* Reviewed by: Archie@freebsd.orgJulian Elischer2000-12-121-2/+1
* Add the use of M_ZERO to netgraph.David Malone2000-11-181-2/+1
* Since neither archie nor I work at Whistle any more, change our emailJulian Elischer2000-10-241-1/+1
* Allocate all memory (including within node constructors) with M_NOWAITArchie Cobbs2000-09-211-2/+2
* Take advantage of the new unsigned and hex integer types.Archie Cobbs2000-08-101-4/+4
* Two simple changes to the kernel internal API for netgraph modules,Julian Elischer2000-04-281-2/+3
* Change definition of NG_BPF_HOOKPROG_SIZE() so as not to requireArchie Cobbs1999-12-061-7/+8
* New netgraph node type, ng_bpf(8). This node type allows you toArchie Cobbs1999-12-031-0/+501