On 2/10/26 5:34 PM, Andrew Cooper wrote:
This is absolutely too much copy&paste from ARM. All other stubs look
somewhat reasonable.
No functional change.
Signed-off-by: Andrew Cooper <[email protected]>
---
CC: Oleksii Kurochko <[email protected]>
CC: Timothy Pearson <[email protected]>
CC: Anthony PERARD <[email protected]>
CC: Michal Orzel <[email protected]>
CC: Jan Beulich <[email protected]>
CC: Julien Grall <[email protected]>
CC: Roger Pau Monné <[email protected]>
CC: Stefano Stabellini <[email protected]>
---
xen/arch/ppc/stubs.c | 5 -----
xen/arch/riscv/stubs.c | 5 -----
2 files changed, 10 deletions(-)
diff --git a/xen/arch/ppc/stubs.c b/xen/arch/ppc/stubs.c
index f7f6e7ed97af..a333f06119a0 100644
--- a/xen/arch/ppc/stubs.c
+++ b/xen/arch/ppc/stubs.c
@@ -162,11 +162,6 @@ void arch_vcpu_destroy(struct vcpu *v)
BUG_ON("unimplemented");
}
-void vcpu_switch_to_aarch64_mode(struct vcpu *v)
-{
- BUG_ON("unimplemented");
-}
-
int arch_sanitise_domain_config(struct xen_domctl_createdomain *config)
{
BUG_ON("unimplemented");
diff --git a/xen/arch/riscv/stubs.c b/xen/arch/riscv/stubs.c
index acbfde79b5a7..d071c8b86d07 100644
--- a/xen/arch/riscv/stubs.c
+++ b/xen/arch/riscv/stubs.c
@@ -126,11 +126,6 @@ void arch_vcpu_destroy(struct vcpu *v)
BUG_ON("unimplemented");
}
-void vcpu_switch_to_aarch64_mode(struct vcpu *v)
-{
- BUG_ON("unimplemented");
-}
-
These changes looks good to me:
Reviewed-by: Oleksii Kurochko <[email protected]>
Thanks for cleaning it up.
~ Oleksii