From: Tim Deegan Date: Thu, 15 Aug 2013 11:17:10 +0000 (+0200) Subject: x86/time: fix check for negative time in __update_vcpu_system_time() X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~6531 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ab7f9a793c78dfea81c037b34b0dd2db7070d8f8;p=xen.git x86/time: fix check for negative time in __update_vcpu_system_time() Clang points out that u64 stime variable is always >= 0. Signed-off-by: Tim Deegan --- diff --git a/xen/arch/x86/time.c b/xen/arch/x86/time.c index f047cb3074..c31029cb27 100644 --- a/xen/arch/x86/time.c +++ b/xen/arch/x86/time.c @@ -817,7 +817,8 @@ static void __update_vcpu_system_time(struct vcpu *v, int force) if ( d->arch.vtsc ) { - u64 stime = t->stime_local_stamp; + s_time_t stime = t->stime_local_stamp; + if ( is_hvm_domain(d) ) { struct pl_time *pl = &v->domain->arch.hvm_domain.pl_time;