From: Quentin Perret <qperret@google.com>
To: Colton Lewis <coltonlewis@google.com>
Cc: kvm@vger.kernel.org, Marc Zyngier <maz@kernel.org>,
Oliver Upton <oliver.upton@linux.dev>,
James Morse <james.morse@arm.com>,
Suzuki K Poulose <suzuki.poulose@arm.com>,
Zenghui Yu <yuzenghui@huawei.com>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>,
Paolo Bonzini <pbonzini@redhat.com>,
Ingo Molnar <mingo@redhat.com>,
Peter Zijlstra <peterz@infradead.org>,
Juri Lelli <juri.lelli@redhat.com>,
Vincent Guittot <vincent.guittot@linaro.org>,
Dietmar Eggemann <dietmar.eggemann@arm.com>,
Steven Rostedt <rostedt@goodmis.org>,
Ben Segall <bsegall@google.com>, Mel Gorman <mgorman@suse.de>,
Daniel Bristot de Oliveira <bristot@redhat.com>,
Valentin Schneider <vschneid@redhat.com>,
linux-arm-kernel@lists.infradead.org, kvmarm@lists.linux.dev,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] KVM: arm64: Add KVM_CAP to control WFx trapping
Date: Fri, 22 Mar 2024 14:34:35 +0000 [thread overview]
Message-ID: <Zf2W-8duBlCk5LVm@google.com> (raw)
In-Reply-To: <Zf2Uo1l0JgBEKRAL@google.com>
On Friday 22 Mar 2024 at 14:24:35 (+0000), Quentin Perret wrote:
> On Tuesday 19 Mar 2024 at 16:43:41 (+0000), Colton Lewis wrote:
> > Add a KVM_CAP to control WFx (WFI or WFE) trapping based on scheduler
> > runqueue depth. This is so they can be passed through if the runqueue
> > is shallow or the CPU has support for direct interrupt injection. They
> > may be always trapped by setting this value to 0. Technically this
> > means traps will be cleared when the runqueue depth is 0, but that
> > implies nothing is running anyway so there is no reason to care. The
> > default value is 1 to preserve previous behavior before adding this
> > option.
>
> I recently discovered that this was enabled by default, but it's not
> obvious to me everyone will want this enabled, so I'm in favour of
> figuring out a way to turn it off (in fact we might want to make this
> feature opt in as the status quo used to be to always trap).
>
> There are a few potential issues I see with having this enabled:
>
> - a lone vcpu thread on a CPU will completely screw up the host
> scheduler's load tracking metrics if the vCPU actually spends a
> significant amount of time in WFI (the PELT signal will no longer
> be a good proxy for "how much CPU time does this task need");
>
> - the scheduler's decision will impact massively the behaviour of the
> vcpu task itself. Co-scheduling a task with a vcpu task (or not) will
> impact massively the perceived behaviour of the vcpu task in a way
> that is entirely unpredictable to the scheduler;
>
> - while the above problems might be OK for some users, I don't think
> this will always be true, e.g. when running on big.LITTLE systems the
> above sounds nightmare-ish;
>
> - the guest spending long periods of time in WFI prevents the host from
> being able to enter deeper idle states, which will impact power very
> negatively;
>
> And probably a whole bunch of other things.
>
> > Think about his option as a threshold. The instruction will be trapped
> > if the runqueue depth is higher than the threshold.
>
> So talking about the exact interface, I'm not sure exposing this to
> userspace is really appropriate. The current rq depth is next to
> impossible for userspace to control well.
>
> My gut feeling tells me we might want to gate all of this on
> PREEMPT_FULL instead, since PREEMPT_FULL is pretty much a way to say
> "I'm willing to give up scheduler tracking accuracy to gain throughput
> when I've got a task running alone on a CPU". Thoughts?
And obviously I meant s/PREEMPT_FULL/NOHZ_FULL, but hopefully that was
clear :-)
WARNING: multiple messages have this Message-ID (diff)
From: Quentin Perret <qperret@google.com>
To: Colton Lewis <coltonlewis@google.com>
Cc: kvm@vger.kernel.org, Marc Zyngier <maz@kernel.org>,
Oliver Upton <oliver.upton@linux.dev>,
James Morse <james.morse@arm.com>,
Suzuki K Poulose <suzuki.poulose@arm.com>,
Zenghui Yu <yuzenghui@huawei.com>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>,
Paolo Bonzini <pbonzini@redhat.com>,
Ingo Molnar <mingo@redhat.com>,
Peter Zijlstra <peterz@infradead.org>,
Juri Lelli <juri.lelli@redhat.com>,
Vincent Guittot <vincent.guittot@linaro.org>,
Dietmar Eggemann <dietmar.eggemann@arm.com>,
Steven Rostedt <rostedt@goodmis.org>,
Ben Segall <bsegall@google.com>, Mel Gorman <mgorman@suse.de>,
Daniel Bristot de Oliveira <bristot@redhat.com>,
Valentin Schneider <vschneid@redhat.com>,
linux-arm-kernel@lists.infradead.org, kvmarm@lists.linux.dev,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] KVM: arm64: Add KVM_CAP to control WFx trapping
Date: Fri, 22 Mar 2024 14:34:35 +0000 [thread overview]
Message-ID: <Zf2W-8duBlCk5LVm@google.com> (raw)
In-Reply-To: <Zf2Uo1l0JgBEKRAL@google.com>
On Friday 22 Mar 2024 at 14:24:35 (+0000), Quentin Perret wrote:
> On Tuesday 19 Mar 2024 at 16:43:41 (+0000), Colton Lewis wrote:
> > Add a KVM_CAP to control WFx (WFI or WFE) trapping based on scheduler
> > runqueue depth. This is so they can be passed through if the runqueue
> > is shallow or the CPU has support for direct interrupt injection. They
> > may be always trapped by setting this value to 0. Technically this
> > means traps will be cleared when the runqueue depth is 0, but that
> > implies nothing is running anyway so there is no reason to care. The
> > default value is 1 to preserve previous behavior before adding this
> > option.
>
> I recently discovered that this was enabled by default, but it's not
> obvious to me everyone will want this enabled, so I'm in favour of
> figuring out a way to turn it off (in fact we might want to make this
> feature opt in as the status quo used to be to always trap).
>
> There are a few potential issues I see with having this enabled:
>
> - a lone vcpu thread on a CPU will completely screw up the host
> scheduler's load tracking metrics if the vCPU actually spends a
> significant amount of time in WFI (the PELT signal will no longer
> be a good proxy for "how much CPU time does this task need");
>
> - the scheduler's decision will impact massively the behaviour of the
> vcpu task itself. Co-scheduling a task with a vcpu task (or not) will
> impact massively the perceived behaviour of the vcpu task in a way
> that is entirely unpredictable to the scheduler;
>
> - while the above problems might be OK for some users, I don't think
> this will always be true, e.g. when running on big.LITTLE systems the
> above sounds nightmare-ish;
>
> - the guest spending long periods of time in WFI prevents the host from
> being able to enter deeper idle states, which will impact power very
> negatively;
>
> And probably a whole bunch of other things.
>
> > Think about his option as a threshold. The instruction will be trapped
> > if the runqueue depth is higher than the threshold.
>
> So talking about the exact interface, I'm not sure exposing this to
> userspace is really appropriate. The current rq depth is next to
> impossible for userspace to control well.
>
> My gut feeling tells me we might want to gate all of this on
> PREEMPT_FULL instead, since PREEMPT_FULL is pretty much a way to say
> "I'm willing to give up scheduler tracking accuracy to gain throughput
> when I've got a task running alone on a CPU". Thoughts?
And obviously I meant s/PREEMPT_FULL/NOHZ_FULL, but hopefully that was
clear :-)
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2024-03-22 14:34 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-19 16:43 [PATCH v2] KVM: arm64: Add KVM_CAP to control WFx trapping Colton Lewis
2024-03-19 16:43 ` Colton Lewis
2024-03-22 14:24 ` Quentin Perret
2024-03-22 14:24 ` Quentin Perret
2024-03-22 14:34 ` Quentin Perret [this message]
2024-03-22 14:34 ` Quentin Perret
2024-03-25 20:12 ` Colton Lewis
2024-03-25 20:12 ` Colton Lewis
2024-03-28 10:30 ` Quentin Perret
2024-03-28 10:30 ` Quentin Perret
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=Zf2W-8duBlCk5LVm@google.com \
--to=qperret@google.com \
--cc=bristot@redhat.com \
--cc=bsegall@google.com \
--cc=catalin.marinas@arm.com \
--cc=coltonlewis@google.com \
--cc=dietmar.eggemann@arm.com \
--cc=james.morse@arm.com \
--cc=juri.lelli@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=kvmarm@lists.linux.dev \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maz@kernel.org \
--cc=mgorman@suse.de \
--cc=mingo@redhat.com \
--cc=oliver.upton@linux.dev \
--cc=pbonzini@redhat.com \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.org \
--cc=suzuki.poulose@arm.com \
--cc=vincent.guittot@linaro.org \
--cc=vschneid@redhat.com \
--cc=will@kernel.org \
--cc=yuzenghui@huawei.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.