[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86/domctl: Simplfy XEN_DOMCTL_getvcpuextstate when xsave is not in use
commit 6accc5f1af1b51ea4fefcddce72db4e795f580c3 Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> AuthorDate: Mon Sep 12 10:30:00 2016 +0100 Commit: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> CommitDate: Tue Sep 13 10:44:01 2016 +0100 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); } -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |