Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Issue 411823002: Land Recent QUIC Changes (Closed)

Created:
6 years, 5 months ago by ramant (doing other things)
Modified:
6 years, 4 months ago
Reviewers:
wtc, Ryan Hamilton
CC:
chromium-reviews, cbentzel+watch_chromium.org, Ian Swett, nimia, dmz, Robbie Shade, wtc
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

Land Recent QUIC Changes Fix to QUIC's RttStats ExpireSmoothedMetrics where the mean deviation may increase if the rtt decreased. Merge internal change: 71665066 https://codereview.chromium.org/406403002/ Allow client to request Reno congestion control. Disabled BBR tests (will enable after BBR code is checked in). Merge internal change: 71621257 https://codereview.chromium.org/412753002/ QUIC - Minor cleanup change to keep internal source tree and chromium codebase in sync. + Use DECHEK_EQ instead of DCHECK. Merge internal change: 71613624 https://codereview.chromium.org/412733002/ Allow QuicConnection to own its QuicPacketWriter Added a new "bool owns_writer" parameter to the QuicConnection constructor that specifies whether the QuicConnection has ownership. Also cleaned up the ownership semantics in a number of tests -- previously, the writer was not actually outliving the connection. Merge internal change: 71590341 https://codereview.chromium.org/413573003/ Added QuicTime::Infinite() to create infinite time required by the following internal change. Change QUIC"s BBR sender to only fall out of slow start when there is a packet loss if the residual is less than 0.25. Merge internal change: 71436337 https://codereview.chromium.org/410743003/ Ensure the UnackedPacketMap only keeps one previous transmission less than largest_observed. Also improves the tightness of QuicUnackedPacketMapTest. Merge internal change: 71426216 https://codereview.chromium.org/411723003/ Parameterize the QUIC end-to-end tests to run with FEC both enabled and disabled. Found bug that was fixed in internal change: 71390633 (https://codereview.chromium.org/414523003/) Merge internal change: 71393479 https://codereview.chromium.org/412543005/ Fix a bug in the QuicReceivedPacketManager where a packet which had previously been revied was not removed from the revived packet set when it was eventually received out of order. Merge internal change: 71390633 https://codereview.chromium.org/414523003/ QuicConnection::ProcessValidatedPacket doesn't need to be public because it is only called by QuicConnection::OnPacketHeader. Merge internal change: 71371063 https://codereview.chromium.org/402333003/ Add bandwidth_estimate and server_namespace fields to the source-address token proto. Not used anywhere, this CL is really just for discussion about which fields (and fieldnames) we should use. Merge internal change: 71360060 https://codereview.chromium.org/404343003/ R=rch@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=287052

Patch Set 1 #

Total comments: 2

Patch Set 2 : fixed wtc's comments #

Patch Set 3 : rebase with TOT #

Patch Set 4 : rebase TOT #

Unified diffs Side-by-side diffs Delta from patch set Stats (+494 lines, -157 lines) Patch
M net/quic/congestion_control/rtt_stats.h View 1 chunk +3 lines, -2 lines 0 comments Download
M net/quic/congestion_control/rtt_stats.cc View 2 chunks +6 lines, -1 line 0 comments Download
M net/quic/congestion_control/rtt_stats_test.cc View 1 chunk +7 lines, -0 lines 0 comments Download
M net/quic/congestion_control/send_algorithm_interface.cc View 2 chunks +7 lines, -7 lines 0 comments Download
M net/quic/congestion_control/send_algorithm_simulator.cc View 1 chunk +3 lines, -1 line 0 comments Download
M net/quic/crypto/crypto_protocol.h View 1 chunk +1 line, -0 lines 0 comments Download
M net/quic/crypto/quic_crypto_server_config.cc View 3 chunks +5 lines, -5 lines 0 comments Download
M net/quic/crypto/source_address_token.h View 1 2 chunks +82 lines, -5 lines 0 comments Download
M net/quic/crypto/source_address_token.cc View 3 chunks +11 lines, -0 lines 0 comments Download
M net/quic/quic_connection.h View 4 chunks +10 lines, -7 lines 0 comments Download
M net/quic/quic_connection.cc View 2 chunks +5 lines, -0 lines 0 comments Download
M net/quic/quic_connection_test.cc View 1 chunk +6 lines, -1 line 0 comments Download
M net/quic/quic_dispatcher.cc View 1 chunk +13 lines, -3 lines 0 comments Download
M net/quic/quic_http_stream_test.cc View 1 2 1 chunk +6 lines, -1 line 0 comments Download
M net/quic/quic_received_packet_manager.cc View 1 chunk +2 lines, -0 lines 0 comments Download
M net/quic/quic_received_packet_manager_test.cc View 2 chunks +30 lines, -0 lines 0 comments Download
M net/quic/quic_sent_packet_manager.cc View 1 chunk +5 lines, -0 lines 0 comments Download
M net/quic/quic_sent_packet_manager_test.cc View 1 chunk +23 lines, -0 lines 0 comments Download
M net/quic/quic_stream_factory.cc View 1 2 1 chunk +7 lines, -3 lines 0 comments Download
M net/quic/quic_time.h View 1 chunk +3 lines, -0 lines 0 comments Download
M net/quic/quic_time.cc View 1 chunk +5 lines, -0 lines 0 comments Download
M net/quic/quic_unacked_packet_map.cc View 1 chunk +9 lines, -0 lines 0 comments Download
M net/quic/quic_unacked_packet_map_test.cc View 6 chunks +75 lines, -13 lines 0 comments Download
M net/quic/test_tools/quic_connection_peer.h View 1 chunk +4 lines, -1 line 0 comments Download
M net/quic/test_tools/quic_connection_peer.cc View 1 chunk +6 lines, -1 line 0 comments Download
M net/quic/test_tools/quic_sent_packet_manager_peer.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/test_tools/quic_sent_packet_manager_peer.cc View 1 chunk +3 lines, -3 lines 0 comments Download
M net/quic/test_tools/quic_test_utils.h View 1 chunk +0 lines, -1 line 0 comments Download
M net/quic/test_tools/quic_test_utils.cc View 4 chunks +4 lines, -4 lines 0 comments Download
M net/tools/quic/end_to_end_test.cc View 11 chunks +119 lines, -80 lines 0 comments Download
M net/tools/quic/quic_client.h View 2 chunks +4 lines, -3 lines 0 comments Download
M net/tools/quic/quic_client.cc View 1 chunk +12 lines, -5 lines 0 comments Download
M net/tools/quic/quic_dispatcher.cc View 1 chunk +13 lines, -4 lines 0 comments Download
M net/tools/quic/test_tools/quic_test_utils.h View 1 chunk +0 lines, -1 line 0 comments Download
M net/tools/quic/test_tools/quic_test_utils.cc View 4 chunks +4 lines, -4 lines 0 comments Download

Messages

Total messages: 15 (0 generated)
ramant (doing other things)
6 years, 5 months ago (2014-07-23 01:47:59 UTC) #1
Ryan Hamilton
lgtm Might be worth holding off landing this until we get the perf issue sorted ...
6 years, 5 months ago (2014-07-23 03:40:24 UTC) #2
ramant (doing other things)
On 2014/07/23 03:40:24, Ryan Hamilton wrote: > lgtm > > Might be worth holding off ...
6 years, 5 months ago (2014-07-23 04:25:53 UTC) #3
wtc
Patch set 1 LGTM. https://codereview.chromium.org/411823002/diff/1/net/quic/congestion_control/rtt_stats.cc File net/quic/congestion_control/rtt_stats.cc (right): https://codereview.chromium.org/411823002/diff/1/net/quic/congestion_control/rtt_stats.cc#newcode48 net/quic/congestion_control/rtt_stats.cc:48: std::abs(smoothed_rtt_.Subtract(latest_rtt_).ToMicroseconds()))); Why do we need ...
6 years, 5 months ago (2014-07-23 23:31:42 UTC) #4
ramant (doing other things)
Fixed wtc's comments for CL: https://codereview.chromium.org/404343003/ https://codereview.chromium.org/411823002/diff/1/net/quic/congestion_control/rtt_stats.cc File net/quic/congestion_control/rtt_stats.cc (right): https://codereview.chromium.org/411823002/diff/1/net/quic/congestion_control/rtt_stats.cc#newcode48 net/quic/congestion_control/rtt_stats.cc:48: std::abs(smoothed_rtt_.Subtract(latest_rtt_).ToMicroseconds()))); On 2014/07/23 ...
6 years, 5 months ago (2014-07-23 23:56:47 UTC) #5
ramant (doing other things)
The CQ bit was checked by rtenneti@chromium.org
6 years, 5 months ago (2014-07-25 23:10:05 UTC) #6
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/rtenneti@chromium.org/411823002/60001
6 years, 5 months ago (2014-07-25 23:12:09 UTC) #7
ramant (doing other things)
On 2014/07/23 04:25:53, ramant wrote: > On 2014/07/23 03:40:24, Ryan Hamilton wrote: > > lgtm ...
6 years, 5 months ago (2014-07-25 23:12:29 UTC) #8
ramant (doing other things)
The CQ bit was unchecked by rtenneti@chromium.org
6 years, 5 months ago (2014-07-26 00:07:45 UTC) #9
ramant (doing other things)
On 2014/07/25 23:12:29, ramant wrote: > On 2014/07/23 04:25:53, ramant wrote: > > On 2014/07/23 ...
6 years, 5 months ago (2014-07-26 00:08:16 UTC) #10
ramant (doing other things)
6 years, 5 months ago (2014-07-26 00:08:28 UTC) #11
ramant (doing other things)
The CQ bit was checked by rtenneti@chromium.org
6 years, 4 months ago (2014-07-31 21:52:15 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/rtenneti@chromium.org/411823002/100001
6 years, 4 months ago (2014-07-31 21:54:11 UTC) #13
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_chromium_x64_rel on tryserver.chromium.win ...
6 years, 4 months ago (2014-08-01 10:44:30 UTC) #14
commit-bot: I haz the power
6 years, 4 months ago (2014-08-01 18:42:45 UTC) #15
Message was sent while issue was closed.
Change committed as 287052

Powered by Google App Engine
This is Rietveld 408576698