With the "inversion" of VCPUOP handling, processing arch-specific ones
first, the forwarding of this sub-op from the (common) compat handler to
(common) non-compat one did no longer have the intended effect. It now
needs forwarding between the arch-specific handlers.
Fixes: 8a96c0ea7999 ("xen: move do_vcpu_op() to arch specific code")
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Roger Pau Monné <roger.pau@citrix.com>
Release-acked-by: Henry Wang <Henry.Wang@arm.com>
break;
}
+ case VCPUOP_send_nmi:
case VCPUOP_get_physid:
rc = do_vcpu_op(cmd, vcpuid, arg);
break;
case VCPUOP_stop_periodic_timer:
case VCPUOP_stop_singleshot_timer:
case VCPUOP_register_vcpu_info:
- case VCPUOP_send_nmi:
rc = common_vcpu_op(cmd, v, arg);
break;