diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-04-24 10:48:32 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-04-24 10:48:32 -0400 |
commit | 5a9ac0df99158f870f6cebc781337652b419cca9 (patch) | |
tree | 0743603f84d84500ec46a8932faab50289de7a46 /changes | |
parent | 67aa3685e7321322cbbc2bef7f87c9a885819af8 (diff) | |
parent | 17ad309d33561ee255cac70bdb9a19803f2d8c08 (diff) | |
download | tor-5a9ac0df99158f870f6cebc781337652b419cca9.tar.gz tor-5a9ac0df99158f870f6cebc781337652b419cca9.zip |
Merge remote-tracking branch 'public/bug11553_025'
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. |