Search String: Display: Description: Sort:

Results:

References: [ +subject:/^(?:^\s*(re|sv|fwd|fw)[\[\]\d]*[:>-]+\s*)*Slow\s+TCP\s+connection\s+between\s+linux\s+and\s+wince\s*$/: 28 ]

Total 28 documents matching your query.

1. Re: Slow TCP connection between linux and wince (score: 1)
Author: Aki M Laukkanen <amlaukka@xxxxxxxxxxxxxx>
Date: Sat, 3 Jun 2000 01:18:15 +0300 (EET DST)
Yes, a brain fart (maybe this saying has been worn out?-). My only excuse was that I had to catch a movie and was in a hurry. Just a note to everyone, haven't seen a more corny ending in a while than
/archives/netdev/2000-06/msg00020.html (9,878 bytes)

2. Re: Slow TCP connection between linux and wince (score: 1)
Author: kuznet@xxxxxxxxxxxxx
Date: Sat, 3 Jun 2000 21:31:15 +0400 (MSK DST)
[ BTW you have problems with your mail at helsinki.fi ] No, tcpdump shows that sender always has full window. Receiver always ACKs _previous_ packet. RTT=0.9sec, window is 2 packets or ~3K, bandwidt
/archives/netdev/2000-06/msg00031.html (11,147 bytes)

3. Re: Slow TCP connection between linux and wince (score: 1)
Author: Pavel Machek <pavel@xxxxxxx>
Date: Mon, 5 Jun 2000 01:40:25 +0200
For what it is worth, ping while under load looks (downloading linux kernel, as always) like this: root@bug:~# ping 192.168.55.100 PING 192.168.55.100 (192.168.55.100): 56 data bytes 64 bytes from 1
/archives/netdev/2000-06/msg00054.html (13,950 bytes)

4. Re: Slow TCP connection between linux and wince (score: 1)
Author: Aki M Laukkanen <amlaukka@xxxxxxxxxxxxxx>
Date: Mon, 5 Jun 2000 19:09:51 +0300 (EET DST)
Yes, it looks that way and I got the acks mixed up. The application in question was ttcp. And your guess is quite close to truth. I should've known what was the cause since we've been hit with the ex
/archives/netdev/2000-06/msg00062.html (12,529 bytes)

5. Re: Slow TCP connection between linux and wince (score: 1)
Author: Aki M Laukkanen <amlaukka@xxxxxxxxxxxxxx>
Date: Tue, 6 Jun 2000 13:37:43 +0300 (EET DST)
Assuming 84 bytes altogether, this is quite close to 19200 bps. I get about 90-100 ms for RTT. See, http://arstechnica.com/reviews/2q00/networking/networking-1.html
/archives/netdev/2000-06/msg00067.html (9,332 bytes)

6. Re: Slow TCP connection between linux and wince (score: 1)
Author: kuznet@xxxxxxxxxxxxx
Date: Tue, 6 Jun 2000 21:36:29 +0400 (MSK DST)
I think, it is possible. Only I have no idea, how to make this. 8) I see no problems in tcpdump, it looks perfect. No, it is impossible. Sender cannot do anything with receiver's window. Seems, the
/archives/netdev/2000-06/msg00072.html (9,346 bytes)

7. Re: Slow TCP connection between linux and wince (score: 1)
Author: kuznet@xxxxxxxxxxxxx
Date: Tue, 6 Jun 2000 23:24:47 +0400 (MSK DST)
The analysis is correct, I think. It is not hackish, it is rather buggish. 8) You cannot mangle truesize, eben with good intention. Try better to tune tcp_min_write_space(). I want to think it is tu
/archives/netdev/2000-06/msg00076.html (10,692 bytes)

8. Re: Slow TCP connection between linux and wince (score: 1)
Author: Aki M Laukkanen <amlaukka@xxxxxxxxxxxxxx>
Date: Wed, 7 Jun 2000 14:05:00 +0300 (EET DST)
Yes, that was just to test the theory. To me it seems this would be trying to fix the symptom rather than the cause. There seems to be a certain assumption in place here that the default socket buffe
/archives/netdev/2000-06/msg00084.html (12,625 bytes)

9. Re: Slow TCP connection between linux and wince (score: 1)
Author: kuznet@xxxxxxxxxxxxx
Date: Wed, 7 Jun 2000 20:08:27 +0400 (MSK DST)
It is really OK. 65535 is very big sndbuf, when you talk to sane OSes (i.e. windows 8)). But we cannot talk to Linuxes 8), because they used to advertise non realistic windows. Also, the fact that t
/archives/netdev/2000-06/msg00096.html (10,515 bytes)

10. Re: Slow TCP connection between linux and wince (score: 1)
Author: kuznet@xxxxxxxxxxxxx
Date: Thu, 8 Jun 2000 23:28:53 +0400 (MSK DST)
I hope net-000608 contains final solution to the problem. Alexey
/archives/netdev/2000-06/msg00113.html (8,591 bytes)

11. Re: Slow TCP connection between linux and wince (score: 1)
Author: Aki M Laukkanen <amlaukka@xxxxxxxxxxxxxx>
Date: Fri, 9 Jun 2000 18:22:03 +0300 (EET DST)
used - As in past tense? Remember that truesize is not the whole story. The cloned skbs show up in wmem_alloc too which is why we got bitten by the burstiness. I see the heuristics are on the conserv
/archives/netdev/2000-06/msg00126.html (10,960 bytes)

12. Re: Slow TCP connection between linux and wince (score: 1)
Author: kuznet@xxxxxxxxxxxxx
Date: Fri, 9 Jun 2000 21:25:10 +0400 (MSK DST)
TCP calculates _maximal_ window possible with current mss and device. If the window converged to 8K, it cannot be larger for this connection. If it were >8K, it would prune. It is law of nature, rat
/archives/netdev/2000-06/msg00130.html (12,146 bytes)

13. Re: Slow TCP connection between linux and wince (score: 1)
Author: Aki M Laukkanen <amlaukka@xxxxxxxxxxxxxx>
Date: Sat, 10 Jun 2000 18:01:35 +0300 (EET DST)
Yes, I understood although the truesize/len ratio might suggest that a bit larger window was possible. Maybe I forgot my own argument. See below. For that particular test case 8kB is enough I agree.
/archives/netdev/2000-06/msg00134.html (12,564 bytes)

14. Re: Slow TCP connection between linux and wince (score: 1)
Author: kuznet@xxxxxxxxxxxxx
Date: Sat, 10 Jun 2000 21:08:48 +0400 (MSK DST)
What value did you expect? Could you send me some tcpdumps showing window evolution? It is interesting. I tried to prove that it is never the case in real life. When power is large, mtu cannot be sm
/archives/netdev/2000-06/msg00136.html (11,781 bytes)

15. Re: Slow TCP connection between linux and wince (score: 1)
Author: Aki M Laukkanen <amlaukka@xxxxxxxxxxxxxx>
Date: Sat, 3 Jun 2000 01:18:15 +0300 (EET DST)
Yes, a brain fart (maybe this saying has been worn out?-). My only excuse was that I had to catch a movie and was in a hurry. Just a note to everyone, haven't seen a more corny ending in a while than
/archives/netdev/2000-06/msg00319.html (9,935 bytes)

16. Re: Slow TCP connection between linux and wince (score: 1)
Author: kuznet@xxxxxxxxxxxxx
Date: Sat, 3 Jun 2000 21:31:15 +0400 (MSK DST)
Hello! [ BTW you have problems with your mail at helsinki.fi ] No, tcpdump shows that sender always has full window. Receiver always ACKs _previous_ packet. RTT=0.9sec, window is 2 packets or ~3K, ba
/archives/netdev/2000-06/msg00330.html (11,194 bytes)

17. Re: Slow TCP connection between linux and wince (score: 1)
Author: Pavel Machek <pavel@xxxxxxx>
Date: Mon, 5 Jun 2000 01:40:25 +0200
Hi! For what it is worth, ping while under load looks (downloading linux kernel, as always) like this: root@bug:~# ping 192.168.55.100 PING 192.168.55.100 (192.168.55.100): 56 data bytes 64 bytes fro
/archives/netdev/2000-06/msg00353.html (14,097 bytes)

18. Re: Slow TCP connection between linux and wince (score: 1)
Author: Aki M Laukkanen <amlaukka@xxxxxxxxxxxxxx>
Date: Mon, 5 Jun 2000 19:09:51 +0300 (EET DST)
Yes, it looks that way and I got the acks mixed up. The application in question was ttcp. And your guess is quite close to truth. I should've known what was the cause since we've been hit with the ex
/archives/netdev/2000-06/msg00361.html (12,558 bytes)

19. Re: Slow TCP connection between linux and wince (score: 1)
Author: Aki M Laukkanen <amlaukka@xxxxxxxxxxxxxx>
Date: Tue, 6 Jun 2000 13:37:43 +0300 (EET DST)
Assuming 84 bytes altogether, this is quite close to 19200 bps. I get about 90-100 ms for RTT. See, http://arstechnica.com/reviews/2q00/networking/networking-1.html
/archives/netdev/2000-06/msg00366.html (9,375 bytes)

20. Re: Slow TCP connection between linux and wince (score: 1)
Author: kuznet@xxxxxxxxxxxxx
Date: Tue, 6 Jun 2000 21:36:29 +0400 (MSK DST)
Hello! I think, it is possible. Only I have no idea, how to make this. 8) I see no problems in tcpdump, it looks perfect. No, it is impossible. Sender cannot do anything with receiver's window. Seems
/archives/netdev/2000-06/msg00371.html (9,374 bytes)


This search system is powered by Namazu