aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-01-12 15:27:09 +0000
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-01-12 15:27:09 +0000
commitb58029254d67c13238d2bbdf94262d020cf32d4d (patch)
tree5e4f3d5740b5ddd7c308f4200ed3dc5d09b98001
parent8c338f84ea1597806ead6fa70dbacca9c726cb3f (diff)
downloadxen-b58029254d67c13238d2bbdf94262d020cf32d4d.tar.gz
xen-b58029254d67c13238d2bbdf94262d020cf32d4d.tar.bz2
xen-b58029254d67c13238d2bbdf94262d020cf32d4d.zip
[MINIOS] Update __XEN_INTERFACE_VERSION__
Signed-off-by: Keir Fraser <keir@xensource.com>
-rw-r--r--extras/mini-os/Makefile2
-rw-r--r--extras/mini-os/include/hypervisor.h1
-rw-r--r--extras/mini-os/include/x86/x86_32/hypercall-x86_32.h8
-rw-r--r--extras/mini-os/include/x86/x86_64/hypercall-x86_64.h8
4 files changed, 1 insertions, 18 deletions
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 <types.h>
#include <xen/xen.h>
-#include <xen/dom0_ops.h>
#if defined(__i386__)
#include <hypercall-x86_32.h>
#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
@@ -182,14 +182,6 @@ HYPERVISOR_set_timer_op(
}
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
@@ -184,14 +184,6 @@ HYPERVISOR_set_timer_op(
}
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)
{