From: Paolo Abeni <pabeni@redhat.com>
To: Wesley Atwell <atwellwea@gmail.com>, netdev@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org,
davem@davemloft.net, dsahern@kernel.org, edumazet@google.com,
horms@kernel.org, kuba@kernel.org, kuniyu@google.com,
ncardwell@google.com, shuah@kernel.org
Subject: Re: [PATCH net-next 2/3] tcp: keep scaled no-shrink window representable
Date: Thu, 19 Mar 2026 11:50:01 +0100 [thread overview]
Message-ID: <f5c9a512-4779-4cc4-aed9-37ce0131b3b8@redhat.com> (raw)
In-Reply-To: <20260317065137.1533226-3-atwellwea@gmail.com>
On 3/17/26 7:51 AM, Wesley Atwell wrote:
> diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c
> index 35c3b0ab5a0cb714155d5720fe56888f71aecced..bd3a43148a87e891bc632a47ffb5b82c475e8f6f 100644
> --- a/net/ipv4/tcp_output.c
> +++ b/net/ipv4/tcp_output.c
> @@ -3375,13 +3375,19 @@ u32 __tcp_select_window(struct sock *sk)
> * scaled window will not line up with the MSS boundary anyway.
> */
> if (tp->rx_opt.rcv_wscale) {
> - window = free_space;
> + u32 gran = 1U << tp->rx_opt.rcv_wscale;
>
> - /* Advertise enough space so that it won't get scaled away.
> - * Import case: prevent zero window announcement if
> - * 1<<rcv_wscale > mss.
> + /* Keep tp->rcv_wnd representable in scaled units so later
> + * no-shrink decisions reason about the same right edge we
> + * can advertise on the wire. Preserve only a small non-zero
> + * offer that would otherwise get scaled away to zero.
> */
> - window = ALIGN(window, (1 << tp->rx_opt.rcv_wscale));
> + if (free_space >= gran)
> + window = round_down(free_space, gran);
The receive window already has a similar rounding in the `free_space <
(full_space >> 1)` case. This is basically excluding only:
gran > free_space >= (full_space >> 1)
which IDK if is a realistic situation, perhaps just do the scale down
unconditionally?
Also minor nit, prefer 'granularity' over 'gran'
/P
next prev parent reply other threads:[~2026-03-19 10:50 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-17 6:51 [PATCH net-next 0/3] tcp: fix scaled no-shrink rwnd quantization slack Wesley Atwell
2026-03-17 6:51 ` [PATCH net-next 1/3] selftests: packetdrill: stop pinning rwnd in tcp_ooo_rcv_mss Wesley Atwell
2026-03-19 10:22 ` Paolo Abeni
2026-03-19 14:51 ` Neal Cardwell
2026-03-19 20:53 ` Wesley Atwell
2026-03-17 6:51 ` [PATCH net-next 2/3] tcp: keep scaled no-shrink window representable Wesley Atwell
2026-03-19 10:50 ` Paolo Abeni [this message]
2026-03-19 21:21 ` Wesley Atwell
2026-03-17 6:51 ` [PATCH net-next 3/3] selftests: packetdrill: cover scaled rwnd quantization slack Wesley Atwell
2026-03-22 16:32 ` Simon Baatz
2026-03-24 5:27 ` Wesley Atwell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f5c9a512-4779-4cc4-aed9-37ce0131b3b8@redhat.com \
--to=pabeni@redhat.com \
--cc=atwellwea@gmail.com \
--cc=davem@davemloft.net \
--cc=dsahern@kernel.org \
--cc=edumazet@google.com \
--cc=horms@kernel.org \
--cc=kuba@kernel.org \
--cc=kuniyu@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=ncardwell@google.com \
--cc=netdev@vger.kernel.org \
--cc=shuah@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®