From: Juergen Gross Date: Wed, 24 Nov 2021 10:02:24 +0000 (+0100) Subject: x86: modify hvm_memory_op() prototype X-Git-Tag: archive/raspbian/4.17.0-1+rpi1^2~33^2~1332 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=5168b6ee9139dbebe5771482664b329c8644e2df;p=xen.git x86: modify hvm_memory_op() prototype hvm_memory_op() should take an unsigned long as cmd, like do_memory_op(). As hvm_memory_op() is basically just calling do_memory_op() (or compat_memory_op()) passing through the parameters the cmd parameter should have no smaller size than that of the called functions. Signed-off-by: Juergen Gross Reviewed-by: Jan Beulich --- diff --git a/xen/arch/x86/hvm/hypercall.c b/xen/arch/x86/hvm/hypercall.c index 122abf80de..63bed52e40 100644 --- a/xen/arch/x86/hvm/hypercall.c +++ b/xen/arch/x86/hvm/hypercall.c @@ -31,7 +31,7 @@ #include #include -static long hvm_memory_op(int cmd, XEN_GUEST_HANDLE_PARAM(void) arg) +static long hvm_memory_op(unsigned long cmd, XEN_GUEST_HANDLE_PARAM(void) arg) { long rc;