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:

  1. will tcp_abc affected lro/gro in linux?
  2. is there way work around?


Comments

Popular posts from this blog

php - mySql Join with 4 tables -

css - Text drops down with smaller window -

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -