This is an automated email from the git hooks/post-receive script.
dgoulet pushed a change to branch release-0.4.7 in repository tor.
from f0e0957080 Merge branch 'maint-0.4.7' into release-0.4.7 new d634a5ebc7 relay: Remove unused conn->ext_or_conn_id new 9e9d6f2fe5 Merge branch 'maint-0.4.7' into release-0.4.7 new 87e820a0c5 metrics: Add stats for num circ reaching max cell outq new c565ef9c58 metrics: Add running average of CC cwnd when exiting slow start new a0e72fcb97 metrics: Add running average of CC cwnd when closing circuit new 62ce557b0b metrics: Add stats when reaching vegas delta or ss_cwnd_max new f270d20cb0 changes: Add file for ticket 40708 new 83fdaff7c0 metrics: Add running average of CC cwnd in slow start when closing circuit new 2f7e05d89d metrics: Add stats when the clock stalls. new fec9757a37 metrics: Add flow control metrics. new 2066e0494c math: Replace naughty macro by an inline function new fde87096c3 Merge branch 'tor-gitlab/mr/650' into maint-0.4.7 new 09f59ae7af Merge branch 'maint-0.4.7' into release-0.4.7 new 00633bc619 metrics: Report amount of cwnd drop from delta and gamma new 9dd62fb04b Merge branch 'maint-0.4.7' into release-0.4.7
The 15 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference.
Summary of changes: changes/ticket40648 | 3 + changes/ticket40708 | 3 + src/core/mainloop/connection.c | 2 - src/core/or/circuitlist.c | 34 +++++++++ src/core/or/circuitlist.h | 4 ++ src/core/or/congestion_control_common.c | 11 +++ src/core/or/congestion_control_common.h | 1 + src/core/or/congestion_control_flow.c | 25 +++++++ src/core/or/congestion_control_flow.h | 6 ++ src/core/or/congestion_control_vegas.c | 47 +++++++++++++ src/core/or/congestion_control_vegas.h | 6 ++ src/core/or/or_connection_st.h | 2 - src/core/or/relay.c | 2 + src/core/or/relay.h | 1 + src/feature/relay/ext_orport.c | 13 ---- src/feature/relay/ext_orport.h | 4 -- src/feature/relay/relay_metrics.c | 119 +++++++++++++++++++++++++++++++- src/lib/math/include.am | 3 +- src/lib/math/stats.h | 22 ++++++ 19 files changed, 284 insertions(+), 24 deletions(-) create mode 100644 changes/ticket40648 create mode 100644 changes/ticket40708 create mode 100644 src/lib/math/stats.h
This is an automated email from the git hooks/post-receive script.
dgoulet pushed a commit to branch release-0.4.7 in repository tor.
commit 9e9d6f2fe5f579fdc8098cf70fbde279eb58c1eb Merge: f0e0957080 d634a5ebc7 Author: David Goulet dgoulet@torproject.org AuthorDate: Tue Nov 8 12:35:48 2022 -0500
Merge branch 'maint-0.4.7' into release-0.4.7
changes/ticket40648 | 3 +++ src/core/mainloop/connection.c | 2 -- src/core/or/or_connection_st.h | 2 -- src/feature/relay/ext_orport.c | 13 ------------- src/feature/relay/ext_orport.h | 4 ---- 5 files changed, 3 insertions(+), 21 deletions(-)
This is an automated email from the git hooks/post-receive script.
dgoulet pushed a commit to branch release-0.4.7 in repository tor.
commit 09f59ae7af496ff7e9b86d1e834d5dd4971e770c Merge: 9e9d6f2fe5 fde87096c3 Author: David Goulet dgoulet@torproject.org AuthorDate: Tue Nov 8 12:36:44 2022 -0500
Merge branch 'maint-0.4.7' into release-0.4.7
changes/ticket40708 | 3 + src/core/or/circuitlist.c | 34 +++++++++++ src/core/or/circuitlist.h | 4 ++ src/core/or/congestion_control_common.c | 11 ++++ src/core/or/congestion_control_common.h | 1 + src/core/or/congestion_control_flow.c | 25 ++++++++ src/core/or/congestion_control_flow.h | 6 ++ src/core/or/congestion_control_vegas.c | 19 ++++++ src/core/or/congestion_control_vegas.h | 4 ++ src/core/or/relay.c | 2 + src/core/or/relay.h | 1 + src/feature/relay/relay_metrics.c | 101 +++++++++++++++++++++++++++++++- src/lib/math/include.am | 3 +- src/lib/math/stats.h | 22 +++++++ 14 files changed, 233 insertions(+), 3 deletions(-)
This is an automated email from the git hooks/post-receive script.
dgoulet pushed a commit to branch release-0.4.7 in repository tor.
commit 9dd62fb04be8304a75745012a5bae8d6b8cd7619 Merge: 09f59ae7af 00633bc619 Author: David Goulet dgoulet@torproject.org AuthorDate: Tue Nov 8 12:47:17 2022 -0500
Merge branch 'maint-0.4.7' into release-0.4.7
src/core/or/congestion_control_vegas.c | 28 ++++++++++++++++++++++++++++ src/core/or/congestion_control_vegas.h | 2 ++ src/feature/relay/relay_metrics.c | 18 ++++++++++++++++++ 3 files changed, 48 insertions(+)
tor-commits@lists.torproject.org