All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Daniel P. Berrangé" <berrange@redhat.com>
To: Peter Xu <peterx@redhat.com>
Cc: qemu-devel@nongnu.org, Juraj Marcin <jmarcin@redhat.com>,
	Fabiano Rosas <farosas@suse.de>
Subject: Re: [PATCH] io: bounce-buffer TLS writes to avoid nagle go-slow
Date: Tue, 8 Sep 2026 20:24:56 +0100	[thread overview]
Message-ID: <aqBhCHaRRERA2spt@redhat.com> (raw)
In-Reply-To: <aqBQJenwT_GcEr14@t14>

On Tue, Sep 08, 2026 at 02:12:53PM -0400, Peter Xu wrote:
> On Mon, Sep 07, 2026 at 03:51:12PM +0100, Daniel P. Berrangé wrote:
> > The migration code caches vmstate/ram writes into an iovec and
> > flushes this every 128kb.
> 
> I am just curious how did this 128K came from. Perhaps this?
> 
>   MAX_IOV_SIZE / 2 * 4K
> 
> Where QEMU has:
> 
> #define MAX_IOV_SIZE MIN_CONST(IOV_MAX, 64)
> 
> And it needs to divides 2 because we always push save_page_header() first,
> which is 8B (in reality, maybe that'll also include some footers ahead from
> the last page..), then another 4K following it.  Then in average when
> hitting 64 io vectors there're 32 pages, coming up to be that.
> 
> I think that is right math for bulk ram phase, but maybe worth spelling out
> a bit.. because if above holds it's not very obvious..

Tracing the qio_channel_writev() calls yet again, I think my
mention of 128k is wrong. I'm now actually seeing alot of
1/2 MB writes. eg

Writev 64 (nvio=1)
Writev 64 (nvio=1)
Writev 64 (nvio=1)
Writev 64 (nvio=1)
Writev 1344 (nvio=1)
Writev 1344 (nvio=1)
Writev 1344 (nvio=1)
Writev 1344 (nvio=1)
Writev 281 (nvio=1)
Writev 8 (nvio=1)
Writev 525632 (nvio=129)
Writev 525632 (nvio=129)
Writev 13632 (nvio=4)
Writev 173376 (nvio=43)
Writev 525632 (nvio=129)
Writev 525632 (nvio=129)
Writev 525632 (nvio=129)
Writev 525632 (nvio=129)
Writev 525632 (nvio=129)
Writev 525632 (nvio=129)


> 
> > 
> > The QIOChannelTLS receives the iovec, but size GNUTLS cannot
> > accept iovec data, it iterates calling send for each element.
> > 
> > As a result of the migration data pattern, this results in
> > GNUTLS putting writes on the wire that alternate between about
> > 4k and 30 bytes.
> > 
> > This is triggering the nagle algorithm on migration-test for
> > many of the TLS test cases, resulting in a "go slow" for I/O
> > that eventually hits the migration timeout configured by the
> > test.
> 
> Worth spell out the qio_channel_set_delay() experiment?
> 
> Frankly, even knowing qio_channel_set_delay(NO_DELAY) on all channels would
> fix it too, I don't think I fully get why the hang happened.

Note, it was never technically a "hang", it was just a "go slow".
The src was still sending and the dst was still receiving but it
was pathologically slow, a few KBs per second, instead of 100s or
1000s of MBs.

> Nagle, if my understanding is correct.. should be something trying to
> accumulate small writes only, it means write can be slightly delayed, but
> it didn't further explain why even if we push writting to it, it didn't
> flush properly.

The nagle algorithm influences the TCP window size. The src cannot
send more data, until the dst has acknowledged packets already sent.

IIUC, normally if you send large volumes of data the window size will
grow large quite quickly. If you send lots of small packets, nagle
can keep the window size small and thus delay pending writes.

Migration with large iovec arrays was causnig alot of small writes,
so I think that meant the window size did not grow enough to get
a high speed.

> Say, I understand TLS is special now with its io_writev(), being
> qio_channel_tls_writev(), split the iov into multiple calls to
> qcrypto_tls_session_write(), which is likely why the problem existed, but I
> don't think I know why multiple qcrypto_tls_session_write() (and I believe
> ultimately, assuming small but continuous write()s to the socket fd) will
> cause a hang.  Any clue?

What I can't explain is why only certain contributors ever saw this
as a problem ?

> > This patch thus queries the max TLS record size and then
> > flattens the iovec into buffers of this size. If the
> > iovec only contains a single element, bounce buffering
> > is skipped to avoid the redundant copy.
> 
> I saw there is also gnutls_record_cork() and the uncork(), which seems to
> resolve the same issue (I tried to look at gnutls git history but I didn't
> find any mention of why the API introduced.. though).
> 
> Any thoughts on why not relying on that, say, would it work too if cork()
> at start of qio_channel_tls_writev(), loop, then uncork()?

Yes, relying on gnutls_record_cork is something I can try - it would
certainly be nice to avoid the bounce buffering, as that's significant
overhead when we're talking about iovecs with 1/2 MB of data at a
time.

I'll prepare a v2.

With regards,
Daniel
-- 
|: https://berrange.com       ~~        https://hachyderm.io/@berrange :|
|: https://libvirt.org          ~~          https://entangle-photo.org :|
|: https://pixelfed.art/berrange   ~~    https://fstop138.berrange.com :|



  reply	other threads:[~2026-09-08 19:25 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-07 14:51 [PATCH] io: bounce-buffer TLS writes to avoid nagle go-slow Daniel P. Berrangé
2026-09-08 18:12 ` Peter Xu
2026-09-08 19:24   ` Daniel P. Berrangé [this message]
2026-09-09 21:09     ` Peter Xu

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=aqBhCHaRRERA2spt@redhat.com \
    --to=berrange@redhat.com \
    --cc=farosas@suse.de \
    --cc=jmarcin@redhat.com \
    --cc=peterx@redhat.com \
    --cc=qemu-devel@nongnu.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.