From: Isaku Yamahata Date: Thu, 14 Aug 2008 02:00:35 +0000 (+0900) Subject: [ia64] remove the runtime warning when hvmop_set_mem_type is used. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14156 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=1882e0283715a58a89ab342c541f9b6d055d171a;p=xen.git [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 --- 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;