[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH for-next 1/3] x86/pv: Move compat_set_gdt() to be beside do_set_gdt()
This also makes the do_update_descriptor() pair of functions adjacent. Purely code motion; no functional change. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- CC: Jan Beulich <JBeulich@xxxxxxxx> CC: Wei Liu <wei.liu2@xxxxxxxxxx> --- xen/arch/x86/pv/descriptor-tables.c | 69 +++++++++++++++++++------------------ 1 file changed, 36 insertions(+), 33 deletions(-) diff --git a/xen/arch/x86/pv/descriptor-tables.c b/xen/arch/x86/pv/descriptor-tables.c index 81973af..9c8de1d 100644 --- a/xen/arch/x86/pv/descriptor-tables.c +++ b/xen/arch/x86/pv/descriptor-tables.c @@ -126,6 +126,42 @@ long do_set_gdt(XEN_GUEST_HANDLE_PARAM(xen_ulong_t) frame_list, return ret; } +int compat_set_gdt(XEN_GUEST_HANDLE_PARAM(uint) frame_list, + unsigned int entries) +{ + struct vcpu *curr = current; + unsigned int i, nr_pages = (entries + 511) / 512; + unsigned long frames[16]; + int ret; + + /* Rechecked in set_gdt, but ensures a sane limit for copy_from_user(). */ + if ( entries > FIRST_RESERVED_GDT_ENTRY ) + return -EINVAL; + + if ( !guest_handle_okay(frame_list, nr_pages) ) + return -EFAULT; + + for ( i = 0; i < nr_pages; ++i ) + { + unsigned int frame; + + if ( __copy_from_guest(&frame, frame_list, 1) ) + return -EFAULT; + + frames[i] = frame; + guest_handle_add_offset(frame_list, 1); + } + + domain_lock(curr->domain); + + if ( (ret = pv_set_gdt(curr, frames, entries)) == 0 ) + flush_tlb_local(); + + domain_unlock(curr->domain); + + return ret; +} + long do_update_descriptor(uint64_t pa, uint64_t desc) { struct domain *currd = current->domain; @@ -181,39 +217,6 @@ long do_update_descriptor(uint64_t pa, uint64_t desc) return ret; } -int compat_set_gdt(XEN_GUEST_HANDLE_PARAM(uint) frame_list, unsigned int entries) -{ - unsigned int i, nr_pages = (entries + 511) / 512; - unsigned long frames[16]; - int ret; - - /* Rechecked in set_gdt, but ensures a sane limit for copy_from_user(). */ - if ( entries > FIRST_RESERVED_GDT_ENTRY ) - return -EINVAL; - - if ( !guest_handle_okay(frame_list, nr_pages) ) - return -EFAULT; - - for ( i = 0; i < nr_pages; ++i ) - { - unsigned int frame; - - if ( __copy_from_guest(&frame, frame_list, 1) ) - return -EFAULT; - frames[i] = frame; - guest_handle_add_offset(frame_list, 1); - } - - domain_lock(current->domain); - - if ( (ret = pv_set_gdt(current, frames, entries)) == 0 ) - flush_tlb_local(); - - domain_unlock(current->domain); - - return ret; -} - int compat_update_descriptor(uint32_t pa_lo, uint32_t pa_hi, uint32_t desc_lo, uint32_t desc_hi) { -- 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 |