Re: [PATCH net] tcp_bbr: better deal with suboptimal GSO
From: Eric Dumazet <edumazet@google.com>
Date: 2018-02-21 15:09:44
From: Eric Dumazet <edumazet@google.com>
Date: 2018-02-21 15:09:44
On Wed, Feb 21, 2018 at 7:01 AM, Paolo Abeni [off-list ref] wrote:
Very minor nit, why don't:
return max_t(u32, bytes / mss_now, min_tso_segs);
and drop the 'segs' local variable?Simply to ease backports. We had some constant changes in this function in the past.