Re: [TCP] tcp_write_timeout.c cleanup

2007-12-21 Thread Arnaldo Carvalho de Melo
Em Fri, Dec 21, 2007 at 04:30:26AM -0800, David Miller escreveu: > From: Arnaldo Carvalho de Melo <[EMAIL PROTECTED]> > Date: Fri, 21 Dec 2007 10:23:16 -0200 > > > Em Fri, Dec 21, 2007 at 06:56:17AM +0100, Eric Dumazet escreveu: > > > +static void tcp_mtu_probing(struct inet_connection_sock *icsk,

Re: [TCP] tcp_write_timeout.c cleanup

2007-12-21 Thread David Miller
From: Arnaldo Carvalho de Melo <[EMAIL PROTECTED]> Date: Fri, 21 Dec 2007 10:23:16 -0200 > Em Fri, Dec 21, 2007 at 06:56:17AM +0100, Eric Dumazet escreveu: > > +static void tcp_mtu_probing(struct inet_connection_sock *icsk, struct sock > > *sk) > > +{ > > + int mss; > - int mss; >

Re: [TCP] tcp_write_timeout.c cleanup

2007-12-21 Thread Arnaldo Carvalho de Melo
Em Fri, Dec 21, 2007 at 06:56:17AM +0100, Eric Dumazet escreveu: > Before submiting a patch to change a divide to a right shift, I felt > necessary to create a helper function tcp_mtu_probing() to reduce length of > lines exceeding 100 chars in tcp_write_timeout(). > > Signed-off-by: Eric Dumazet

Re: [TCP] tcp_write_timeout.c cleanup

2007-12-21 Thread David Miller
From: Eric Dumazet <[EMAIL PROTECTED]> Date: Fri, 21 Dec 2007 06:56:17 +0100 > Before submiting a patch to change a divide to a right shift, I felt > necessary to create a helper function tcp_mtu_probing() to reduce length of > lines exceeding 100 chars in tcp_write_timeout(). > > Signed-off-by:

[TCP] tcp_write_timeout.c cleanup

2007-12-20 Thread Eric Dumazet
Before submiting a patch to change a divide to a right shift, I felt necessary to create a helper function tcp_mtu_probing() to reduce length of lines exceeding 100 chars in tcp_write_timeout(). Signed-off-by: Eric Dumazet <[EMAIL PROTECTED]> diff --git a/net/ipv4/tcp_timer.c b/net/ipv4/tcp_ti