aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph/ng_source.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-1/+1
| | | | | | | Merge M_NOWAIT/M_DONTWAIT into a single flag M_NOWAIT. Notes: svn path=/head/; revision=109623
* SMP locking for ifnet list.Jeffrey Hsu2002-12-221-0/+2
| | | | Notes: svn path=/head/; revision=108172
* o Untangle the confusion with the malloc flags {M_WAITOK, M_NOWAIT} andBosko Milekic2002-12-191-1/+1
| | | | | | | | | | | | | the mbuf allocator flags {M_TRYWAIT, M_DONTWAIT}. o Fix a bpf_compat issue where malloc() was defined to just call bpf_alloc() and pass the 'canwait' flag(s) along. It's been changed to call bpf_alloc() but pass the corresponding M_TRYWAIT or M_DONTWAIT flag (and only one of those two). Submitted by: Hiten Pandya <hiten@unixdaemons.com> (hiten->commit_count++) Notes: svn path=/head/; revision=108107
* Slight redesign for fitting in with -current.Julian Elischer2002-11-051-27/+50
| | | | Notes: svn path=/head/; revision=106435
* The easy part of converting the ng_source node to -current.Julian Elischer2002-11-021-54/+50
| | | | | | | More to come.. does not compile (deliberatly.. logic broken) Notes: svn path=/head/; revision=106321
* Whitespace fixesJulian Elischer2002-11-021-47/+28
| | | | Notes: svn path=/head/; revision=106319
* Add the netgraph 'source' module.Julian Elischer2002-10-311-0/+682
This is NOT YET CONVERTED TO -current. This node is a source for preprogrammed packets at a known rate for testing. I will convert it to -current "in place" but will MFC teh original pre-conversion variant as that is what is originally submitted. Man page my me, info from Dave's README. Submitted by: Dave Chapeskie <dchapeskie@SANDVINE.com> Obtained from: Sandvine inc. MFC after: 1 week Notes: svn path=/head/; revision=106266