copy_to_guest() returns the number of bytes not copied; that's not what
the function should return to its caller though. Convert to returning
-EFAULT instead.
Fixes: 86039f2e8c20 ("xen/arm: vpl011: Add a new domctl API to initialize
vpl011")
Signed-off-by: Jan Beulich <[email protected]>
--- a/xen/arch/arm/domctl.c
+++ b/xen/arch/arm/domctl.c
@@ -172,8 +172,8 @@ long arch_do_domctl(struct xen_domctl *d
break;
}
- if ( !rc )
- rc = copy_to_guest(u_domctl, domctl, 1);
+ if ( !rc && copy_to_guest(u_domctl, domctl, 1) )
+ rc = -EFAULT;
return rc;
}