[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20110611215919.5fc29c27@konijn>
Date: Sat, 11 Jun 2011 21:59:19 +0200
From: Joris van Rantwijk <joris@...isvr.nl>
To: netdev@...r.kernel.org
Subject: Question about LRO/GRO and TCP acknowledgements
Hi,
I'm trying to understand how Linux produces TCP acknowledgements
for segments received via LRO/GRO.
As far as I can see, the network driver uses GRO to collect several
received packets into one big super skb, which is then handled
during just one call to tcp_v4_rcv(). This will eventually result
in the sending of at most one ACK packet for the entire GRO packet.
Conventional wisdom (RFC 5681) says that a receiver should send at
least one ACK for every two data segments received. The sending TCP
needs these ACKs to update its congestion window (e.g. slow start).
It seems to me that the current implementation in Linux may send
just one ACK for a large number of received segments. This would
be a deviation from the standard. As a result the congestion
window of the sender would grow much slower than intended.
Maybe I misunderstand something in the network code (likely).
Could someone please explain me how this ACK issue is handled?
Thanks,
Joris van Rantwijk.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists