]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
xen: fix HYPERVISOR_dm_op() prototype
authorSergey Dyasli <sergey.dyasli@citrix.com>
Wed, 7 Jun 2017 07:20:12 +0000 (08:20 +0100)
committerJuergen Gross <jgross@suse.com>
Thu, 8 Jun 2017 17:40:14 +0000 (19:40 +0200)
Change the third parameter to be the required struct xen_dm_op_buf *
instead of a generic void * (which blindly accepts any pointer).

Signed-off-by: Sergey Dyasli <sergey.dyasli@citrix.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
Signed-off-by: Juergen Gross <jgross@suse.com>
arch/x86/include/asm/xen/hypercall.h
include/xen/arm/hypercall.h

index f6d20f6cca12cabc2d186e4bf282e2aef61a0eee..7a4db5fefd15fccf46004370715ebda0d492dc7c 100644 (file)
@@ -50,6 +50,8 @@
 #include <xen/interface/platform.h>
 #include <xen/interface/xen-mca.h>
 
+struct xen_dm_op_buf;
+
 /*
  * The hypercall asms have to meet several constraints:
  * - Work on 32- and 64-bit.
@@ -474,7 +476,7 @@ HYPERVISOR_xenpmu_op(unsigned int op, void *arg)
 
 static inline int
 HYPERVISOR_dm_op(
-       domid_t dom, unsigned int nr_bufs, void *bufs)
+       domid_t dom, unsigned int nr_bufs, struct xen_dm_op_buf *bufs)
 {
        return _hypercall3(int, dm_op, dom, nr_bufs, bufs);
 }
index 73db4b2eeb8929bddea8511442ed3dab8cc0e24d..b40485e54d80e18e509e2093b487350a41815160 100644 (file)
@@ -39,6 +39,8 @@
 #include <xen/interface/sched.h>
 #include <xen/interface/platform.h>
 
+struct xen_dm_op_buf;
+
 long privcmd_call(unsigned call, unsigned long a1,
                unsigned long a2, unsigned long a3,
                unsigned long a4, unsigned long a5);
@@ -53,7 +55,8 @@ int HYPERVISOR_physdev_op(int cmd, void *arg);
 int HYPERVISOR_vcpu_op(int cmd, int vcpuid, void *extra_args);
 int HYPERVISOR_tmem_op(void *arg);
 int HYPERVISOR_vm_assist(unsigned int cmd, unsigned int type);
-int HYPERVISOR_dm_op(domid_t domid, unsigned int nr_bufs, void *bufs);
+int HYPERVISOR_dm_op(domid_t domid, unsigned int nr_bufs,
+                    struct xen_dm_op_buf *bufs);
 int HYPERVISOR_platform_op_raw(void *arg);
 static inline int HYPERVISOR_platform_op(struct xen_platform_op *op)
 {