diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-04-18 13:00:45 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-04-18 13:00:45 -0400 |
commit | bd169aa9a512857fe95fa0cbe44e4e6dbc2c800f (patch) | |
tree | 3b864e4cd291c2bd240dd7fbbf0d7e200f40dd92 /changes | |
parent | eb896d5e6f09902a760af010326b79ce82492da1 (diff) | |
parent | 0d75344b0e0eafc89db89a974e87b16564cd8f0a (diff) | |
download | tor-bd169aa9a512857fe95fa0cbe44e4e6dbc2c800f.tar.gz tor-bd169aa9a512857fe95fa0cbe44e4e6dbc2c800f.zip |
Merge remote-tracking branch 'public/bug11553_024' into bug11553_025
Conflicts:
src/or/channel.h
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug11553 | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/changes/bug11553 b/changes/bug11553 new file mode 100644 index 0000000000..ed30ce9850 --- /dev/null +++ b/changes/bug11553 @@ -0,0 +1,15 @@ + o Minor features: + - When we run out of usable circuit IDs on a channel, log only one + warning for the whole channel, and include a description of + how many circuits there were on the channel. Fix for part of ticket + #11553. + + + o Major features (performance): + - Avoid wasting cycles looking for usable circuit IDs. Previously, + when allocating a new circuit ID, we would in the worst case do a + linear scan over the entire possible range of circuit IDs before + deciding that we had exhausted our possibilities. Now, we + try 64 circuit IDs at random before deciding that we probably + won't succeed. Fix for a possible root cause of ticket + #11553. |