From: "Roger Pau Monné" <roger.pau@citrix.com>
To: Jan Beulich <jbeulich@suse.com>
Cc: "xen-devel@lists.xenproject.org" <xen-devel@lists.xenproject.org>,
Andrew Cooper <andrew.cooper3@citrix.com>,
Julien Grall <julien@xen.org>,
Stefano Stabellini <sstabellini@kernel.org>,
Anthony PERARD <anthony.perard@vates.tech>,
Michal Orzel <michal.orzel@amd.com>,
Oleksii Kurochko <oleksii.kurochko@gmail.com>,
Dario Faggioli <dfaggioli@suse.com>,
Juergen Gross <jgross@suse.com>,
George Dunlap <gwd@xenproject.org>
Subject: Re: [PATCH for-4.22? 1/9] sched: introduce specialization of "running only" vcpu_runstate_get()
Date: Tue, 16 Jun 2026 10:41:00 +0200 [thread overview]
Message-ID: <ajEMHBY6su6tPtZG@macbook.local> (raw)
In-Reply-To: <67d1e638-a2ab-4d03-b9be-915a8c42e095@suse.com>
On Mon, Jun 15, 2026 at 04:12:11PM +0200, Jan Beulich wrote:
> About half the callers of vcpu_runstate_get() are solely after the
> "running" time of a vCPU. Introduce a specialization with a smaller
> read critical section and thus reduced risk of a need for retries.
>
> Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Roger Pau Monné <roger.pau@citrix.com>
> ---
> The function name was chosen such that grep-ing for "vcpu_runstate_get"
> would still turn up all uses. If that was deemed largely irrelevant, a
> better name might be e.g. vcpu_get_running_time().
FWIW, I think the fact that you can find call sites by using
vcpu_runstate_get is likely to become irrelevant in the long run.
>
> --- a/xen/common/domctl.c
> +++ b/xen/common/domctl.c
> @@ -56,7 +56,6 @@ void getdomaininfo(struct domain *d, str
> struct vcpu *v;
> u64 cpu_time = 0;
> int flags = XEN_DOMINF_blocked;
> - struct vcpu_runstate_info runstate;
>
> memset(info, 0, sizeof(*info));
>
> @@ -69,8 +68,7 @@ void getdomaininfo(struct domain *d, str
> */
> for_each_vcpu ( d, v )
> {
> - vcpu_runstate_get(v, &runstate);
> - cpu_time += runstate.time[RUNSTATE_running];
> + cpu_time += vcpu_runstate_get_running(v);
> info->max_vcpu_id = v->vcpu_id;
> if ( !(v->pause_flags & VPF_down) )
> {
> @@ -829,8 +827,7 @@ long do_domctl(XEN_GUEST_HANDLE_PARAM(xe
>
> case XEN_DOMCTL_getvcpuinfo:
> {
> - struct vcpu *v;
> - struct vcpu_runstate_info runstate;
> + const struct vcpu *v;
>
> ret = -EINVAL;
> if ( op->u.getvcpuinfo.vcpu >= d->max_vcpus )
> @@ -840,12 +837,10 @@ long do_domctl(XEN_GUEST_HANDLE_PARAM(xe
> if ( (v = d->vcpu[op->u.getvcpuinfo.vcpu]) == NULL )
> break;
>
> - vcpu_runstate_get(v, &runstate);
> -
> op->u.getvcpuinfo.online = !(v->pause_flags & VPF_down);
> op->u.getvcpuinfo.blocked = !!(v->pause_flags & VPF_blocked);
> op->u.getvcpuinfo.running = v->is_running;
> - op->u.getvcpuinfo.cpu_time = runstate.time[RUNSTATE_running];
> + op->u.getvcpuinfo.cpu_time = vcpu_runstate_get_running(v);
> op->u.getvcpuinfo.cpu = v->processor;
> ret = 0;
> copyback = 1;
> --- a/xen/common/sched/core.c
> +++ b/xen/common/sched/core.c
> @@ -325,15 +325,35 @@ void vcpu_runstate_get(const struct vcpu
> }
> }
>
> -uint64_t get_cpu_idle_time(unsigned int cpu)
> +uint64_t vcpu_runstate_get_running(const struct vcpu *v)
> {
> - struct vcpu_runstate_info state = { 0 };
> - const struct vcpu *v = idle_vcpu[cpu];
> + struct seqcount seq = SEQCNT_ZERO();
> + const struct seqcount *s = v == current ? &seq : &v->runstate_seq;
Does it make a difference to use a local fake sequence counter or the
real one if the vCPU is the one currently running in this pCPU? If
it's the running vCPU then it won't get the counters updated, and
hence using the real or a fake counter won't matter, as it will never
be updated while carrying out the read. IOW: the usage of a local
sequence counter for that specific case just adds more logic without a
real benefit?
Thanks, Roger.
next prev parent reply other threads:[~2026-06-16 8:41 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-15 14:11 [PATCH for-4.22? 0/9] domctl: XSA-492 and -491 follow-on Jan Beulich
2026-06-15 14:12 ` [PATCH for-4.22? 1/9] sched: introduce specialization of "running only" vcpu_runstate_get() Jan Beulich
2026-06-16 8:41 ` Roger Pau Monné [this message]
2026-06-16 8:48 ` Jan Beulich
2026-06-16 9:21 ` Jürgen Groß
2026-06-15 14:12 ` [PATCH for-4.22? 2/9] domctl: move XEN_DOMCTL_irq_permission handling to x86 code Jan Beulich
2026-06-16 7:22 ` Oleksii Kurochko
2026-06-15 14:13 ` [PATCH for-4.22? 3/9] domctl: rename a label Jan Beulich
2026-06-16 7:23 ` Oleksii Kurochko
2026-06-16 8:43 ` Roger Pau Monné
2026-06-15 14:13 ` [PATCH for-4.22? 4/9] domctl: error code adjustment for unpriv callers Jan Beulich
2026-06-16 7:27 ` Oleksii Kurochko
2026-06-15 14:13 ` [PATCH for-4.22? 5/9] domctl/XSM: avoid XSM_OTHER with xsm_domctl() Jan Beulich
2026-06-15 20:57 ` Daniel P. Smith
2026-06-15 14:15 ` [PATCH for-4.22? 6/9] domctl: handle XEN_DOMCTL_getvcpuinfo without acquiring domctl lock Jan Beulich
2026-06-16 8:56 ` Roger Pau Monné
2026-06-16 9:08 ` Jan Beulich
2026-06-15 14:15 ` [PATCH for-4.22? 7/9] domctl: restrict permission check for XEN_DOMCTL_memory_mapping's remove form Jan Beulich
2026-06-16 9:08 ` Roger Pau Monné
2026-06-16 9:51 ` Jan Beulich
2026-06-16 10:06 ` Roger Pau Monné
2026-06-15 14:16 ` [PATCH for-4.22? 8/9] x86/domctl: don't imply I/O port permissions from I/O port mapping Jan Beulich
2026-06-16 9:21 ` Roger Pau Monné
2026-06-16 9:36 ` Jan Beulich
2026-06-16 10:09 ` Roger Pau Monné
2026-06-15 14:16 ` [PATCH for-4.22? 9/9] x86/HVM: more checking for XEN_DOMCTL_ioport_mapping Jan Beulich
2026-06-16 10:01 ` Roger Pau Monné
2026-06-16 10:07 ` Jan Beulich
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=ajEMHBY6su6tPtZG@macbook.local \
--to=roger.pau@citrix.com \
--cc=andrew.cooper3@citrix.com \
--cc=anthony.perard@vates.tech \
--cc=dfaggioli@suse.com \
--cc=gwd@xenproject.org \
--cc=jbeulich@suse.com \
--cc=jgross@suse.com \
--cc=julien@xen.org \
--cc=michal.orzel@amd.com \
--cc=oleksii.kurochko@gmail.com \
--cc=sstabellini@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 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.