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

Issue 2566403002: Landing Recent QUIC changes until 3:47 pm, Dec 10, 2016 UTC-8 (Closed)

Created:
4 years ago by Zhongyi Shi
Modified:
4 years ago
Reviewers:
Ryan Hamilton
CC:
chromium-reviews, cbentzel+watch_chromium.org
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Landing Recent QUIC changes until 3:47 pm, Dec 10, 2016 UTC-8 Flip quic flags by 12/12/2016 18:30 PST https://codereview.chromium.org/2569703003/ relnote: Protected by --quic_fix_beta_last_max. Fix conservative decrease for n-connection emulation. Merge internal change: 141565085 https://codereview.chromium.org/2569723004 relnote: Allow changing initial flow control window via connection options. Protected by --quic_large_ifw_options. Partially reverts internal change: 128225749 Merge internal change: 141507430 https://codereview.chromium.org/2569113002 rel-note: automated rollback of internal change 138108562 Merge internal change: 141469809 https://codereview.chromium.org/2566943003 relnote: Use event_time instead of ApproximateNow() in QUIC cubic code. Protected by --quic_use_event_time Merge internal change: 141384938 https://codereview.chromium.org/2571643002 relnote: Remove unused QuicClock member of BbrSender. Merge internal change: 141366593 https://codereview.chromium.org/2566333002 relnote: Non-functional change. Cleanup pg3 support for quic_packet_reader Bring it more inline with Chromium source but cleanup the definition of MMSG_MORE macro to exist in the header so that there's no violation of ODR for QUicPacketReader class based upon inclusion. Merge internal change: 141357226 https://codereview.chromium.org/2570703002 relnote: Protected by --quic_fix_cubic_bytes_quantization. Fix CubicBytes Quantization. iDue to an unfortunate ordering of operations in the actual "cubing" part of the CWND calculation, we were inadvertantly quantizing the congestion-window calculation. (Note: The "reno" part of the cubic algorithm wis smooth and not quantized before.) Switching the order of operations obviates the problem. Additionally, removed parameterization from cubic_test.cc and cubic_bytes_test.cc, because the parameterization was getting unwieldy. Instead, the parameters are controlled by command-line flag. Merge internal change: 141183279 https://codereview.chromium.org/2569873002/ BUG= Committed: https://crrev.com/1a596c8723eb979ec597e99d27a139cf4e1f6e91 Cr-Commit-Position: refs/heads/master@{#438069}

Patch Set 1 #

Patch Set 2 : git cl format net #

Unified diffs Side-by-side diffs Delta from patch set Stats (+655 lines, -149 lines) Patch
M net/quic/core/congestion_control/bbr_sender.h View 2 chunks +1 line, -3 lines 0 comments Download
M net/quic/core/congestion_control/bbr_sender.cc View 1 chunk +2 lines, -4 lines 0 comments Download
M net/quic/core/congestion_control/bbr_sender_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/cubic.h View 4 chunks +24 lines, -3 lines 0 comments Download
M net/quic/core/congestion_control/cubic.cc View 1 5 chunks +21 lines, -5 lines 0 comments Download
M net/quic/core/congestion_control/cubic_bytes.h View 3 chunks +36 lines, -3 lines 0 comments Download
M net/quic/core/congestion_control/cubic_bytes.cc View 1 6 chunks +43 lines, -9 lines 0 comments Download
M net/quic/core/congestion_control/cubic_bytes_test.cc View 1 8 chunks +193 lines, -66 lines 0 comments Download
M net/quic/core/congestion_control/cubic_test.cc View 1 7 chunks +76 lines, -13 lines 0 comments Download
M net/quic/core/congestion_control/send_algorithm_interface.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/core/congestion_control/send_algorithm_test.cc View 5 chunks +32 lines, -10 lines 0 comments Download
M net/quic/core/congestion_control/tcp_cubic_sender_base.h View 2 chunks +4 lines, -2 lines 0 comments Download
M net/quic/core/congestion_control/tcp_cubic_sender_base.cc View 3 chunks +6 lines, -4 lines 0 comments Download
M net/quic/core/congestion_control/tcp_cubic_sender_bytes.h View 1 chunk +2 lines, -1 line 0 comments Download
M net/quic/core/congestion_control/tcp_cubic_sender_bytes.cc View 1 3 chunks +15 lines, -5 lines 0 comments Download
M net/quic/core/congestion_control/tcp_cubic_sender_packets.h View 1 chunk +2 lines, -1 line 0 comments Download
M net/quic/core/congestion_control/tcp_cubic_sender_packets.cc View 1 3 chunks +8 lines, -3 lines 0 comments Download
M net/quic/core/crypto/crypto_protocol.h View 2 chunks +14 lines, -0 lines 0 comments Download
M net/quic/core/quic_crypto_client_stream_test.cc View 1 1 chunk +2 lines, -1 line 0 comments Download
M net/quic/core/quic_flags_list.h View 3 chunks +20 lines, -2 lines 0 comments Download
M net/quic/core/quic_session.h View 1 chunk +4 lines, -0 lines 0 comments Download
M net/quic/core/quic_session.cc View 1 2 chunks +45 lines, -0 lines 0 comments Download
M net/quic/core/quic_session_test.cc View 1 chunk +12 lines, -0 lines 0 comments Download
M net/quic/core/quic_stream_sequencer_buffer.h View 2 chunks +8 lines, -0 lines 0 comments Download
M net/quic/core/quic_stream_sequencer_buffer.cc View 4 chunks +11 lines, -3 lines 0 comments Download
M net/quic/core/quic_stream_sequencer_buffer_test.cc View 2 chunks +7 lines, -1 line 0 comments Download
M net/quic/test_tools/quic_stream_sequencer_buffer_peer.cc View 1 chunk +2 lines, -1 line 0 comments Download
M net/tools/quic/end_to_end_test.cc View 1 8 chunks +61 lines, -4 lines 0 comments Download
M net/tools/quic/quic_packet_reader.h View 1 chunk +2 lines, -0 lines 0 comments Download
M net/tools/quic/quic_packet_reader.cc View 2 chunks +0 lines, -3 lines 0 comments Download

Messages

Total messages: 15 (9 generated)
Zhongyi Shi
4 years ago (2016-12-13 02:41:57 UTC) #3
Ryan Hamilton
looks good other than flag flips
4 years ago (2016-12-13 03:55:22 UTC) #7
Ryan Hamilton
lgtm
4 years ago (2016-12-13 05:40:41 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2566403002/20001
4 years ago (2016-12-13 05:41:12 UTC) #10
commit-bot: I haz the power
Committed patchset #2 (id:20001)
4 years ago (2016-12-13 05:46:35 UTC) #13
commit-bot: I haz the power
4 years ago (2016-12-13 05:49:09 UTC) #15
Message was sent while issue was closed.
Patchset 2 (id:??) landed as
https://crrev.com/1a596c8723eb979ec597e99d27a139cf4e1f6e91
Cr-Commit-Position: refs/heads/master@{#438069}

Powered by Google App Engine
This is Rietveld 408576698