mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
i386/xen: implement HYPERVISOR_hvm_op
This is when guest queries for support for HVMOP_pagetable_dying. Signed-off-by: Joao Martins <joao.m.martins@oracle.com> Signed-off-by: David Woodhouse <dwmw@amazon.co.uk> Reviewed-by: Paul Durrant <paul@xen.org>
This commit is contained in:
parent
782a79601e
commit
671bfdcd47
1 changed files with 17 additions and 0 deletions
|
@ -26,6 +26,7 @@
|
||||||
#include "hw/xen/interface/version.h"
|
#include "hw/xen/interface/version.h"
|
||||||
#include "hw/xen/interface/sched.h"
|
#include "hw/xen/interface/sched.h"
|
||||||
#include "hw/xen/interface/memory.h"
|
#include "hw/xen/interface/memory.h"
|
||||||
|
#include "hw/xen/interface/hvm/hvm_op.h"
|
||||||
|
|
||||||
#include "xen-compat.h"
|
#include "xen-compat.h"
|
||||||
|
|
||||||
|
@ -349,6 +350,19 @@ static bool kvm_xen_hcall_memory_op(struct kvm_xen_exit *exit, X86CPU *cpu,
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool kvm_xen_hcall_hvm_op(struct kvm_xen_exit *exit, X86CPU *cpu,
|
||||||
|
int cmd, uint64_t arg)
|
||||||
|
{
|
||||||
|
switch (cmd) {
|
||||||
|
case HVMOP_pagetable_dying:
|
||||||
|
exit->u.hcall.result = -ENOSYS;
|
||||||
|
return true;
|
||||||
|
|
||||||
|
default:
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int kvm_xen_soft_reset(void)
|
int kvm_xen_soft_reset(void)
|
||||||
{
|
{
|
||||||
int err;
|
int err;
|
||||||
|
@ -450,6 +464,9 @@ static bool do_kvm_xen_handle_exit(X86CPU *cpu, struct kvm_xen_exit *exit)
|
||||||
case __HYPERVISOR_sched_op:
|
case __HYPERVISOR_sched_op:
|
||||||
return kvm_xen_hcall_sched_op(exit, cpu, exit->u.hcall.params[0],
|
return kvm_xen_hcall_sched_op(exit, cpu, exit->u.hcall.params[0],
|
||||||
exit->u.hcall.params[1]);
|
exit->u.hcall.params[1]);
|
||||||
|
case __HYPERVISOR_hvm_op:
|
||||||
|
return kvm_xen_hcall_hvm_op(exit, cpu, exit->u.hcall.params[0],
|
||||||
|
exit->u.hcall.params[1]);
|
||||||
case __HYPERVISOR_memory_op:
|
case __HYPERVISOR_memory_op:
|
||||||
return kvm_xen_hcall_memory_op(exit, cpu, exit->u.hcall.params[0],
|
return kvm_xen_hcall_memory_op(exit, cpu, exit->u.hcall.params[0],
|
||||||
exit->u.hcall.params[1]);
|
exit->u.hcall.params[1]);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue