Netdev List
 help / color / mirror / Atom feed
* [PATCH net v3 0/2] tcp: protect locked SO_RCVBUF from Silly Window Syndrome
@ 2026-05-07 15:48 Ankit Jain
  2026-05-07 15:48 ` [PATCH net v3 1/2] " Ankit Jain
  2026-05-07 15:48 ` [PATCH net v3 2/2] selftests/net: add packetdrill test for locked SO_RCVBUF SWS Ankit Jain
  0 siblings, 2 replies; 4+ messages in thread
From: Ankit Jain @ 2026-05-07 15:48 UTC (permalink / raw)
  To: edumazet, netdev
  Cc: kuba, davem, pabeni, ncardwell, kuniyu, horms, shuah,
	quic_subashab, quic_stranche, linux-kselftest, linux-kernel,
	karen.badiryan, ajay.kaher, alexey.makhalov,
	vamsi-krishna.brahmajosyula, yin.ding, tapas.kundu, Ankit Jain

This patch series fixes Silly Window Syndrome (SWS) for sockets using 
locked SO_RCVBUF.

When applications like Tomcat lock SO_RCVBUF, receiving small packets 
causes the memory truesize penalty to drop the scaling_ratio to 1. 
This shrinks the internal window clamp and leads to 504 Gateway Timeouts.

Patch 1 bypasses this penalty for locked sockets, except for GRO packets.
Patch 2 adds a packetdrill test to validate this fix.

Link to v1:
https://lore.kernel.org/all/20260427152756.1205-1-ankit-aj.jain@broadcom.com/
Link to v2:
https://lore.kernel.org/all/20260504144945.13477-1-ankit-aj.jain@broadcom.com/

v2 -> v3:
 - Changed GRO detection from checking tp->advmss to skb->len > len 
   based on Eric Dumazet's suggestion. This correctly detects GRO 
   packets even if they contain tiny segments.
 - Updated packetdrill script. Removed the ad-hoc mss 48 configuration. 
   It now uses a standard 1460 MSS and sends varying packet sizes 
   (600, 700, 800 bytes) to naturally trigger the scaling_ratio 
   recalculation.

Testing:
 - Verified fix in a live Java/Tomcat environment (504 timeouts resolved).
 - Passed the newly added packetdrill test demonstrating the clamp bypass.
 - Passed upstream regression tests: tcp_rcv_neg_window.pkt,
   tcp_rcv_wnd_shrink_allowed.pkt, tcp_rcv_wnd_shrink_nomem.pkt,
   tcp_rcv_zero_wnd_fin.pkt, and tcp_rcv_big_endseq.pkt

Ankit Jain (2):
  tcp: protect locked SO_RCVBUF from Silly Window Syndrome
  selftests/net: add packetdrill test for locked SO_RCVBUF SWS

 net/ipv4/tcp_input.c                          |  7 ++++-
 .../net/packetdrill/tcp_locked_rcvbuf_sws.pkt | 29 +++++++++++++++++++
 2 files changed, 35 insertions(+), 1 deletion(-)
 create mode 100644 tools/testing/selftests/net/packetdrill/tcp_locked_rcvbuf_sws.pkt

-- 
2.53.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-05-11  7:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-07 15:48 [PATCH net v3 0/2] tcp: protect locked SO_RCVBUF from Silly Window Syndrome Ankit Jain
2026-05-07 15:48 ` [PATCH net v3 1/2] " Ankit Jain
2026-05-11  7:18   ` Eric Dumazet
2026-05-07 15:48 ` [PATCH net v3 2/2] selftests/net: add packetdrill test for locked SO_RCVBUF SWS Ankit Jain

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox