]> xenbits.xensource.com Git - xen.git/commitdiff
libxl/Arm: correct xc_shadow_control() invocation to fix build
authorJan Beulich <jbeulich@suse.com>
Wed, 12 Oct 2022 15:36:48 +0000 (17:36 +0200)
committerJan Beulich <jbeulich@suse.com>
Wed, 12 Oct 2022 15:36:48 +0000 (17:36 +0200)
The backport didn't adapt to the earlier function prototype taking more
(unused here) arguments.

Fixes: c5215044578e ("xen/arm, libxl: Implement XEN_DOMCTL_shadow_op for Arm")
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Henry Wang <Henry.Wang@arm.com>
Acked-by: Anthony PERARD <anthony.perard@citrix.com>
tools/libxl/libxl_arm.c

index 025df1bfd00432fbeb5ada9ad0626e780ff47121..79cfb9cd29b77ccdefaf3e36cfdd6164e82bdd3d 100644 (file)
@@ -131,14 +131,14 @@ int libxl__arch_domain_create(libxl__gc *gc, libxl_domain_config *d_config,
                               uint32_t domid)
 {
     libxl_ctx *ctx = libxl__gc_owner(gc);
-    unsigned int shadow_mb = DIV_ROUNDUP(d_config->b_info.shadow_memkb, 1024);
+    unsigned long shadow_mb = DIV_ROUNDUP(d_config->b_info.shadow_memkb, 1024);
 
     int r = xc_shadow_control(ctx->xch, domid,
                               XEN_DOMCTL_SHADOW_OP_SET_ALLOCATION,
-                              &shadow_mb, 0);
+                              NULL, 0, &shadow_mb, 0, NULL);
     if (r) {
         LOGED(ERROR, domid,
-              "Failed to set %u MiB shadow allocation", shadow_mb);
+              "Failed to set %lu MiB shadow allocation", shadow_mb);
         return ERROR_FAIL;
     }