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

Issue 2811573003: Link NetLogs for HttpStreamFactoryImpl::Job and existing QuicStreamFactory::Job (Closed)

Created:
3 years, 8 months ago by Zhongyi Shi
Modified:
3 years, 8 months ago
Reviewers:
eroman, xunjieli
CC:
chromium-reviews, cbentzel+watch_chromium.org, net-reviews_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Link NetLogs for HttpStreamFactoryImpl::Job and existing QuicStreamFactory::Job When HttpStreamFactoryImpl::Job init connection to QUIC server, in some cases, it might not result in QuicStreamFactory creating a new QuicStreamFactory::Job to serve the QuicRequest but use an exisitng QuicStreamFactory::Job. Link the HttpStreamFactoryImpl::Job and QuicStreamFactory::Job so that the HttpStreamFactoryImpl::Job::DoInitConnection is traceable. BUG=702411 Review-Url: https://codereview.chromium.org/2811573003 Cr-Commit-Position: refs/heads/master@{#463536} Committed: https://chromium.googlesource.com/chromium/src/+/011ef8d97d0b06877ca4cfc621d2e56f19aeef8c

Patch Set 1 #

Total comments: 4

Patch Set 2 : reduce two map lookups to 1 #

Patch Set 3 : reduce one more lookup #

Patch Set 4 : add a todo #

Total comments: 2

Patch Set 5 : fix a typo #

Total comments: 4

Patch Set 6 : address #14 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+17 lines, -1 line) Patch
M net/quic/chromium/quic_stream_factory.cc View 1 2 3 4 5 2 chunks +17 lines, -1 line 0 comments Download

Messages

Total messages: 23 (8 generated)
Zhongyi Shi
3 years, 8 months ago (2017-04-10 21:25:40 UTC) #3
eroman
https://codereview.chromium.org/2811573003/diff/1/net/quic/chromium/quic_stream_factory.cc File net/quic/chromium/quic_stream_factory.cc (right): https://codereview.chromium.org/2811573003/diff/1/net/quic/chromium/quic_stream_factory.cc#newcode1012 net/quic/chromium/quic_stream_factory.cc:1012: if (active_jobs_[server_id].size() == 1) { nit: There are 3 ...
3 years, 8 months ago (2017-04-10 21:55:07 UTC) #4
Zhongyi Shi
Thanks Eric, ptal! https://codereview.chromium.org/2811573003/diff/1/net/quic/chromium/quic_stream_factory.cc File net/quic/chromium/quic_stream_factory.cc (right): https://codereview.chromium.org/2811573003/diff/1/net/quic/chromium/quic_stream_factory.cc#newcode1012 net/quic/chromium/quic_stream_factory.cc:1012: if (active_jobs_[server_id].size() == 1) { On ...
3 years, 8 months ago (2017-04-10 23:50:49 UTC) #5
xunjieli
https://codereview.chromium.org/2811573003/diff/1/net/quic/chromium/quic_stream_factory.cc File net/quic/chromium/quic_stream_factory.cc (right): https://codereview.chromium.org/2811573003/diff/1/net/quic/chromium/quic_stream_factory.cc#newcode1012 net/quic/chromium/quic_stream_factory.cc:1012: if (active_jobs_[server_id].size() == 1) { On 2017/04/10 23:50:49, Zhongyi ...
3 years, 8 months ago (2017-04-10 23:56:24 UTC) #6
Zhongyi Shi
https://codereview.chromium.org/2811573003/diff/1/net/quic/chromium/quic_stream_factory.cc File net/quic/chromium/quic_stream_factory.cc (right): https://codereview.chromium.org/2811573003/diff/1/net/quic/chromium/quic_stream_factory.cc#newcode1012 net/quic/chromium/quic_stream_factory.cc:1012: if (active_jobs_[server_id].size() == 1) { On 2017/04/10 23:56:24, xunjieli ...
3 years, 8 months ago (2017-04-11 00:27:04 UTC) #8
xunjieli
I wasn't on the last CL, so I just want to build Chrome and see ...
3 years, 8 months ago (2017-04-11 00:32:02 UTC) #9
Zhongyi Shi
A sample net log is available at https://goo.gl/TkbmrG. PTAL :) https://codereview.chromium.org/2811573003/diff/80001/net/quic/chromium/quic_stream_factory.cc File net/quic/chromium/quic_stream_factory.cc (right): https://codereview.chromium.org/2811573003/diff/80001/net/quic/chromium/quic_stream_factory.cc#newcode1015 ...
3 years, 8 months ago (2017-04-11 00:54:33 UTC) #11
Zhongyi Shi
On 2017/04/11 00:54:33, Zhongyi Shi wrote: > A sample net log is available at https://goo.gl/TkbmrG. ...
3 years, 8 months ago (2017-04-11 00:57:33 UTC) #12
xunjieli
On 2017/04/11 00:57:33, Zhongyi Shi wrote: > On 2017/04/11 00:54:33, Zhongyi Shi wrote: > > ...
3 years, 8 months ago (2017-04-11 01:08:58 UTC) #13
eroman
lgtm https://codereview.chromium.org/2811573003/diff/100001/net/quic/chromium/quic_stream_factory.cc File net/quic/chromium/quic_stream_factory.cc (right): https://codereview.chromium.org/2811573003/diff/100001/net/quic/chromium/quic_stream_factory.cc#newcode1011 net/quic/chromium/quic_stream_factory.cc:1011: auto itr = active_jobs_.find(server_id); Can you use a ...
3 years, 8 months ago (2017-04-11 01:29:44 UTC) #14
Zhongyi Shi
Thanks Eric and Helen for helping the reviews, landing now. https://codereview.chromium.org/2811573003/diff/100001/net/quic/chromium/quic_stream_factory.cc File net/quic/chromium/quic_stream_factory.cc (right): https://codereview.chromium.org/2811573003/diff/100001/net/quic/chromium/quic_stream_factory.cc#newcode1011 ...
3 years, 8 months ago (2017-04-11 03:49:34 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/2811573003/120001
3 years, 8 months ago (2017-04-11 03:50:14 UTC) #18
commit-bot: I haz the power
Committed patchset #6 (id:120001) as https://chromium.googlesource.com/chromium/src/+/011ef8d97d0b06877ca4cfc621d2e56f19aeef8c
3 years, 8 months ago (2017-04-11 05:02:41 UTC) #21
RE66
On 2017/04/11 05:02:41, commit-bot: I haz the power wrote: > Committed patchset #6 (id:120001) as ...
3 years, 8 months ago (2017-04-11 05:46:12 UTC) #22
findit-for-me
3 years, 8 months ago (2017-04-11 06:50:04 UTC) #23
Message was sent while issue was closed.
Findit identified this CL at revision 463536 as the culprit for
failures in the build cycles as shown on:
https://findit-for-me.appspot.com/waterfall/culprit?key=ag9zfmZpbmRpdC1mb3Itb...

Powered by Google App Engine
This is Rietveld 408576698