Re: [PATCH] arm: Fix arch_initialise_vcpu to be unsupported

2021-07-07 Thread Julien Grall
On 07/07/2021 13:53, Julien Grall wrote: Hi Michal, On 06/07/2021 11:28, Michal Orzel wrote: Function arch_initialise_vcpu is not reachable as the VCPUOP_initialise is an unsupported operation on arm. Modify the function by adding ASSERT_UNREACHABLE() and returning -EOPNOTSUPP. Suggested-by

Re: [PATCH] arm: Fix arch_initialise_vcpu to be unsupported

2021-07-07 Thread Julien Grall
Hi Michal, On 06/07/2021 11:28, Michal Orzel wrote: Function arch_initialise_vcpu is not reachable as the VCPUOP_initialise is an unsupported operation on arm. Modify the function by adding ASSERT_UNREACHABLE() and returning -EOPNOTSUPP. Suggested-by: Jan Beulich Signed-off-by: Michal Orzel

Re: [PATCH] arm: Fix arch_initialise_vcpu to be unsupported

2021-07-06 Thread Bertrand Marquis
Hi Michal, > On 6 Jul 2021, at 11:28, Michal Orzel wrote: > > Function arch_initialise_vcpu is not reachable as the > VCPUOP_initialise is an unsupported operation on arm. > Modify the function by adding ASSERT_UNREACHABLE() and > returning -EOPNOTSUPP. > > Suggested-by: Jan Beulich > Signed-o

[PATCH] arm: Fix arch_initialise_vcpu to be unsupported

2021-07-06 Thread Michal Orzel
Function arch_initialise_vcpu is not reachable as the VCPUOP_initialise is an unsupported operation on arm. Modify the function by adding ASSERT_UNREACHABLE() and returning -EOPNOTSUPP. Suggested-by: Jan Beulich Signed-off-by: Michal Orzel --- xen/arch/arm/domain.c | 3 ++- 1 file changed, 2 in