|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v2 3/6] x86/domctl: Simplfy XEN_DOMCTL_getvcpuextstate when xsave is not in use
Older guests will not use xsave even if it is available. As such, their
xcr0_accum will be 0 at the point of migrate.
If it is empty, forgo the memory allocation and serialisation into a
zero-length buffer.
Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
Reviewed-by: Jan Beulich <jbeulich@xxxxxxxx>
---
xen/arch/x86/domctl.c | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/xen/arch/x86/domctl.c b/xen/arch/x86/domctl.c
index 815bd33..5aa9f3a 100644
--- a/xen/arch/x86/domctl.c
+++ b/xen/arch/x86/domctl.c
@@ -1087,11 +1087,13 @@ long arch_do_domctl(
ret = -EFAULT;
offset += sizeof(v->arch.xcr0_accum);
- if ( !ret )
+
+ /* Serialise xsave state, if there is any. */
+ if ( !ret && size > PV_XSAVE_HDR_SIZE )
{
- void *xsave_area;
+ unsigned int xsave_size = size - PV_XSAVE_HDR_SIZE;
+ void *xsave_area = xmalloc_bytes(xsave_size);
- xsave_area = xmalloc_bytes(size);
if ( !xsave_area )
{
ret = -ENOMEM;
@@ -1099,11 +1101,10 @@ long arch_do_domctl(
goto vcpuextstate_out;
}
- expand_xsave_states(v, xsave_area,
- size - PV_XSAVE_HDR_SIZE);
+ expand_xsave_states(v, xsave_area, xsave_size);
if ( copy_to_guest_offset(evc->buffer, offset, xsave_area,
- size - PV_XSAVE_HDR_SIZE) )
+ xsave_size) )
ret = -EFAULT;
xfree(xsave_area);
}
--
2.1.4
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
https://lists.xen.org/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |