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

Issue 2964583002: Landing Recent QUIC changes until Jun 27 19:50:48 2017 +0000 (Closed)

Created:
3 years, 5 months ago by wangyix1
Modified:
3 years, 5 months ago
Reviewers:
Ryan Hamilton, Fan Yang
CC:
chromium-reviews, cbentzel+watch_chromium.org, net-reviews_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Landing Recent QUIC changes until Jun 27 19:50:48 2017 +0000 Deprecate flags for Cubic fixes: FLAGS_quic_reloadable_flag_quic_fix_beta_last_max, gfe2_reloadable_flag_quic_enable_cubic_per_ack_updates, gfe2_reloadable_flag_quic_fix_cubic_convex_mode, and gfe2_reloadable_flag_quic_fix_cubic_bytes_quantization. Merge internal change: 160312965 https://codereview.chromium.org/2968553002/ Create a new QUIC BBR ack aggregation patch which allows extra CWND only when bytes in flight has gone below the target bytes in flight recently. Protected by FLAGS_quic_reloadable_flag_quic_bbr_ack_aggregation_bytes2. Merge internal change: 160232114 https://codereview.chromium.org/2959373002/ Removing NackPackets from gfe/quic/core/quic_connection_test.cc Removing the Remove functions from gfe/quic/core/frames/quic_ack_frame Merge internal change: 159953097 https://codereview.chromium.org/2963063002/ Add QUIC_PLOG to gfe/quic/platform and use it in TunDevice. Merge internal change: 159704484 https://codereview.chromium.org/2962773003/ Removing NackPackets from gfe/quic/core/quic_sent_packet_manager_test.cc Merge internal change: 159586807 https://codereview.chromium.org/2961133002/ The Remove functions in quic_ack_frame.cc are renamed RemoveTestOnly. gfe/quic/core/frames/quic_frames_test.cc no longer uses them. Merge internal change: 159564609 https://codereview.chromium.org/2962043002/ Allow trailing headers with duplicate keys. Protected by FLAGS_quic_reloadable_flag_quic_allow_duplicate_trailers QUIC currently treats trailers with duplicate header keys as a critical failure (causing a CONNECION_CLOSE with QUIC_INVALID_HEADERS_STREAM_DATA). See b/62770138. This doesn't seem to be implementing the spec, as RFC 7541 says: "The dynamic table can contain duplicate entries (i.e., entries with the same name and same value). Therefore, duplicate entries MUST NOT be treated as an error by a decoder." In addition, it doesn't look like our spdy/http2 implementation does any sort of similar validation check. This CL makes QUIC more permissive of trailing headers, brings it in line with our HTTP/2 implementation, and (hopefully) fixes b/62770138. Merge internal change: 159476633 https://codereview.chromium.org/2963863002/ In QUIC, do not enable forced HOL blocking if FLAGS_quic_reloadable_flag_quic_use_stream_notifier2 is on. Merge internal change: 159473673 https://codereview.chromium.org/2962953002/ Add tests for gfe/quic/spdy_utils::CopyAndValidateTrailers. Merge internal change: 159468423 https://codereview.chromium.org/2961123002/ Add a new connection option(BBRR) to enable BBR's rate based recovery. Protected by FLAGS_quic_reloadable_flag_quic_bbr_rate_recovery. Merge internal change: 159452191 https://codereview.chromium.org/2962033002/ In QUIC, decrease verbose level QUIC_DLOG "Stream destroyed while waiting for acks." to QUIC_DVLOG(1), and add more information. Merge internal change: 159445987 https://codereview.chromium.org/2961113002/ Change TEST_F to simply TEST in spdy_utils_test Rename the tests so that they can be clustered by the specific method they are testing, and are more readable. Merge internal change: 159430503 https: //codereview.chromium.org/2963853002/ Review-Url: https://codereview.chromium.org/2964583002 Cr-Commit-Position: refs/heads/master@{#483766} Committed: https://chromium.googlesource.com/chromium/src/+/73632b8bb4b7b930760a18c68f8e1fc818a32b16

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+415 lines, -263 lines) Patch
M net/quic/core/congestion_control/bbr_sender.h View 2 chunks +7 lines, -0 lines 0 comments Download
M net/quic/core/congestion_control/bbr_sender.cc View 8 chunks +38 lines, -6 lines 0 comments Download
M net/quic/core/congestion_control/bbr_sender_test.cc View 2 chunks +65 lines, -0 lines 0 comments Download
M net/quic/core/congestion_control/cubic_bytes_test.cc View 1 chunk +0 lines, -16 lines 0 comments Download
M net/quic/core/congestion_control/cubic_test.cc View 1 chunk +0 lines, -12 lines 0 comments Download
M net/quic/core/congestion_control/send_algorithm_test.cc View 1 chunk +0 lines, -4 lines 0 comments Download
M net/quic/core/congestion_control/tcp_cubic_sender_bytes.cc View 1 chunk +4 lines, -8 lines 0 comments Download
M net/quic/core/congestion_control/tcp_cubic_sender_packets.cc View 1 chunk +3 lines, -6 lines 0 comments Download
M net/quic/core/crypto/crypto_protocol.h View 1 chunk +1 line, -0 lines 0 comments Download
M net/quic/core/frames/quic_ack_frame.h View 1 chunk +0 lines, -7 lines 0 comments Download
M net/quic/core/frames/quic_ack_frame.cc View 1 chunk +0 lines, -8 lines 0 comments Download
M net/quic/core/frames/quic_frames_test.cc View 4 chunks +15 lines, -20 lines 0 comments Download
M net/quic/core/quic_connection_test.cc View 27 chunks +65 lines, -57 lines 0 comments Download
M net/quic/core/quic_flags_list.h View 6 chunks +18 lines, -23 lines 0 comments Download
M net/quic/core/quic_sent_packet_manager_test.cc View 22 chunks +43 lines, -56 lines 0 comments Download
M net/quic/core/quic_session_test.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M net/quic/core/quic_spdy_session.cc View 1 chunk +2 lines, -1 line 0 comments Download
M net/quic/core/quic_stream.cc View 1 chunk +8 lines, -4 lines 0 comments Download
M net/quic/core/spdy_utils.cc View 3 chunks +19 lines, -6 lines 0 comments Download
M net/quic/core/spdy_utils_test.cc View 16 chunks +118 lines, -18 lines 0 comments Download
M net/quic/platform/api/quic_logging.h View 1 chunk +2 lines, -0 lines 0 comments Download
M net/quic/platform/impl/quic_logging_impl.h View 1 chunk +2 lines, -0 lines 0 comments Download
M net/tools/quic/end_to_end_test.cc View 2 chunks +3 lines, -9 lines 0 comments Download

Messages

Total messages: 20 (11 generated)
wangyix1
ptal
3 years, 5 months ago (2017-06-29 21:01:40 UTC) #5
Fan Yang
On 2017/06/29 21:01:40, wangyix1 wrote: > ptal I think you may need to remove 159690069 ...
3 years, 5 months ago (2017-06-29 22:24:05 UTC) #8
Fan Yang
3 years, 5 months ago (2017-06-29 22:24:24 UTC) #10
wangyix1
On 2017/06/29 22:24:05, Fan Yang wrote: > On 2017/06/29 21:01:40, wangyix1 wrote: > > ptal ...
3 years, 5 months ago (2017-06-29 22:32:44 UTC) #12
Ryan Hamilton
looks good, modulo the feedback from your internal back-merge CL. Namely, doing "using std::string" in ...
3 years, 5 months ago (2017-06-29 22:42:30 UTC) #13
wangyix1
On 2017/06/29 22:42:30, Ryan Hamilton wrote: > looks good, modulo the feedback from your internal ...
3 years, 5 months ago (2017-06-29 23:58:43 UTC) #14
Ryan Hamilton
lgtm
3 years, 5 months ago (2017-06-30 02:39:42 UTC) #15
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/2964583002/1
3 years, 5 months ago (2017-06-30 18:19:19 UTC) #17
commit-bot: I haz the power
3 years, 5 months ago (2017-06-30 18:25:31 UTC) #20
Message was sent while issue was closed.
Committed patchset #1 (id:1) as
https://chromium.googlesource.com/chromium/src/+/73632b8bb4b7b930760a18c68f8e...

Powered by Google App Engine
This is Rietveld 408576698