[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] [XEN] Use vcpu_info pointer in vcpu structure.
# HG changeset patch # User kaf24@xxxxxxxxxxxxxxxxxxxx # Node ID 9b2c574a9afc1b51b25716138d5a3b3b292a3935 # Parent 63e3321fb16abddceb362956736ff0a0df16cf18 [XEN] Use vcpu_info pointer in vcpu structure. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxxxx> --- xen/arch/x86/time.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -r 63e3321fb16a -r 9b2c574a9afc xen/arch/x86/time.c --- a/xen/arch/x86/time.c Thu Aug 31 22:29:23 2006 +0100 +++ b/xen/arch/x86/time.c Thu Aug 31 22:53:46 2006 +0100 @@ -676,7 +676,7 @@ static inline void __update_vcpu_system_ struct vcpu_time_info *u; t = &this_cpu(cpu_time); - u = &v->domain->shared_info->vcpu_info[v->vcpu_id].time; + u = &v->vcpu_info->time; version_update_begin(&u->version); @@ -690,7 +690,7 @@ static inline void __update_vcpu_system_ void update_vcpu_system_time(struct vcpu *v) { - if ( v->domain->shared_info->vcpu_info[v->vcpu_id].time.tsc_timestamp != + if ( v->vcpu_info->time.tsc_timestamp != this_cpu(cpu_time).local_tsc_stamp ) __update_vcpu_system_time(v); } _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |