Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(2483)

Issue 7762044: code review 7762044: net: refactoring in preparation for integrated network ... (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
11 years, 1 month ago by dvyukov
Modified:
11 years, 1 month ago
Reviewers:
CC:
golang-dev, bradfitz, iant
Visibility:
Public.

Description

net: refactoring in preparation for integrated network poller Introduce pollDesc struct, to split netFD struct into fd-related and poller-related parts.

Patch Set 1 #

Patch Set 2 : diff -r 07cfd1fc9337 https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 3 : diff -r 07cfd1fc9337 https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 4 : diff -r 07cfd1fc9337 https://dvyukov%40google.com@code.google.com/p/go/ #

Total comments: 3

Patch Set 5 : diff -r 07cfd1fc9337 https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 6 : diff -r 07cfd1fc9337 https://dvyukov%40google.com@code.google.com/p/go/ #

Total comments: 2

Patch Set 7 : diff -r 2bd4d868a758 https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 8 : diff -r 2bd4d868a758 https://dvyukov%40google.com@code.google.com/p/go/ #

Patch Set 9 : diff -r 2bd4d868a758 https://dvyukov%40google.com@code.google.com/p/go/ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+119 lines, -94 lines) Patch
M src/pkg/net/fd_poll_unix.go View 1 2 3 4 5 6 7 12 chunks +90 lines, -57 lines 0 comments Download
M src/pkg/net/fd_unix.go View 1 19 chunks +27 lines, -35 lines 0 comments Download
M src/pkg/net/sendfile_freebsd.go View 1 1 chunk +1 line, -1 line 0 comments Download
M src/pkg/net/sendfile_linux.go View 1 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 11
dvyukov
Hello golang-dev@googlegroups.com, I'd like you to review this change to https://dvyukov%40google.com@code.google.com/p/go/
11 years, 1 month ago (2013-03-12 18:30:31 UTC) #1
dvyukov
On 2013/03/12 18:30:31, dvyukov wrote: > Hello mailto:golang-dev@googlegroups.com, > > I'd like you to review ...
11 years, 1 month ago (2013-03-12 18:34:13 UTC) #2
bradfitz
https://codereview.appspot.com/7762044/diff/7001/src/pkg/net/fd_poll_unix.go File src/pkg/net/fd_poll_unix.go (right): https://codereview.appspot.com/7762044/diff/7001/src/pkg/net/fd_poll_unix.go#newcode37 src/pkg/net/fd_poll_unix.go:37: pollServer *pollServer Document the mutability of these various fields, ...
11 years, 1 month ago (2013-03-12 18:34:24 UTC) #3
dvyukov
https://codereview.appspot.com/7762044/diff/7001/src/pkg/net/fd_unix.go File src/pkg/net/fd_unix.go (right): https://codereview.appspot.com/7762044/diff/7001/src/pkg/net/fd_unix.go#newcode25 src/pkg/net/fd_unix.go:25: closing bool On 2013/03/12 18:34:25, bradfitz wrote: > how's ...
11 years, 1 month ago (2013-03-12 18:38:10 UTC) #4
dvyukov
Hello golang-dev@googlegroups.com, bradfitz@golang.org (cc: golang-dev@googlegroups.com), Please take another look.
11 years, 1 month ago (2013-03-12 18:42:16 UTC) #5
dvyukov
On 2013/03/12 18:34:24, bradfitz wrote: > https://codereview.appspot.com/7762044/diff/7001/src/pkg/net/fd_poll_unix.go > File src/pkg/net/fd_poll_unix.go (right): > > https://codereview.appspot.com/7762044/diff/7001/src/pkg/net/fd_poll_unix.go#newcode37 > ...
11 years, 1 month ago (2013-03-12 18:43:07 UTC) #6
iant
LGTM but wait for bradfitz https://codereview.appspot.com/7762044/diff/18001/src/pkg/net/fd_poll_unix.go File src/pkg/net/fd_poll_unix.go (right): https://codereview.appspot.com/7762044/diff/18001/src/pkg/net/fd_poll_unix.go#newcode121 src/pkg/net/fd_poll_unix.go:121: // Evict evicts fd ...
11 years, 1 month ago (2013-03-12 19:49:00 UTC) #7
bradfitz
LGTM https://codereview.appspot.com/7762044/diff/18001/src/pkg/net/fd_poll_unix.go File src/pkg/net/fd_poll_unix.go (right): https://codereview.appspot.com/7762044/diff/18001/src/pkg/net/fd_poll_unix.go#newcode36 src/pkg/net/fd_poll_unix.go:36: type pollDesc struct { Add a little comment ...
11 years, 1 month ago (2013-03-12 19:51:03 UTC) #8
dvyukov
On 2013/03/12 19:51:03, bradfitz wrote: > LGTM > > https://codereview.appspot.com/7762044/diff/18001/src/pkg/net/fd_poll_unix.go > File src/pkg/net/fd_poll_unix.go (right): > ...
11 years, 1 month ago (2013-03-12 20:02:14 UTC) #9
dvyukov
On 2013/03/12 19:49:00, iant wrote: > LGTM > > but wait for bradfitz > > ...
11 years, 1 month ago (2013-03-12 20:02:27 UTC) #10
dvyukov
11 years, 1 month ago (2013-03-12 20:03:18 UTC) #11
*** Submitted as https://code.google.com/p/go/source/detail?r=fceb4b7359ef ***

net: refactoring in preparation for integrated network poller
Introduce pollDesc struct, to split netFD struct into fd-related
and poller-related parts.

R=golang-dev, bradfitz, iant
CC=golang-dev
https://codereview.appspot.com/7762044
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b