Re: [PATCH v7 5/7] KVM: Set TMR when programming ioapic entry

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Mon, Apr 01, 2013 at 11:32:33AM +0800, Yang Zhang wrote:
> From: Yang Zhang <yang.z.zhang@xxxxxxxxx>
> 
> We already know the trigger mode of a given interrupt when programming
> the ioapice entry. So it's not necessary to set it in each interrupt
> delivery.
> 
> Signed-off-by: Yang Zhang <yang.z.zhang@xxxxxxxxx>
> ---
>  arch/x86/kvm/lapic.c |   15 +++++++++------
>  arch/x86/kvm/lapic.h |    1 +
>  arch/x86/kvm/x86.c   |    6 +++++-
>  virt/kvm/ioapic.c    |    9 +++++++--
>  virt/kvm/ioapic.h    |    3 ++-
>  5 files changed, 24 insertions(+), 10 deletions(-)
> 
> diff --git a/arch/x86/kvm/lapic.c b/arch/x86/kvm/lapic.c
> index ce8d6f6..686afee 100644
> --- a/arch/x86/kvm/lapic.c
> +++ b/arch/x86/kvm/lapic.c
> @@ -458,6 +458,15 @@ static inline int apic_find_highest_isr(struct kvm_lapic *apic)
>  	return result;
>  }
>  
> +void kvm_apic_update_tmr(struct kvm_vcpu *vcpu, u32 *tmr)
> +{
> +	struct kvm_lapic *apic = vcpu->arch.apic;
> +	int i;
> +
> +	for (i = 0; i < 8; i++)
> +		apic_set_reg(apic, APIC_TMR + 0x10 * i, tmr[i]);
> +}
> +
>  static void apic_update_ppr(struct kvm_lapic *apic)
>  {
>  	u32 tpr, isrv, ppr, old_ppr;
> @@ -647,12 +656,6 @@ static int __apic_accept_irq(struct kvm_lapic *apic, int delivery_mode,
>  		if (unlikely(!apic_enabled(apic)))
>  			break;
>  
> -		if (trig_mode) {
> -			apic_debug("level trig mode for vector %d", vector);
> -			apic_set_vector(vector, apic->regs + APIC_TMR);
> -		} else
> -			apic_clear_vector(vector, apic->regs + APIC_TMR);
> -
>  		result = !apic_test_and_set_irr(vector, apic);
>  		trace_kvm_apic_accept_irq(vcpu->vcpu_id, delivery_mode,
>  					  trig_mode, vector, !result);
> diff --git a/arch/x86/kvm/lapic.h b/arch/x86/kvm/lapic.h
> index baa20cf..599076e 100644
> --- a/arch/x86/kvm/lapic.h
> +++ b/arch/x86/kvm/lapic.h
> @@ -53,6 +53,7 @@ void kvm_lapic_set_base(struct kvm_vcpu *vcpu, u64 value);
>  u64 kvm_lapic_get_base(struct kvm_vcpu *vcpu);
>  void kvm_apic_set_version(struct kvm_vcpu *vcpu);
>  
> +void kvm_apic_update_tmr(struct kvm_vcpu *vcpu, u32 *tmr);
>  int kvm_apic_match_physical_addr(struct kvm_lapic *apic, u16 dest);
>  int kvm_apic_match_logical_addr(struct kvm_lapic *apic, u8 mda);
>  int kvm_apic_set_irq(struct kvm_vcpu *vcpu, struct kvm_lapic_irq *irq);
> diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
> index 64241b6..6ad7760 100644
> --- a/arch/x86/kvm/x86.c
> +++ b/arch/x86/kvm/x86.c
> @@ -5650,14 +5650,18 @@ static void kvm_gen_update_masterclock(struct kvm *kvm)
>  static void vcpu_scan_ioapic(struct kvm_vcpu *vcpu)
>  {
>  	u64 eoi_exit_bitmap[4];
> +	u64 tmr[4];
>  
>  	if (!kvm_lapic_enabled(vcpu))
>  		return;
>  
>  	memset(eoi_exit_bitmap, 0, 32);
> +	memset(tmr, 0, 32);
>  
> -	kvm_ioapic_scan_entry(vcpu, (unsigned long *)eoi_exit_bitmap);
> +	kvm_ioapic_scan_entry(vcpu, (unsigned long *)eoi_exit_bitmap,
> +			(unsigned long *)tmr);
>  	kvm_x86_ops->load_eoi_exitmap(vcpu, eoi_exit_bitmap);
> +	kvm_apic_update_tmr(vcpu, (u32 *)tmr);
Again, cast it inside if needed.

>  }
>  
>  static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
> diff --git a/virt/kvm/ioapic.c b/virt/kvm/ioapic.c
> index f37c889..b704b67 100644
> --- a/virt/kvm/ioapic.c
> +++ b/virt/kvm/ioapic.c
> @@ -120,7 +120,8 @@ static void update_handled_vectors(struct kvm_ioapic *ioapic)
>  }
>  
>  void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu,
> -			unsigned long *eoi_exit_bitmap)
> +			unsigned long *eoi_exit_bitmap,
> +			unsigned long *tmr)
>  {
>  	struct kvm_ioapic *ioapic = vcpu->kvm->arch.vioapic;
>  	union kvm_ioapic_redirect_entry *e;
> @@ -135,8 +136,12 @@ void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu,
>  			 kvm_irq_has_notifier(ioapic->kvm, KVM_IRQCHIP_IOAPIC,
>  				 index))) {
>  			if (kvm_apic_match_dest(vcpu, NULL, 0,
> -				e->fields.dest_id, e->fields.dest_mode))
> +				e->fields.dest_id, e->fields.dest_mode)) {
> +
>  				__set_bit(irqe.vector, eoi_exit_bitmap);
> +				if (e->fields.trig_mode == IOAPIC_LEVEL_TRIG)
> +					__set_bit(irqe.vector, tmr);
> +			}
>  		}
>  	}
>  	spin_unlock(&ioapic->lock);
> diff --git a/virt/kvm/ioapic.h b/virt/kvm/ioapic.h
> index e3538ba..280b4fc 100644
> --- a/virt/kvm/ioapic.h
> +++ b/virt/kvm/ioapic.h
> @@ -84,6 +84,7 @@ int kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state);
>  int kvm_set_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state);
>  void kvm_vcpu_scan_ioapic(struct kvm *kvm);
>  void kvm_ioapic_scan_entry(struct kvm_vcpu *vcpu,
> -			unsigned long *eoi_exit_bitmap);
> +			unsigned long *eoi_exit_bitmap,
> +			unsigned long *tmr);
>  
>  #endif
> -- 
> 1.7.1

--
			Gleb.
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [KVM ARM]     [KVM ia64]     [KVM ppc]     [Virtualization Tools]     [Spice Development]     [Libvirt]     [Libvirt Users]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite Questions]     [Linux Kernel]     [Linux SCSI]     [XFree86]
  Powered by Linux