* [PATCH][net-next] LRO: improve aggregation in case of zero TSecr packets
@ 2009-08-26 23:08 Octavian Purdila
2009-08-31 5:11 ` David Miller
2009-09-25 21:33 ` Herbert Xu
0 siblings, 2 replies; 4+ messages in thread
From: Octavian Purdila @ 2009-08-26 23:08 UTC (permalink / raw)
To: Jan-Bernd Themann; +Cc: Christoph Raisch, Eric Dumazet, netdev
[-- Attachment #1: Type: text/plain, Size: 1420 bytes --]
This fixes a temporary performance issue we noticed in back to back
TSO - LRO tests when such tests are run within five minutes after
boot.
The TSval field of TCP packets is filled in based on the current
jiffie, which is initialized at -300*HZ. That means that in 5 minutes
after reboot it will wrap to zero.
While the jiffie value is 0 on the LRO side, TCP packets will be
send out with TSVal zero as well. The TSO side will respond with
packets in which TSecr is set to zero.
At this point LRO will avoid aggregating the packets, suddenly
putting a lot of pressure on the stack which will result in drops and
retransmission for a short while.
There are cases where aggregating zero TSecr is better and cases in
which is not:
1. non zero TSecr packets, zero TSecr packet
Better not to aggregate, otherwise we miss a valid TSecr.
2. zero TSecr packets (amplified by TSO)
Better to aggregate.
3. zero TSecr packet, non zero TSecr packets
OK to aggregate.
4. non zero TSecr packets, zero TSecr packets, non zero TSecr packet
OK to aggregate, but not a big overhead if we aggregate in 2
segments instead of one.
This patch allows aggregation for cases 2 and 3 as well as aggregation
in 2 segments for case 4, while denying aggregation in case 1.
Signed-off-by: Octavian Purdila <opurdila@ixiacom.com>
---
net/ipv4/inet_lro.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
[-- Attachment #2: d943fa4bd69b5ff21505eb6187120fe60868b5f9.diff --]
[-- Type: text/x-patch, Size: 474 bytes --]
diff --git a/net/ipv4/inet_lro.c b/net/ipv4/inet_lro.c
index 6a667da..d16c9d5 100644
--- a/net/ipv4/inet_lro.c
+++ b/net/ipv4/inet_lro.c
@@ -90,9 +90,9 @@ static int lro_tcp_ip_check(struct iphdr *iph, struct tcphdr *tcph,
ntohl(*topt)))
return -1;
- /* timestamp reply should not be zero */
+ /* aggregate if we are sure we won't miss a valid TSecr */
topt++;
- if (*topt == 0)
+ if (*topt == 0 && lro_desc->tcp_rcv_tsecr != 0)
return -1;
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH][net-next] LRO: improve aggregation in case of zero TSecr packets
2009-08-26 23:08 [PATCH][net-next] LRO: improve aggregation in case of zero TSecr packets Octavian Purdila
@ 2009-08-31 5:11 ` David Miller
2009-08-31 17:15 ` Octavian Purdila
2009-09-25 21:33 ` Herbert Xu
1 sibling, 1 reply; 4+ messages in thread
From: David Miller @ 2009-08-31 5:11 UTC (permalink / raw)
To: opurdila; +Cc: themann, raisch, eric.dumazet, netdev
From: Octavian Purdila <opurdila@ixiacom.com>
Date: Thu, 27 Aug 2009 02:08:31 +0300
> This fixes a temporary performance issue we noticed in back to back
> TSO - LRO tests when such tests are run within five minutes after
> boot.
>
> The TSval field of TCP packets is filled in based on the current
> jiffie, which is initialized at -300*HZ. That means that in 5 minutes
> after reboot it will wrap to zero.
RFC1323 says we absolutely must ignore zero TSecr values.
It is a bug that the stack emits a zero value when it means to give a
real TSecr value that will be used.
Probably we can do something like emit '1' when we would emit '0'
based upon jiffies.
And this would be an improvement from now in that having a off-by-one
TSecr in this situation is better than emitting one which we can
guarentee will be ignored.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH][net-next] LRO: improve aggregation in case of zero TSecr packets
2009-08-31 5:11 ` David Miller
@ 2009-08-31 17:15 ` Octavian Purdila
0 siblings, 0 replies; 4+ messages in thread
From: Octavian Purdila @ 2009-08-31 17:15 UTC (permalink / raw)
To: David Miller; +Cc: themann, raisch, eric.dumazet, netdev
On Monday 31 August 2009 08:11:05 David Miller wrote:
> From: Octavian Purdila <opurdila@ixiacom.com>
> Date: Thu, 27 Aug 2009 02:08:31 +0300
>
> > This fixes a temporary performance issue we noticed in back to back
> > TSO - LRO tests when such tests are run within five minutes after
> > boot.
> >
> > The TSval field of TCP packets is filled in based on the current
> > jiffie, which is initialized at -300*HZ. That means that in 5 minutes
> > after reboot it will wrap to zero.
>
> RFC1323 says we absolutely must ignore zero TSecr values.
>
> It is a bug that the stack emits a zero value when it means to give a
> real TSecr value that will be used.
>
> Probably we can do something like emit '1' when we would emit '0'
> based upon jiffies.
>
> And this would be an improvement from now in that having a off-by-one
> TSecr in this situation is better than emitting one which we can
> guarentee will be ignored.
Right, why did I thought that the LRO TSecr issue can happen even when
emitting a right TSval ? :-/
I'll follow with a patch which takes this approach.
Thanks,
tavi
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH][net-next] LRO: improve aggregation in case of zero TSecr packets
2009-08-26 23:08 [PATCH][net-next] LRO: improve aggregation in case of zero TSecr packets Octavian Purdila
2009-08-31 5:11 ` David Miller
@ 2009-09-25 21:33 ` Herbert Xu
1 sibling, 0 replies; 4+ messages in thread
From: Herbert Xu @ 2009-09-25 21:33 UTC (permalink / raw)
To: Octavian Purdila; +Cc: themann, raisch, eric.dumazet, netdev
Octavian Purdila <opurdila@ixiacom.com> wrote:
>
> This fixes a temporary performance issue we noticed in back to back
> TSO - LRO tests when such tests are run within five minutes after
> boot.
Sorry for responding to old emails again but just for the record,
please keep in mind that LRO is going away so you really should
run your tests with GRO (and update the driver if necessary) as
otherwise your efforts may end up being wasted.
In this particular instance, you're trying to fix an issue that
GRO already fixes.
Cheers,
--
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-09-25 21:33 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-26 23:08 [PATCH][net-next] LRO: improve aggregation in case of zero TSecr packets Octavian Purdila
2009-08-31 5:11 ` David Miller
2009-08-31 17:15 ` Octavian Purdila
2009-09-25 21:33 ` Herbert Xu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox