# HG changeset patch
# User kfraser@xxxxxxxxxxxxxxxxxxxxx
# Date 1168615629 0
# Node ID 38fcc76469599d5c7f9c46b56e20f1dbfcaecd84
# Parent c2fd75d7e2b7ab40e98936d10d5c31dbdc37af5b
[MINIOS] Update __XEN_INTERFACE_VERSION__
Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx>
---
extras/mini-os/Makefile | 2 +-
extras/mini-os/include/hypervisor.h | 1 -
extras/mini-os/include/x86/x86_32/hypercall-x86_32.h | 8 --------
extras/mini-os/include/x86/x86_64/hypercall-x86_64.h | 8 --------
4 files changed, 1 insertion(+), 18 deletions(-)
diff -r c2fd75d7e2b7 -r 38fcc7646959 extras/mini-os/Makefile
--- a/extras/mini-os/Makefile Fri Jan 12 15:23:07 2007 +0000
+++ b/extras/mini-os/Makefile Fri Jan 12 15:27:09 2007 +0000
@@ -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 -r c2fd75d7e2b7 -r 38fcc7646959 extras/mini-os/include/hypervisor.h
--- a/extras/mini-os/include/hypervisor.h Fri Jan 12 15:23:07 2007 +0000
+++ b/extras/mini-os/include/hypervisor.h Fri Jan 12 15:27:09 2007 +0000
@@ -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 -r c2fd75d7e2b7 -r 38fcc7646959
extras/mini-os/include/x86/x86_32/hypercall-x86_32.h
--- a/extras/mini-os/include/x86/x86_32/hypercall-x86_32.h Fri Jan 12
15:23:07 2007 +0000
+++ b/extras/mini-os/include/x86/x86_32/hypercall-x86_32.h Fri Jan 12
15:27:09 2007 +0000
@@ -179,14 +179,6 @@ HYPERVISOR_set_timer_op(
unsigned long timeout_hi = (unsigned long)(timeout>>32);
unsigned long timeout_lo = (unsigned long)timeout;
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
diff -r c2fd75d7e2b7 -r 38fcc7646959
extras/mini-os/include/x86/x86_64/hypercall-x86_64.h
--- a/extras/mini-os/include/x86/x86_64/hypercall-x86_64.h Fri Jan 12
15:23:07 2007 +0000
+++ b/extras/mini-os/include/x86/x86_64/hypercall-x86_64.h Fri Jan 12
15:27:09 2007 +0000
@@ -181,14 +181,6 @@ HYPERVISOR_set_timer_op(
u64 timeout)
{
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
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|