aboutsummaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2014-04-24 10:48:32 -0400
committerNick Mathewson <nickm@torproject.org>2014-04-24 10:48:32 -0400
commit5a9ac0df99158f870f6cebc781337652b419cca9 (patch)
tree0743603f84d84500ec46a8932faab50289de7a46 /changes
parent67aa3685e7321322cbbc2bef7f87c9a885819af8 (diff)
parent17ad309d33561ee255cac70bdb9a19803f2d8c08 (diff)
downloadtor-5a9ac0df99158f870f6cebc781337652b419cca9.tar
tor-5a9ac0df99158f870f6cebc781337652b419cca9.tar.gz
Merge remote-tracking branch 'public/bug11553_025'
Diffstat (limited to 'changes')
-rw-r--r--changes/bug1155315
1 files changed, 15 insertions, 0 deletions
diff --git a/changes/bug11553 b/changes/bug11553
new file mode 100644
index 000000000..ed30ce985
--- /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.