From: David Gibson <david@gibson.dropbear.id.au>
To: Stefano Brivio <sbrivio@redhat.com>
Cc: passt-dev@passt.top
Subject: Re: [PATCH v2 8/8] tcp_splice: Improve EOF and read stall exit conditions
Date: Sat, 6 Jun 2026 02:26:56 +1000 [thread overview]
Message-ID: <aiL40P-R8PYP2w4s@zatzit> (raw)
In-Reply-To: <20260605125940.09263492@elisabeth>
[-- Attachment #1: Type: text/plain, Size: 3020 bytes --]
On Fri, Jun 05, 2026 at 12:59:42PM +0200, Stefano Brivio wrote:
> On Fri, 5 Jun 2026 10:34:16 +1000
> David Gibson <david@gibson.dropbear.id.au> wrote:
>
> > At the end of our loop we have a conditional 'break' that exits if we're
> > at EOF on the read side and have nothing left in the pipe. This makes
> > sense: at EOF there's nothing left to do read-side and with nothing in the
> > pipe there's nothing to do write side either.
> >
> > The same is true if the read side hit an EAGAIN and the pipe is empty:
> > there's nothing we can do (for now) read side, and with an empty pipe
> > nothing write side either. So, generalise the condition to exit on either
> > EOF or EAGAIN read side.
> >
> > Furthermore, if the read side is at EOF or EAGAIN and there's already
> > nothing in the pipe before the write-side splice(), then that write side
> > splice() can't accomplish anything, so exit the loop early in that case
> > avoiding a harmless but unnecessary write-splice().
> >
> > Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
> > ---
> > tcp_splice.c | 20 +++++++++++++++-----
> > 1 file changed, 15 insertions(+), 5 deletions(-)
> >
> > Changes in v2:
> > * Duplicate rather than move the test, it's valuable in both places.
> > * Make comments and commit message clearer
> >
> > diff --git a/tcp_splice.c b/tcp_splice.c
> > index 565596d3..1e3c7749 100644
> > --- a/tcp_splice.c
> > +++ b/tcp_splice.c
> > @@ -497,9 +497,17 @@ static int tcp_splice_forward(struct ctx *c,
> >
> > flow_trace(conn, "%zi from read-side call", readlen);
> >
> > - if (!readlen) {
> > - conn_event(conn, FIN_RCVD(fromsidei));
> > - } else if (readlen > 0) {
> > + if (readlen <= 0) {
> > + if (!readlen) /* EOF */
> > + conn_event(conn, FIN_RCVD(fromsidei));
> > +
> > + /* We're either blocked or at EOF on the read side, and
> > + * there's nothing in the pipe so there's nothing to do
> > + * write side either.
> > + */
> > + if (!conn->pending[fromsidei])
> > + break;
> > + } else {
> > conn->pending[fromsidei] += readlen;
> >
> > if (readlen >= (long)c->tcp.pipe_size * 90 / 100)
> > @@ -531,9 +539,11 @@ static int tcp_splice_forward(struct ctx *c,
> >
> > conn->pending[fromsidei] -= written;
> >
> > - if (conn->events & FIN_RCVD(fromsidei) &&
> > - !conn->pending[fromsidei])
> > + if (!conn->pending[fromsidei] && readlen <= 0) {
> > + /* Read side is EOF or EAGAIN, and we emptied the pipe.
> > + * No more we can do for now, */
>
> Changed "now," to "now.", added empty comment line, applied.
Oops, thanks.
>
> > break;
> > + }
> > }
> >
> > /* We need write-side wakeups if and only if we have data in the pipe to
>
> --
> Stefano
>
--
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 --]
next prev parent reply other threads:[~2026-06-05 16:27 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-28 5:02 [PATCH 0/8] splice() forwarding cleanups David Gibson
2026-05-28 5:02 ` [PATCH 1/8] tcp_splice: Remove never-invoked SO_RCVLOWAT logic David Gibson
2026-05-28 5:02 ` [PATCH 2/8] tcp_splice: Simplify EPOLLRDHUP / eof / FIN handling David Gibson
2026-05-28 5:02 ` [PATCH 3/8] tcp_splice: Improve EOF exit condition for the loop David Gibson
2026-05-28 5:02 ` [PATCH 4/8] tcp_splice: Remove goto from forwarding loop David Gibson
2026-05-28 5:02 ` [PATCH 5/8] tcp_splice: Simplify shutdown(2) handling David Gibson
2026-05-28 5:02 ` [PATCH 6/8] tcp_splice: Simplify / correct OUT_WAIT flag handling David Gibson
2026-06-04 4:41 ` Stefano Brivio
2026-06-04 5:14 ` David Gibson
2026-05-28 5:02 ` [PATCH 7/8] tcp_splice: Remove questionable "optimisation" of pending bytes tracking David Gibson
2026-06-04 4:41 ` Stefano Brivio
2026-06-04 5:14 ` David Gibson
2026-05-28 5:02 ` [PATCH 8/8] tcp_splice: Exit forwarding earlier when stalled read side David Gibson
2026-06-04 4:41 ` Stefano Brivio
2026-06-04 5:26 ` David Gibson
2026-06-04 5:44 ` Stefano Brivio
2026-06-04 7:08 ` David Gibson
2026-06-05 0:34 ` [PATCH v2 8/8] tcp_splice: Improve EOF and read stall exit conditions David Gibson
2026-06-05 10:59 ` Stefano Brivio
2026-06-05 16:26 ` David Gibson [this message]
2026-06-05 6:28 ` [PATCH 0/8] splice() forwarding cleanups 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=aiL40P-R8PYP2w4s@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).