From: kfraser@localhost.localdomain Date: Fri, 12 Jan 2007 15:27:09 +0000 (+0000) Subject: [MINIOS] Update __XEN_INTERFACE_VERSION__ X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15405^2~14 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b58029254d67c13238d2bbdf94262d020cf32d4d;p=xen.git [MINIOS] Update __XEN_INTERFACE_VERSION__ Signed-off-by: Keir Fraser --- diff --git a/extras/mini-os/Makefile b/extras/mini-os/Makefile index 01176a625f..f042d1a18f 100644 --- a/extras/mini-os/Makefile +++ b/extras/mini-os/Makefile @@ -7,7 +7,7 @@ include $(XEN_ROOT)/Config.mk # Set TARGET_ARCH override TARGET_ARCH := $(XEN_TARGET_ARCH) -XEN_INTERFACE_VERSION := 0x00030203 +XEN_INTERFACE_VERSION := 0x00030204 # NB. '-Wcast-qual' is nasty, so I omitted it. CFLAGS := -fno-builtin -Wall -Werror -Wredundant-decls -Wno-format diff --git a/extras/mini-os/include/hypervisor.h b/extras/mini-os/include/hypervisor.h index e3f149e35f..1b7ea72ac3 100644 --- a/extras/mini-os/include/hypervisor.h +++ b/extras/mini-os/include/hypervisor.h @@ -15,7 +15,6 @@ #include #include -#include #if defined(__i386__) #include #elif defined(__x86_64__) diff --git a/extras/mini-os/include/x86/x86_32/hypercall-x86_32.h b/extras/mini-os/include/x86/x86_32/hypercall-x86_32.h index 5f8b51f872..9c41c946b2 100644 --- a/extras/mini-os/include/x86/x86_32/hypercall-x86_32.h +++ b/extras/mini-os/include/x86/x86_32/hypercall-x86_32.h @@ -181,14 +181,6 @@ HYPERVISOR_set_timer_op( return _hypercall2(long, set_timer_op, timeout_lo, timeout_hi); } -static inline int -HYPERVISOR_dom0_op( - dom0_op_t *dom0_op) -{ - dom0_op->interface_version = DOM0_INTERFACE_VERSION; - return _hypercall1(int, dom0_op, dom0_op); -} - static inline int HYPERVISOR_set_debugreg( int reg, unsigned long value) diff --git a/extras/mini-os/include/x86/x86_64/hypercall-x86_64.h b/extras/mini-os/include/x86/x86_64/hypercall-x86_64.h index 2d2904a218..3a4aa049e8 100644 --- a/extras/mini-os/include/x86/x86_64/hypercall-x86_64.h +++ b/extras/mini-os/include/x86/x86_64/hypercall-x86_64.h @@ -183,14 +183,6 @@ HYPERVISOR_set_timer_op( return _hypercall1(long, set_timer_op, timeout); } -static inline int -HYPERVISOR_dom0_op( - dom0_op_t *dom0_op) -{ - dom0_op->interface_version = DOM0_INTERFACE_VERSION; - return _hypercall1(int, dom0_op, dom0_op); -} - static inline int HYPERVISOR_set_debugreg( int reg, unsigned long value)