All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marc Zyngier <maz@kernel.org>
To: Bernhard Kauer <bk@alpico.io>
Cc: Paolo Bonzini <pbonzini@redhat.com>, kvm@vger.kernel.org
Subject: Re: [PATCH] KVM: make uevents configurable
Date: Mon, 25 Nov 2024 17:31:32 +0000	[thread overview]
Message-ID: <86h67vusnf.wl-maz@kernel.org> (raw)
In-Reply-To: <20241122095806.4034415-1-bk@alpico.io>

On Fri, 22 Nov 2024 09:58:02 +0000,
Bernhard Kauer <bk@alpico.io> wrote:
> 
> Handling of uevents in userlevel is a bottleneck for tiny VMs.
> 
> Running 10_000 VMs keeps one and a half cores busy for 5.4 seconds to let
> systemd-udevd handle all messages.  That is roughly 27x longer than
> the 0.2 seconds needed for running the VMs without them.
> 
> We choose a read-only module parameter here due to its simplicity and
> ease of maintenance.
> 
> Signed-off-by: Bernhard Kauer <bk@alpico.io>
> ---
>  virt/kvm/kvm_main.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c
> index 609e0bd68e8e..6139cd67a96a 100644
> --- a/virt/kvm/kvm_main.c
> +++ b/virt/kvm/kvm_main.c
> @@ -97,6 +97,9 @@ EXPORT_SYMBOL_GPL(halt_poll_ns_shrink);
>  bool debugfs_per_vm = true;
>  module_param(debugfs_per_vm, bool, 0644);
>  
> +bool disable_uevent_notify;
> +module_param(disable_uevent_notify, bool, 0444);
> +
>  /*
>   * Ordering of locks:
>   *
> @@ -6276,7 +6279,7 @@ static void kvm_uevent_notify_change(unsigned int type, struct kvm *kvm)
>  	struct kobj_uevent_env *env;
>  	unsigned long long created, active;
>  
> -	if (!kvm_dev.this_device || !kvm)
> +	if (!kvm_dev.this_device || !kvm || disable_uevent_notify)
>  		return;
>  
>  	mutex_lock(&kvm_lock);

Thanks for this. It was on my list of things to investigate, as this
is a bottleneck when running a lot of concurrent syzkaller tests which
create and destroy VMs repeatedly.

I'm not overly keen on the command-line flag though, as this is the
sort of things you'd like to be able to control more finely. Or at
least without having to trigger a reboot.

How about something such as a sysctl? with the kvm namespace?

Thanks,

	M.

-- 
Without deviation from the norm, progress is not possible.

  reply	other threads:[~2024-11-25 17:31 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-22  9:58 [PATCH] KVM: make uevents configurable Bernhard Kauer
2024-11-25 17:31 ` Marc Zyngier [this message]
2024-11-26 10:20   ` Bernhard Kauer
2024-11-26 11:23     ` Marc Zyngier
2024-11-27  8:38       ` Bernhard Kauer
2024-11-27  9:04         ` Marc Zyngier

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=86h67vusnf.wl-maz@kernel.org \
    --to=maz@kernel.org \
    --cc=bk@alpico.io \
    --cc=kvm@vger.kernel.org \
    --cc=pbonzini@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.
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.