aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIsaku Yamahata <yamahata@valinux.co.jp>2008-08-14 11:00:35 +0900
committerIsaku Yamahata <yamahata@valinux.co.jp>2008-08-14 11:00:35 +0900
commit1882e0283715a58a89ab342c541f9b6d055d171a (patch)
tree5a86c1e3f8ba7d31fcc403b52874e7c592fd2a46
parentbaf225c88b175353237737af8170d21000c44a44 (diff)
downloadxen-1882e0283715a58a89ab342c541f9b6d055d171a.tar.gz
xen-1882e0283715a58a89ab342c541f9b6d055d171a.tar.bz2
xen-1882e0283715a58a89ab342c541f9b6d055d171a.zip
[ia64] remove the runtime warning when hvmop_set_mem_type is used.
remove the runtime warning when HVMOP_set_mem_type is used. But the hypercall just returns -ENOSYS. It isn't implemented yet. Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
-rw-r--r--xen/arch/ia64/vmx/vmx_hypercall.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/xen/arch/ia64/vmx/vmx_hypercall.c b/xen/arch/ia64/vmx/vmx_hypercall.c
index 1f4799956f..d5ae9e731d 100644
--- a/xen/arch/ia64/vmx/vmx_hypercall.c
+++ b/xen/arch/ia64/vmx/vmx_hypercall.c
@@ -251,6 +251,10 @@ do_hvm_op(unsigned long op, XEN_GUEST_HANDLE(void) arg)
break;
}
+ case HVMOP_set_mem_type:
+ rc = -ENOSYS;
+ break;
+
default:
gdprintk(XENLOG_INFO, "Bad HVM op %ld.\n", op);
rc = -ENOSYS;