All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mikulas Patocka <mpatocka@redhat.com>
To: "Daniel P. Berrangé" <berrange@redhat.com>
Cc: Tejun Heo <tj@kernel.org>, Lai Jiangshan <jiangshanlai@gmail.com>,
	 Waiman Long <longman@redhat.com>,
	Mike Snitzer <snitzer@kernel.org>,
	 Laurence Oberman <loberman@redhat.com>,
	 Jonathan Brassow <jbrassow@redhat.com>,
	Ming Lei <minlei@redhat.com>,  Ondrej Kozina <okozina@redhat.com>,
	Milan Broz <gmazyland@gmail.com>,
	 linux-kernel@vger.kernel.org, dm-devel@lists.linux.dev,
	 users@lists.libvirt.org
Subject: Re: dm-crypt performance regression due to workqueue changes
Date: Mon, 1 Jul 2024 15:42:29 +0200 (CEST)	[thread overview]
Message-ID: <e52c5a40-8ca9-38ae-1595-3785c6ac435@redhat.com> (raw)
In-Reply-To: <ZoKqYg7TKiozapmW@redhat.com>

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



On Mon, 1 Jul 2024, Daniel P. Berrangé wrote:

> On Sun, Jun 30, 2024 at 08:49:48PM +0200, Mikulas Patocka wrote:
> > 
> > 
> > On Sun, 30 Jun 2024, Tejun Heo wrote:
> > 
> > > Do you happen to know why libvirt is doing that? There are many other
> > > implications to configuring the system that way and I don't think we want to
> > > design kernel behaviors to suit topology information fed to VMs which can be
> > > arbitrary.
> > > 
> > > Thanks.
> > 
> > I don't know why. I added users@lists.libvirt.org to the CC.
> > 
> > How should libvirt properly advertise "we have 16 threads that are 
> > dynamically scheduled by the host kernel, so the latencies between them 
> > are changing and unpredictable"?
> 
> NB, libvirt is just control plane, the actual virtual hardware exposed
> is implemented across QEMU and the KVM kernel mod. Guest CPU topology
> and/or NUMA cost information is the responsibility of QEMU.
> 
> When QEMU's virtual CPUs are floating freely across host CPUs there's
> no perfect answer. The host admin needs to make a tradeoff in their
> configuration
> 
> They can optimize for density, by allowing guest CPUs to float freely
> and allow CPU overcommit against host CPUs, and the guest CPU topology
> is essentially a lie.
> 
> They can optimize for predictable performance, by strictly pinning
> guest CPUs 1:1 to host CPUs, and minimize CPU overcommit, and have
> the guest CPU topology 1:1 match the host CPU topology.
> 
> With regards,
> Daniel

The problem that we have here is that the commit 
63c5484e74952f60f5810256bd69814d167b8d22 ("workqueue: Add multiple 
affinity scopes and interface to select them") changes the behavior of 
unbound workqueues, so that work items are only executed on CPUs that 
share last level cache with the task that submitted them.

If there are 16 virtual CPUs that are freely floating across physical 
CPUs, virt-manager by default selects a topology where it advertises 16 
sockets, 1 CPU per socket, 1 thread per CPU. The result is that the 
unbound workqueues are no longer unbound, they can't move work across 
sockets and they are bound to just one virtual CPU, causing dm-crypt 
performance degradation. (the crypto operations are no longer 
parallelized).

Whose bug is this? Is it a bug in virt-manager because it advertises 
invalid topology? Is this a bug in that patch 63c5484e7495 because it 
avoids moving work items across sockets?

Mikulas

  reply	other threads:[~2024-07-01 13:42 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-29 18:15 dm-crypt performance regression due to workqueue changes Mikulas Patocka
2024-06-29 18:29 ` Waiman Long
2024-06-30  9:49   ` Mikulas Patocka
2024-06-30 14:35     ` Waiman Long
2024-06-30 17:13 ` Tejun Heo
2024-06-30 18:49   ` Mikulas Patocka
2024-07-01 12:48     ` Michal Prívozník
2024-07-01 13:25       ` Daniel P. Berrangé
2024-07-01 13:40         ` Mikulas Patocka
2024-07-01 13:08     ` Daniel P. Berrangé
2024-07-01 13:42       ` Mikulas Patocka [this message]
2024-07-01 13:52         ` Daniel P. Berrangé
2024-07-01 17:25           ` Tejun Heo
  -- strict thread matches above, loose matches on Subject: below --
2024-03-09 10:18 Thread for updating minor properties of tracked regressions [consider ignoring it!] Thorsten Leemhuis
2024-07-07 22:54 ` Christian Heusel
2024-07-08  7:08   ` dm-crypt performance regression due to workqueue changes (was: Re: Thread for updating minor properties of tracked regressions [consider ignoring it!]) Thorsten Leemhuis
2024-07-08 10:51     ` Christian Heusel
2024-07-08 11:16       ` dm-crypt performance regression due to workqueue changes Thorsten Leemhuis
2024-07-08 17:03         ` Christian Heusel
2024-07-09  7:53           ` Thorsten Leemhuis

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=e52c5a40-8ca9-38ae-1595-3785c6ac435@redhat.com \
    --to=mpatocka@redhat.com \
    --cc=berrange@redhat.com \
    --cc=dm-devel@lists.linux.dev \
    --cc=gmazyland@gmail.com \
    --cc=jbrassow@redhat.com \
    --cc=jiangshanlai@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=loberman@redhat.com \
    --cc=longman@redhat.com \
    --cc=minlei@redhat.com \
    --cc=okozina@redhat.com \
    --cc=snitzer@kernel.org \
    --cc=tj@kernel.org \
    --cc=users@lists.libvirt.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.