From: Shrikanth Hegde <sshegde@linux.ibm.com>
To: Hongyan Xia <hongyan.xia@transsion.com>
Cc: Jiazi Li <jiazi.li@transsion.com>,
"virtualization@lists.linux.dev" <virtualization@lists.linux.dev>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"loongarch@lists.linux.dev" <loongarch@lists.linux.dev>,
"linuxppc-dev@lists.ozlabs.org" <linuxppc-dev@lists.ozlabs.org>,
"linux-riscv@lists.infradead.org"
<linux-riscv@lists.infradead.org>,
"kvm@vger.kernel.org" <kvm@vger.kernel.org>,
"xen-devel@lists.xenproject.org" <xen-devel@lists.xenproject.org>,
Juergen Gross <jgross@suse.com>,
Ajay Kaher <ajay.kaher@broadcom.com>,
Alexey Makhalov <alexey.makhalov@broadcom.com>,
Broadcom internal kernel review list
<bcm-kernel-feedback-list@broadcom.com>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>,
Huacai Chen <chenhuacai@kernel.org>,
WANG Xuerui <kernel@xen0n.name>,
Madhavan Srinivasan <maddy@linux.ibm.com>,
Michael Ellerman <mpe@ellerman.id.au>,
Nicholas Piggin <npiggin@gmail.com>,
"Christophe Leroy (CS GROUP)" <chleroy@kernel.org>,
Paul Walmsley <pjw@kernel.org>,
Palmer Dabbelt <palmer@dabbelt.com>,
Albert Ou <aou@eecs.berkeley.edu>,
Alexandre Ghiti <alex@ghiti.fr>,
Thomas Gleixner <tglx@kernel.org>, Ingo Molnar <mingo@redhat.com>,
Borislav Petkov <bp@alien8.de>,
Dave Hansen <dave.hansen@linux.intel.com>,
"x86@kernel.org" <x86@kernel.org>,
"H. Peter Anvin" <hpa@zytor.com>,
Paolo Bonzini <pbonzini@redhat.com>,
Vitaly Kuznetsov <vkuznets@redhat.com>,
Stefano Stabellini <sstabellini@kernel.org>,
Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.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>,
Valentin Schneider <vschneid@redhat.com>,
K Prateek Nayak <kprateek.nayak@amd.com>
Subject: Re: [PATCH RESEND] sched: Convert paravirt_steal to new static key APIs
Date: Thu, 20 Aug 2026 16:16:40 +0530 [thread overview]
Message-ID: <99bdc3e0-0e0f-4cb1-8747-dd7667307492@linux.ibm.com> (raw)
In-Reply-To: <20260819081207.12150-1-hongyan.xia@transsion.com>
Hi Hongyan.
On 8/19/26 1:42 PM, Hongyan Xia wrote:
> From: Hongyan Xia <hongyan.xia@transsion.com>
>
> paravirt_steal_rq_enabled and paravirt_steal_enabled use raw static_key
> APIs which are now deprecated. Use the new API instead.
>
> No functional change.
>
FWIW, looks good to me. One minor nit.
Reviewed-by: Shrikanth Hegde <sshegde@linux.ibm.com>
> Signed-off-by: Hongyan Xia <hongyan.xia@transsion.com>
> Acked-by: Juergen Gross <jgross@suse.com>
> ---
> Changed in RESEND:
> - Separate the original series into individual patches. They aren't easy
> to review as a series.
>
> arch/arm64/kernel/paravirt.c | 4 ++--
> arch/loongarch/kernel/paravirt.c | 4 ++--
> arch/powerpc/platforms/pseries/setup.c | 4 ++--
> arch/riscv/kernel/paravirt.c | 4 ++--
> arch/x86/kernel/cpu/vmware.c | 4 ++--
> arch/x86/kernel/kvm.c | 4 ++--
> drivers/xen/time.c | 4 ++--
> include/linux/sched/cputime.h | 6 +++---
> kernel/sched/core.c | 4 ++--
> kernel/sched/cputime.c | 4 ++--
> 10 files changed, 21 insertions(+), 21 deletions(-)
>
> diff --git a/arch/arm64/kernel/paravirt.c b/arch/arm64/kernel/paravirt.c
> index 572efb96b23f..30bf61d031eb 100644
> --- a/arch/arm64/kernel/paravirt.c
> +++ b/arch/arm64/kernel/paravirt.c
> @@ -157,9 +157,9 @@ int __init pv_time_init(void)
>
> static_call_update(pv_steal_clock, para_steal_clock);
>
> - static_key_slow_inc(¶virt_steal_enabled);
> + static_branch_inc(¶virt_steal_enabled);
> if (steal_acc)
> - static_key_slow_inc(¶virt_steal_rq_enabled);
> + static_branch_inc(¶virt_steal_rq_enabled);
>
> pr_info("using stolen time PV\n");
>
> diff --git a/arch/loongarch/kernel/paravirt.c b/arch/loongarch/kernel/paravirt.c
> index 10821cce554c..e8965a3f8082 100644
> --- a/arch/loongarch/kernel/paravirt.c
> +++ b/arch/loongarch/kernel/paravirt.c
> @@ -308,10 +308,10 @@ int __init pv_time_init(void)
>
> static_call_update(pv_steal_clock, paravt_steal_clock);
>
> - static_key_slow_inc(¶virt_steal_enabled);
> + static_branch_inc(¶virt_steal_enabled);
> #ifdef CONFIG_PARAVIRT_TIME_ACCOUNTING
> if (steal_acc)
> - static_key_slow_inc(¶virt_steal_rq_enabled);
> + static_branch_inc(¶virt_steal_rq_enabled);
> #endif
>
> if (static_key_enabled(&virt_preempt_key))
> diff --git a/arch/powerpc/platforms/pseries/setup.c b/arch/powerpc/platforms/pseries/setup.c
> index 1223dc961242..8dcbc4bb7025 100644
> --- a/arch/powerpc/platforms/pseries/setup.c
> +++ b/arch/powerpc/platforms/pseries/setup.c
> @@ -852,9 +852,9 @@ static void __init pSeries_setup_arch(void)
> static_branch_enable(&shared_processor);
> pv_spinlocks_init();
> #ifdef CONFIG_PARAVIRT_TIME_ACCOUNTING
> - static_key_slow_inc(¶virt_steal_enabled);
> + static_branch_inc(¶virt_steal_enabled);
> if (steal_acc)
> - static_key_slow_inc(¶virt_steal_rq_enabled);
> + static_branch_inc(¶virt_steal_rq_enabled);
> #endif
> }
>
> diff --git a/arch/riscv/kernel/paravirt.c b/arch/riscv/kernel/paravirt.c
> index 5f56be79cd06..9c13a6f1ea2a 100644
> --- a/arch/riscv/kernel/paravirt.c
> +++ b/arch/riscv/kernel/paravirt.c
> @@ -116,9 +116,9 @@ int __init pv_time_init(void)
>
> static_call_update(pv_steal_clock, pv_time_steal_clock);
>
> - static_key_slow_inc(¶virt_steal_enabled);
> + static_branch_inc(¶virt_steal_enabled);
> if (steal_acc)
> - static_key_slow_inc(¶virt_steal_rq_enabled);
> + static_branch_inc(¶virt_steal_rq_enabled);
>
> pr_info("Computing paravirt steal-time\n");
>
> diff --git a/arch/x86/kernel/cpu/vmware.c b/arch/x86/kernel/cpu/vmware.c
> index 34b73573b108..f7ab9e7902cf 100644
> --- a/arch/x86/kernel/cpu/vmware.c
> +++ b/arch/x86/kernel/cpu/vmware.c
> @@ -328,9 +328,9 @@ static int vmware_cpu_down_prepare(unsigned int cpu)
> static __init int activate_jump_labels(void)
> {
> if (has_steal_clock) {
> - static_key_slow_inc(¶virt_steal_enabled);
> + static_branch_inc(¶virt_steal_enabled);
> if (steal_acc)
> - static_key_slow_inc(¶virt_steal_rq_enabled);
> + static_branch_inc(¶virt_steal_rq_enabled);
> }
>
> return 0;
> diff --git a/arch/x86/kernel/kvm.c b/arch/x86/kernel/kvm.c
> index dcef84da304b..d3dcd64f22c2 100644
> --- a/arch/x86/kernel/kvm.c
> +++ b/arch/x86/kernel/kvm.c
> @@ -1052,9 +1052,9 @@ const __initconst struct hypervisor_x86 x86_hyper_kvm = {
> static __init int activate_jump_labels(void)
> {
> if (has_steal_clock) {
> - static_key_slow_inc(¶virt_steal_enabled);
> + static_branch_inc(¶virt_steal_enabled);
> if (steal_acc)
> - static_key_slow_inc(¶virt_steal_rq_enabled);
> + static_branch_inc(¶virt_steal_rq_enabled);
> }
>
> return 0;
> diff --git a/drivers/xen/time.c b/drivers/xen/time.c
> index a2be0a4d45b0..a02d48a2aa68 100644
> --- a/drivers/xen/time.c
> +++ b/drivers/xen/time.c
> @@ -169,7 +169,7 @@ void __init xen_time_setup_guest(void)
>
> static_call_update(pv_steal_clock, xen_steal_clock);
>
> - static_key_slow_inc(¶virt_steal_enabled);
> + static_branch_inc(¶virt_steal_enabled);
> if (xen_runstate_remote)
> - static_key_slow_inc(¶virt_steal_rq_enabled);
> + static_branch_inc(¶virt_steal_rq_enabled);
> }
> diff --git a/include/linux/sched/cputime.h b/include/linux/sched/cputime.h
> index e90efaf6d26e..694126411dfe 100644
> --- a/include/linux/sched/cputime.h
> +++ b/include/linux/sched/cputime.h
> @@ -182,9 +182,9 @@ extern unsigned long long
> task_sched_runtime(struct task_struct *task);
>
> #ifdef CONFIG_PARAVIRT
> -struct static_key;
> -extern struct static_key paravirt_steal_enabled;
> -extern struct static_key paravirt_steal_rq_enabled;
> +#include <linux/jump_label.h>
nit:
This looks bit odd to see includes in the middle. I know it is including
only if necessary.
maybe worth an unconditional include in the beginning?
> +DECLARE_STATIC_KEY_FALSE(paravirt_steal_enabled);
> +DECLARE_STATIC_KEY_FALSE(paravirt_steal_rq_enabled);
>
> #ifdef CONFIG_HAVE_PV_STEAL_CLOCK_GEN
> u64 dummy_steal_clock(int cpu);
> diff --git a/kernel/sched/core.c b/kernel/sched/core.c
> index 5c07d53e43b5..84d090581a08 100644
> --- a/kernel/sched/core.c
> +++ b/kernel/sched/core.c
> @@ -795,7 +795,7 @@ struct rq *_task_rq_lock(struct task_struct *p, struct rq_flags *rf)
>
> /* Use CONFIG_PARAVIRT as this will avoid more #ifdef in arch code. */
> #ifdef CONFIG_PARAVIRT
> -struct static_key paravirt_steal_rq_enabled;
> +DEFINE_STATIC_KEY_FALSE(paravirt_steal_rq_enabled);
> #endif
>
> static void update_rq_clock_task(struct rq *rq, s64 delta)
> @@ -834,7 +834,7 @@ static void update_rq_clock_task(struct rq *rq, s64 delta)
> }
> #endif
> #ifdef CONFIG_PARAVIRT_TIME_ACCOUNTING
> - if (static_key_false((¶virt_steal_rq_enabled))) {
> + if (static_branch_unlikely(¶virt_steal_rq_enabled)) {
> u64 prev_steal;
>
> steal = prev_steal = paravirt_steal_clock(cpu_of(rq));
> diff --git a/kernel/sched/cputime.c b/kernel/sched/cputime.c
> index 06bddaa738e5..f16970ca81d0 100644
> --- a/kernel/sched/cputime.c
> +++ b/kernel/sched/cputime.c
> @@ -255,7 +255,7 @@ void __account_forceidle_time(struct task_struct *p, u64 delta)
> * occasion account more time than the calling functions think elapsed.
> */
> #ifdef CONFIG_PARAVIRT
> -struct static_key paravirt_steal_enabled;
> +DEFINE_STATIC_KEY_FALSE(paravirt_steal_enabled);
>
> #ifdef CONFIG_HAVE_PV_STEAL_CLOCK_GEN
> static u64 native_steal_clock(int cpu)
> @@ -270,7 +270,7 @@ DEFINE_STATIC_CALL(pv_steal_clock, native_steal_clock);
> static __always_inline u64 steal_account_process_time(u64 maxtime)
> {
> #ifdef CONFIG_PARAVIRT
> - if (static_key_false(¶virt_steal_enabled)) {
> + if (static_branch_unlikely(¶virt_steal_enabled)) {
> u64 steal;
>
> steal = paravirt_steal_clock(smp_processor_id());
prev parent reply other threads:[~2026-08-20 10:47 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-19 8:12 [PATCH RESEND] sched: Convert paravirt_steal to new static key APIs Hongyan Xia
2026-08-20 10:46 ` Shrikanth Hegde [this message]
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=99bdc3e0-0e0f-4cb1-8747-dd7667307492@linux.ibm.com \
--to=sshegde@linux.ibm.com \
--cc=ajay.kaher@broadcom.com \
--cc=alex@ghiti.fr \
--cc=alexey.makhalov@broadcom.com \
--cc=aou@eecs.berkeley.edu \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=bp@alien8.de \
--cc=bsegall@google.com \
--cc=catalin.marinas@arm.com \
--cc=chenhuacai@kernel.org \
--cc=chleroy@kernel.org \
--cc=dave.hansen@linux.intel.com \
--cc=dietmar.eggemann@arm.com \
--cc=hongyan.xia@transsion.com \
--cc=hpa@zytor.com \
--cc=jgross@suse.com \
--cc=jiazi.li@transsion.com \
--cc=juri.lelli@redhat.com \
--cc=kernel@xen0n.name \
--cc=kprateek.nayak@amd.com \
--cc=kvm@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=loongarch@lists.linux.dev \
--cc=maddy@linux.ibm.com \
--cc=mgorman@suse.de \
--cc=mingo@redhat.com \
--cc=mpe@ellerman.id.au \
--cc=npiggin@gmail.com \
--cc=oleksandr_tyshchenko@epam.com \
--cc=palmer@dabbelt.com \
--cc=pbonzini@redhat.com \
--cc=peterz@infradead.org \
--cc=pjw@kernel.org \
--cc=rostedt@goodmis.org \
--cc=sstabellini@kernel.org \
--cc=tglx@kernel.org \
--cc=vincent.guittot@linaro.org \
--cc=virtualization@lists.linux.dev \
--cc=vkuznets@redhat.com \
--cc=vschneid@redhat.com \
--cc=will@kernel.org \
--cc=x86@kernel.org \
--cc=xen-devel@lists.xenproject.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 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 NNTP newsgroup(s).