From 1882e0283715a58a89ab342c541f9b6d055d171a Mon Sep 17 00:00:00 2001 From: Isaku Yamahata Date: Thu, 14 Aug 2008 11:00:35 +0900 Subject: [PATCH] [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 --- xen/arch/ia64/vmx/vmx_hypercall.c | 4 ++++ 1 file changed, 4 insertions(+) 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; -- 2.30.2