mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-07 03:26:39 +07:00
xen: add dom0_op hypercall
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
This commit is contained in:
parent
3e0996798a
commit
eec07a9ecf
@ -45,6 +45,7 @@
|
|||||||
#include <xen/interface/xen.h>
|
#include <xen/interface/xen.h>
|
||||||
#include <xen/interface/sched.h>
|
#include <xen/interface/sched.h>
|
||||||
#include <xen/interface/physdev.h>
|
#include <xen/interface/physdev.h>
|
||||||
|
#include <xen/interface/platform.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The hypercall asms have to meet several constraints:
|
* The hypercall asms have to meet several constraints:
|
||||||
@ -298,6 +299,13 @@ HYPERVISOR_set_timer_op(u64 timeout)
|
|||||||
return _hypercall2(long, set_timer_op, timeout_lo, timeout_hi);
|
return _hypercall2(long, set_timer_op, timeout_lo, timeout_hi);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline int
|
||||||
|
HYPERVISOR_dom0_op(struct xen_platform_op *platform_op)
|
||||||
|
{
|
||||||
|
platform_op->interface_version = XENPF_INTERFACE_VERSION;
|
||||||
|
return _hypercall1(int, dom0_op, platform_op);
|
||||||
|
}
|
||||||
|
|
||||||
static inline int
|
static inline int
|
||||||
HYPERVISOR_set_debugreg(int reg, unsigned long value)
|
HYPERVISOR_set_debugreg(int reg, unsigned long value)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user