From mboxrd@z Thu Jan 1 00:00:00 1970 From: cdall@cs.columbia.edu (Christoffer Dall) Date: Wed, 3 Apr 2013 16:47:12 -0700 Subject: [PATCH] arm: kvm: arch_timer: use symbolic constants In-Reply-To: <1364399771-21456-1-git-send-email-mark.rutland@arm.com> References: <1364399771-21456-1-git-send-email-mark.rutland@arm.com> Message-ID: <20130403234712.GA1038@gmail.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Wed, Mar 27, 2013 at 03:56:11PM +0000, Mark Rutland wrote: > In clocksource/arm_arch_timer.h we define useful symbolic constants. > Let's use them to make the KVM arch_timer code clearer. > > Signed-off-by: Mark Rutland > Acked-by: Marc Zyngier > Cc: Christoffer Dall > --- > arch/arm/kvm/arch_timer.c | 7 ++++--- > 1 file changed, 4 insertions(+), 3 deletions(-) > > diff --git a/arch/arm/kvm/arch_timer.c b/arch/arm/kvm/arch_timer.c > index 6ac938d..c55b608 100644 > --- a/arch/arm/kvm/arch_timer.c > +++ b/arch/arm/kvm/arch_timer.c > @@ -22,6 +22,7 @@ > #include > #include > > +#include > #include > > #include > @@ -64,7 +65,7 @@ static void kvm_timer_inject_irq(struct kvm_vcpu *vcpu) > { > struct arch_timer_cpu *timer = &vcpu->arch.timer_cpu; > > - timer->cntv_ctl |= 1 << 1; /* Mask the interrupt in the guest */ > + timer->cntv_ctl |= ARCH_TIMER_CTRL_IT_MASK; > kvm_vgic_inject_irq(vcpu->kvm, vcpu->vcpu_id, > vcpu->arch.timer_cpu.irq->irq, > vcpu->arch.timer_cpu.irq->level); > @@ -133,8 +134,8 @@ void kvm_timer_sync_hwstate(struct kvm_vcpu *vcpu) > cycle_t cval, now; > u64 ns; > > - /* Check if the timer is enabled and unmasked first */ > - if ((timer->cntv_ctl & 3) != 1) > + if ((timer->cntv_ctl & ARCH_TIMER_CTRL_IT_MASK) || > + !(timer->cntv_ctl & ARCH_TIMER_CTRL_ENABLE)) > return; > > cval = timer->cntv_cval; > -- > 1.8.1.1 > > Looks good, I've merged it into kvm-arm-next. -Christoffer