Re: [PATCH] tcp: Fix RFC reference in comment

2015-01-13 Thread Banerjee, Debabrata
On 1/13/15, 5:01 PM, "John Heffner" wrote: >On Tue, Jan 13, 2015 at 4:42 PM, Banerjee, Debabrata > wrote: >> On 1/13/15, 4:36 PM, "Yuchung Cheng" wrote: >> >>>RFC2861 resets the cwnd like in RFC2581, but the rest of the code >>>implements RFC2861. So I think the current comment is fine. >> >> >>

Re: [PATCH] tcp: Fix RFC reference in comment

2015-01-13 Thread John Heffner
On Tue, Jan 13, 2015 at 4:42 PM, Banerjee, Debabrata wrote: > On 1/13/15, 4:36 PM, "Yuchung Cheng" wrote: > >>On Tue, Jan 13, 2015 at 1:10 PM, Debabrata Banerjee >>wrote: >>> >>> -/* RFC2861. Reset CWND after idle period longer RTO to "restart >>>window". >>> +/* RFC2581 4.1. Reset CWND after id

Re: [PATCH] tcp: Fix RFC reference in comment

2015-01-13 Thread Banerjee, Debabrata
On 1/13/15, 4:36 PM, "Yuchung Cheng" wrote: >On Tue, Jan 13, 2015 at 1:10 PM, Debabrata Banerjee >wrote: >> >> -/* RFC2861. Reset CWND after idle period longer RTO to "restart >>window". >> +/* RFC2581 4.1. Reset CWND after idle period longer RTO to "restart >>window". >> * This is the first p

Re: [PATCH] tcp: Fix RFC reference in comment

2015-01-13 Thread Yuchung Cheng
On Tue, Jan 13, 2015 at 1:10 PM, Debabrata Banerjee wrote: > > Comment in tcp_cwnd_restart() was referencing the wrong RFC for the algorithm > it's implementing. > > Signed-off-by: Debabrata Banerjee > --- > net/ipv4/tcp_output.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff -

[PATCH] tcp: Fix RFC reference in comment

2015-01-13 Thread Debabrata Banerjee
Comment in tcp_cwnd_restart() was referencing the wrong RFC for the algorithm it's implementing. Signed-off-by: Debabrata Banerjee --- net/ipv4/tcp_output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index 65caf8b..0c13f88 10