| Commit message (Expand) | Author | Age | Files | Lines |
| * | Unbreak LINT build, caused by a change in struct ng_node layout introduced | Marko Zec | 2009-05-05 | 1 | -0/+1 |
| * | In preparation to make options VIMAGE operational, where needed, | Marko Zec | 2009-04-26 | 1 | -2/+28 |
| * | To avoid one doubtless netgraph SMP scalability limitation point, switch | Alexander Motin | 2008-12-14 | 1 | -13/+32 |
| * | Revert rev. 183277: | Alexander Motin | 2008-12-13 | 1 | -8/+2 |
| * | Conditionally compile out V_ globals while instantiating the appropriate | Marko Zec | 2008-12-10 | 1 | -1/+14 |
| * | Unhide declarations of network stack virtualization structs from | Marko Zec | 2008-11-28 | 1 | -1/+0 |
| * | Remove unneeded NULL check. At first msg can't be null here and and at second | Alexander Motin | 2008-11-22 | 1 | -2/+1 |
| * | Retire the MALLOC and FREE macros. They are an abomination unto style(9). | Dag-Erling Smørgrav | 2008-10-23 | 1 | -4/+4 |
| * | Step 1.5 of importing the network stack virtualization infrastructure | Marko Zec | 2008-10-02 | 1 | -1/+5 |
| * | Add ng_rmnode_flags() so the caller can pass NG_QUEUE and have the node | Andrew Thompson | 2008-09-22 | 1 | -2/+8 |
| * | We can't implicitly trust the hook on NGQF_FN/NGQF_FN2 processing in | Alexander Motin | 2008-09-13 | 1 | -6/+14 |
| * | A bunch of formatting fixes brough to light by, or created by the Vimage commit | Julian Elischer | 2008-08-20 | 1 | -1/+1 |
| * | Commit step 1 of the vimage project, (network stack) | Bjoern A. Zeeb | 2008-08-17 | 1 | -8/+9 |
| * | Remove NETISR_MPSAFE, which allows specific netisr handlers to be directly | Robert Watson | 2008-07-04 | 1 | -2/+1 |
| * | ng_address_hook() microoptimization. Use local variables as they should be. | Alexander Motin | 2008-04-19 | 1 | -7/+5 |
| * | Use separate UMA zone for data items allocation. It is a partial | Alexander Motin | 2008-04-16 | 1 | -40/+70 |
| * | Several changes breaking netgraph module ABI collected together: | Alexander Motin | 2008-04-15 | 1 | -104/+91 |
| * | Add memory barriers to the node locking operations. | Alexander Motin | 2008-04-09 | 1 | -18/+32 |
| * | Rewrite node's r/w/q-lock semantics using only atomics instead of mutex | Alexander Motin | 2008-04-06 | 1 | -247/+76 |
| * | Use new atomic_fetchadd() primitive instead of looping atomic_cmpset(). | Alexander Motin | 2008-03-30 | 1 | -8/+5 |
| * | There is no need to erase hook->hk_node before freing hook. | Alexander Motin | 2008-03-29 | 1 | -3/+1 |
| * | Remove ng_setisr() call from ng_dequeue(). It is useless as we any way | Alexander Motin | 2008-03-27 | 1 | -11/+0 |
| * | Remove impossible (hk_peer == NULL) check from ng_address_hook(). | Alexander Motin | 2008-03-16 | 1 | -1/+0 |
| * | Improve apply callback error reporting: | Alexander Motin | 2008-03-11 | 1 | -8/+25 |
| * | Increase default queue items allocation limit from 512 to 4096 items | Alexander Motin | 2008-03-05 | 1 | -2/+16 |
| * | Implement 128 items node name hash for faster name search. | Alexander Motin | 2008-03-04 | 1 | -46/+69 |
| * | Fix incorrect constant used in rev. 1.146 that broke node writer locking. | Alexander Motin | 2008-02-25 | 1 | -1/+1 |
| * | Cleanup and tune ng_snd_item() function as it is one of the | Alexander Motin | 2008-02-06 | 1 | -95/+42 |
| * | Fix one more grammo. | Dmitry Morozovsky | 2008-02-02 | 1 | -1/+1 |
| * | Reword recent comment a bit. | Dmitry Morozovsky | 2008-02-01 | 1 | -3/+3 |
| * | Add comments about stack protection mechanism. | Alexander Motin | 2008-02-01 | 1 | -0/+8 |
| * | Some code reformat. | Alexander Motin | 2008-01-31 | 1 | -55/+38 |
| * | Implement stack protection based on GET_STACK_USAGE() macro. | Alexander Motin | 2008-01-31 | 1 | -8/+22 |
| * | Add a new 'why' argument to kdb_enter(), and a set of constants to use | Robert Watson | 2007-12-25 | 1 | -2/+2 |
| * | - Merge all the ng_send_fn2* functions into one - ng_send_fn2(), | Gleb Smirnoff | 2007-11-14 | 1 | -77/+36 |
| * | Minor debug message fix. | Alexander Motin | 2007-10-28 | 1 | -1/+1 |
| * | Fix build with NETGRAPH_DEBUG. | Ruslan Ermilov | 2007-10-19 | 1 | -1/+9 |
| * | Implement new apply callback mechanism to handle item forwarding. | Alexander Motin | 2007-10-19 | 1 | -65/+182 |
| * | Add ng_send_fn() error handeling inside ng_con_nodes(). | Alexander Motin | 2007-08-18 | 1 | -2/+5 |
| * | Despite several examples in the kernel, the third argument of | David Malone | 2007-06-04 | 1 | -1/+1 |
| * | Partially back out rev. 1.127, to restore broken functionality. This | Gleb Smirnoff | 2007-06-01 | 1 | -5/+4 |
| * | Universally adopt most conventional spelling of acquire. | Robert Watson | 2007-05-27 | 1 | -1/+2 |
| * | We don't need spinning locks here. Change them to the adaptive mutexes. This | Wojciech A. Koszek | 2007-03-31 | 1 | -6/+6 |
| * | Instead of direct manipulation on queue and worklist mutexes, bring macros | Wojciech A. Koszek | 2007-03-30 | 1 | -27/+40 |
| * | Prefer more traditional spellings of some words in comments. | Robert Watson | 2007-03-18 | 1 | -15/+15 |
| * | oops committed the wrong patch. | Julian Elischer | 2007-03-10 | 1 | -6/+10 |
| * | ng_apply_item should be void. It is called from the interrupt source or | Julian Elischer | 2007-03-09 | 1 | -14/+85 |
| * | Do not leak hooks in ng_bypass(). | Gleb Smirnoff | 2006-10-11 | 1 | -0/+3 |
| * | When counting nodes second time, use the same criteria as for | Gleb Smirnoff | 2006-06-07 | 1 | -4/+4 |
| * | Use NET_CALLOUT_MPSAFE for netgraph callout initializer. | Gleb Smirnoff | 2006-06-06 | 1 | -2/+0 |