All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xen/domain: enable VCPUOP_register_runstate_phys_area hypercall
@ 2025-12-12 21:01 torsten.oehlenschlager
  2025-12-15 16:55 ` Jan Beulich
  0 siblings, 1 reply; 2+ messages in thread
From: torsten.oehlenschlager @ 2025-12-12 21:01 UTC (permalink / raw)
  To: Xen Devel; +Cc: Andrew Cooper3, Sstabellini, Jbeulich, Julien

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

ice@blossom ..............................................................................................................................................................................…/xen 🌸 enable-runstate-phys-area ?
❯ cat 0001-xen-domain-enable-VCPUOP_register_runstate_phys_area.patch
From 416992b30258d34b7cc7bc4f7875719f47618147 Mon Sep 17 00:00:00 2001
From: melanie <torsten.oehlenschlager@tutanota.de>
Date: Fri, 12 Dec 2025 20:55:50 +0000
Subject: [PATCH] xen/domain: enable VCPUOP_register_runstate_phys_area
hypercall

The XENFEAT_runstate_phys_area feature is unconditionally advertised to
guests via XENVER_get_features ( see xen/common/kernel.c ),  but the
corresponding VCPUOP_register_runstate_phys_area hypercall was disabled
with a placeholder check that always returned -ENOSYS!

Remove the dead code to enable the hypercall,  making the implementation
consistent with the advertised feature.

Signed-off-by: melanie <torsten.oehlenschlager@tutanota.de>
---
xen/common/domain.c | 4 ----
1 file changed, 4 deletions(-)

diff --git a/xen/common/domain.c b/xen/common/domain.c
index 93c71bc766..3ae8d41cf2 100644
--- a/xen/common/domain.c
+++ b/xen/common/domain.c
@@ -2284,10 +2284,6 @@ long common_vcpu_op(int cmd, struct vcpu *v, XEN_GUEST_HANDLE_PARAM(void) arg)
     {
         struct vcpu_register_runstate_memory_area area;

-        rc = -ENOSYS;
-        if ( 0 /* TODO: Dom's XENFEAT_runstate_phys_area setting */ )
-            break;
-
         rc = -EFAULT;
         if ( copy_from_guest(&area.addr.p, arg, 1) )
             break;
--

-- 

[-- Attachment #2: Type: text/html, Size: 3234 bytes --]

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] xen/domain: enable VCPUOP_register_runstate_phys_area hypercall
  2025-12-12 21:01 [PATCH] xen/domain: enable VCPUOP_register_runstate_phys_area hypercall torsten.oehlenschlager
@ 2025-12-15 16:55 ` Jan Beulich
  0 siblings, 0 replies; 2+ messages in thread
From: Jan Beulich @ 2025-12-15 16:55 UTC (permalink / raw)
  To: torsten.oehlenschlager; +Cc: Andrew Cooper3, Sstabellini, Julien, Xen Devel

On 12.12.2025 22:01, torsten.oehlenschlager@tutanota.de wrote:
> ice@blossom ..............................................................................................................................................................................…/xen 🌸 enable-runstate-phys-area ?
> ❯ cat 0001-xen-domain-enable-VCPUOP_register_runstate_phys_area.patch

I don't quite understand what this is.

> From 416992b30258d34b7cc7bc4f7875719f47618147 Mon Sep 17 00:00:00 2001
> From: melanie <torsten.oehlenschlager@tutanota.de>
> Date: Fri, 12 Dec 2025 20:55:50 +0000
> Subject: [PATCH] xen/domain: enable VCPUOP_register_runstate_phys_area
> hypercall
> 
> The XENFEAT_runstate_phys_area feature is unconditionally advertised to
> guests via XENVER_get_features ( see xen/common/kernel.c ),  but the
> corresponding VCPUOP_register_runstate_phys_area hypercall was disabled
> with a placeholder check that always returned -ENOSYS!

Well, no. The check you remove ...

> --- a/xen/common/domain.c
> +++ b/xen/common/domain.c
> @@ -2284,10 +2284,6 @@ long common_vcpu_op(int cmd, struct vcpu *v, XEN_GUEST_HANDLE_PARAM(void) arg)
>      {
>          struct vcpu_register_runstate_memory_area area;
> 
> -        rc = -ENOSYS;
> -        if ( 0 /* TODO: Dom's XENFEAT_runstate_phys_area setting */ )
> -            break;

... is dead code, yes, but it certainly didn't cause the function to
return -ENOSYS. See commit 48a3fd14327f ("domain: expose newly introduced
hypercalls as XENFEAT"), which in a change like this the description surely
should have referenced.

Jan


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-12-15 16:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-12 21:01 [PATCH] xen/domain: enable VCPUOP_register_runstate_phys_area hypercall torsten.oehlenschlager
2025-12-15 16:55 ` Jan Beulich

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.