diff options
author | Jesper Dangaard Brouer <hawk@comx.dk> | 2007-11-28 08:40:26 +0000 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2007-11-28 08:40:26 +0000 |
commit | d8cb787ab44e9d2de4fd3b04fcaa370c9918fc5d (patch) | |
tree | e4824f9e346db25ff0c1fc90a2c02fda7a454fd3 /extensions/libipt_length.man | |
parent | e29da4e9610ab376593e50a44efba874a533dfe0 (diff) |
iptables/libiptc perf issue: Sorting chain during pull-out
Performance optimize scalability issue:
Sorting chain during pull-out give worst-case runtime O(Chains2).
When pulling out the blob, every chain name is inserted alphabetically
into a linked list (by function iptc_insert_chain()). The problem
with this approach is that the chain names delivered in the blob is
already sorted (as we push it back to the kernel sorted).
This cause chain parsing to always process every element in the chain
list and finish with a tail add. Causing worst-case runtime O(C2/2)
for alphabetically sorting of chains.
The patch solves this by only calling iptc_insert_chain() when
creating new chains.
Signed-off-by: Jesper Dangaard Brouer <hawk@comx.dk>
Diffstat (limited to 'extensions/libipt_length.man')
0 files changed, 0 insertions, 0 deletions