networking - Will the implementation of RFC3465 Appropriate Byte Count in Linux 2.6.32 be affected by GRO -
the implementation of tcp_abc in linux kernel 2.6.32 like:
323 /* rfc3465: abc 324 * may increase 2 if discovered delayed ack 325 */ 326 if (sysctl_tcp_abc > 1 && tp->bytes_acked >= 2*tp->mss_cache) 327 cnt <<= 1; if understand correctly, can deal delayed ack, has 2 mss aggregated @ most. when multiple ack packets aggregated lro/gro, implementation works poorly.
so questions is:
- will tcp_abc affected lro/gro in linux?
- is there way work around?
Comments
Post a Comment