public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: Stefano Brivio <sbrivio@redhat.com>
Cc: passt-dev@passt.top
Subject: tcp_splice SO_RCVLOWAT code; never invoked?
Date: Fri, 11 Apr 2025 14:54:50 +1000	[thread overview]
Message-ID: <Z_igmtlHmRQpOIZu@zatzit> (raw)

[-- Attachment #1: Type: text/plain, Size: 1264 bytes --]

Hi Stefano,

When debugging the splice EINTR bug I fixed the other day, I found the
whole tcp_splice_sock_handler() pretty confusing to follow.  So, I was
working on some cleanups.  But then I noticed something more
specifically odd here.

We've discussed the use of SO_RCVLOWAT previously.  AIUI, you found it
essential to achieve reasonable throughput and load for spliced
connections.  I think we've agreed before that it's not entirely the
right tool for the job; just the only one available.

Except... as far as I can tell, it's never invoked.  AFAICT the only
place we enable the RCVLOWAT stuff is in a block under this if:

	if (!(conn->flags & lowat_set_flag) &&
	    readlen > (long)c->tcp.pipe_size / 10) {

But... this occurs immediately after:
	if (readlen >= (long)c->tcp.pipe_size * 10 / 100)
		continue;

.. which is a strictly more inclusive condition, so we'll never reach
the RCVLOWAT block.

To confirm, I tried putting an ASSERT(0) in that block, and didn't hit
it with spliced iperf3 runs.

Am I missing something?

-- 
David Gibson (he or they)	| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you, not the other way
				| around.
http://www.ozlabs.org/~dgibson

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

             reply	other threads:[~2025-04-11  4:55 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-11  4:54 David Gibson [this message]
2025-04-11  6:13 ` tcp_splice SO_RCVLOWAT code; never invoked? Stefano Brivio
2025-04-11  6:15   ` Stefano Brivio

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=Z_igmtlHmRQpOIZu@zatzit \
    --to=david@gibson.dropbear.id.au \
    --cc=passt-dev@passt.top \
    --cc=sbrivio@redhat.com \
    /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.
Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).