* Re: BUG in tcp_timer.c:tcp_retransmit_timer()
2004-03-30 4:09 ` BUG in tcp_timer.c:tcp_retransmit_timer() David S. Miller
@ 2004-03-29 17:24 ` Nagendra Singh Tomar
2004-03-30 5:50 ` David S. Miller
0 siblings, 1 reply; 4+ messages in thread
From: Nagendra Singh Tomar @ 2004-03-29 17:24 UTC (permalink / raw)
To: David S. Miller; +Cc: Tomar, Nagendra, linux-net, netdev
Dave,
Thats right. But what about the other cases of retransmission
failures for which we are having a negative return (-ENOMEM, -EAGAIN,
-EHOSTUNREACH etc). Even for these cases its not a good idea to
artificially increment tp->retransmits, lest in some extreme case we might
timeout a connection without a single packet going on the wire.
Thanx,
tomar
On Mon, 29 Mar 2004, David S. Miller wrote:
> On Mon, 29 Mar 2004 02:39:01 +0530 (IST)
> Nagendra Singh Tomar <nagendra_tomar@adaptec.com> wrote:
>
> > While reading the code of tcp_retransmit_timer(), I came across something
> > which looks liks a BUG.
>
> It isn't, read below.
>
> > The following line
> >
> > if (tcp_retransmit_skb(sk, skb_peek(&sk->write_queue)) > 0)
> >
> > should correctly read as
> >
> > if (tcp_retransmit_skb(sk, skb_peek(&sk->write_queue)) < 0)
>
> Nope, it really does want greater than zero. Less than zero
> means memory allocation error or something like that, but this is
> not what this code wants to check for. Read the comment inside
> this code block, it says it is the code path for "local congestion"
> and the device output path indicates congestion via positive valued
> error codes.
>
> These codes are the NET_XMIT_* and NET_RX_* macros defined in
> linux/netdevice.h
>
> Thanks for the report though.
>
--
-- You have moved the mouse. Windows must be restarted for the
changes to take effect.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: BUG in tcp_timer.c:tcp_retransmit_timer()
2004-03-30 5:50 ` David S. Miller
@ 2004-03-29 20:40 ` Nagendra Singh Tomar
0 siblings, 0 replies; 4+ messages in thread
From: Nagendra Singh Tomar @ 2004-03-29 20:40 UTC (permalink / raw)
To: David S. Miller; +Cc: Tomar, Nagendra, linux-net, netdev
On Mon, 29 Mar 2004, David S. Miller wrote:
> On Mon, 29 Mar 2004 22:54:14 +0530 (IST)
> Nagendra Singh Tomar <nagendra_tomar@adaptec.com> wrote:
>
> > Thats right. But what about the other cases of retransmission
> > failures for which we are having a negative return (-ENOMEM, -EAGAIN,
> > -EHOSTUNREACH etc). Even for these cases its not a good idea to
> > artificially increment tp->retransmits, lest in some extreme case we might
> > timeout a connection without a single packet going on the wire.
>
> That's just like the packet getting dropped at the next hop,
> and not the case this branch of code intends to deal with.
>
I understand your point, but we should try our best to retransmit uptill
the "max retransmission count". Packets can be dropped at any hop,
but thats excatly why TCP doess a large number of retransmissions,
before giving up. Whats wrong in having the check as
if (tcp_retransmit_skb(sk, skb_peek(&sk->write_queue)) != 0)
so that we take care of both the cases. Does it have any bad effects ?
Thanx,
tomar
-- You have moved the mouse. Windows must be restarted for the
changes to take effect.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: BUG in tcp_timer.c:tcp_retransmit_timer()
[not found] <Pine.LNX.4.44.0403290222190.27795-100000@localhost.localdomain>
@ 2004-03-30 4:09 ` David S. Miller
2004-03-29 17:24 ` Nagendra Singh Tomar
0 siblings, 1 reply; 4+ messages in thread
From: David S. Miller @ 2004-03-30 4:09 UTC (permalink / raw)
To: Tomar, Nagendra; +Cc: linux-net, netdev
On Mon, 29 Mar 2004 02:39:01 +0530 (IST)
Nagendra Singh Tomar <nagendra_tomar@adaptec.com> wrote:
> While reading the code of tcp_retransmit_timer(), I came across something
> which looks liks a BUG.
It isn't, read below.
> The following line
>
> if (tcp_retransmit_skb(sk, skb_peek(&sk->write_queue)) > 0)
>
> should correctly read as
>
> if (tcp_retransmit_skb(sk, skb_peek(&sk->write_queue)) < 0)
Nope, it really does want greater than zero. Less than zero
means memory allocation error or something like that, but this is
not what this code wants to check for. Read the comment inside
this code block, it says it is the code path for "local congestion"
and the device output path indicates congestion via positive valued
error codes.
These codes are the NET_XMIT_* and NET_RX_* macros defined in
linux/netdevice.h
Thanks for the report though.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: BUG in tcp_timer.c:tcp_retransmit_timer()
2004-03-29 17:24 ` Nagendra Singh Tomar
@ 2004-03-30 5:50 ` David S. Miller
2004-03-29 20:40 ` Nagendra Singh Tomar
0 siblings, 1 reply; 4+ messages in thread
From: David S. Miller @ 2004-03-30 5:50 UTC (permalink / raw)
To: Tomar, Nagendra; +Cc: linux-net, netdev
On Mon, 29 Mar 2004 22:54:14 +0530 (IST)
Nagendra Singh Tomar <nagendra_tomar@adaptec.com> wrote:
> Thats right. But what about the other cases of retransmission
> failures for which we are having a negative return (-ENOMEM, -EAGAIN,
> -EHOSTUNREACH etc). Even for these cases its not a good idea to
> artificially increment tp->retransmits, lest in some extreme case we might
> timeout a connection without a single packet going on the wire.
That's just like the packet getting dropped at the next hop,
and not the case this branch of code intends to deal with.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2004-03-30 5:50 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <Pine.LNX.4.44.0403290222190.27795-100000@localhost.localdomain>
2004-03-30 4:09 ` BUG in tcp_timer.c:tcp_retransmit_timer() David S. Miller
2004-03-29 17:24 ` Nagendra Singh Tomar
2004-03-30 5:50 ` David S. Miller
2004-03-29 20:40 ` Nagendra Singh Tomar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).