[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v2 1/2] xen: x86: copy back tsc info, not pointer to tsc info in domctl
>>> On 26.05.15 at 13:14, <ian.campbell@xxxxxxxxxx> wrote: > --- a/xen/arch/x86/domctl.c > +++ b/xen/arch/x86/domctl.c > @@ -856,13 +856,16 @@ long arch_do_domctl( > ret = -EINVAL; > else > { > + xen_guest_tsc_info_t info = { 0 }; > + > domain_pause(d); > - tsc_get_info(d, &domctl->u.tsc_info.info.tsc_mode, > - &domctl->u.tsc_info.info.elapsed_nsec, > - &domctl->u.tsc_info.info.gtsc_khz, > - &domctl->u.tsc_info.info.incarnation); > + tsc_get_info(d, &info.tsc_mode, > + &info.elapsed_nsec, > + &info.gtsc_khz, > + &info.incarnation); > domain_unpause(d); > - copyback = 1; > + if ( copy_to_guest(domctl->u.tsc_info.out_info, &info, 1) ) > + ret = -EFAULT; > } > break; > I have to admit that I don't see the point of this change when patch 2 basically undoes it all. Jan _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |