Alexey, this piece of code was buggy first time it was coded, and it
may still have some holes. :-)))
--- net/ipv4/tcp_output.c.~1~ Mon Jan 27 14:45:49 2003
+++ net/ipv4/tcp_output.c Mon Jan 27 14:46:33 2003
@@ -889,7 +889,7 @@
if (atomic_read(&sk->wmem_alloc) > min(sk->wmem_queued+(sk->wmem_queued>>2),sk->sndbuf))
return -EAGAIN;
- if (before(TCP_SKB_CB(skb)->seq, tp->snd_una)) {
+ if (0 && before(TCP_SKB_CB(skb)->seq, tp->snd_una)) {
if (before(TCP_SKB_CB(skb)->end_seq, tp->snd_una))
BUG();
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/