public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
From: Sheng Yang <sheng@linux.intel.com>
To: kvm@vger.kernel.org
Cc: Gleb Natapov <gleb@redhat.com>, avi@redhat.com
Subject: Re: [PATCH 1/3] Make kvm_cpu_(has|get)_interrupt() work for userspace irqchip too.
Date: Tue, 7 Apr 2009 17:56:13 +0800	[thread overview]
Message-ID: <200904071756.13864.sheng@linux.intel.com> (raw)
In-Reply-To: <20090407090811.2074.19043.stgit@trex.usersys.redhat.com>

On Tuesday 07 April 2009 17:08:12 Gleb Natapov wrote:
> Signed-off-by: Gleb Natapov <gleb@redhat.com>
> ---
>
>  arch/x86/kvm/irq.c |   39 +++++++++++++++++++++++----------------
>  arch/x86/kvm/svm.c |   11 +++++++----
>  arch/x86/kvm/vmx.c |   18 +++++++++---------
>  arch/x86/kvm/x86.c |    4 ++--
>  4 files changed, 41 insertions(+), 31 deletions(-)
>
> diff --git a/arch/x86/kvm/irq.c b/arch/x86/kvm/irq.c
> index cf17ed5..6974e7c 100644
> --- a/arch/x86/kvm/irq.c
> +++ b/arch/x86/kvm/irq.c
> @@ -24,6 +24,7 @@
>
>  #include "irq.h"
>  #include "i8254.h"
> +#include "x86.h"
>
>  /*
>   * check if there are pending timer events
> @@ -48,14 +49,17 @@ int kvm_cpu_has_interrupt(struct kvm_vcpu *v)
>  {
>  	struct kvm_pic *s;
>
> -	if (kvm_apic_has_interrupt(v) == -1) {	/* LAPIC */
> -		if (kvm_apic_accept_pic_intr(v)) {
> -			s = pic_irqchip(v->kvm);	/* PIC */
> -			return s->output;
> -		} else
> -			return 0;
> +	if (irqchip_in_kernel(v->kvm)) {
> +		if (kvm_apic_has_interrupt(v) == -1) {	/* LAPIC */
> +			if (kvm_apic_accept_pic_intr(v)) {
> +				s = pic_irqchip(v->kvm);	/* PIC */
> +				return s->output;
> +			} else
> +				return 0;
> +		}
> +		return 1;
>  	}
> -	return 1;
> +	return v->arch.irq_summary;
>  }

Use if (!irqchip_in_kernel(v->kvm)) for userspace seems more simple(rather 
than a series of indention...).

>  EXPORT_SYMBOL_GPL(kvm_cpu_has_interrupt);
>
> @@ -64,18 +68,21 @@ EXPORT_SYMBOL_GPL(kvm_cpu_has_interrupt);
>   */
>  int kvm_cpu_get_interrupt(struct kvm_vcpu *v)
>  {
> -	struct kvm_pic *s;
> -	int vector;
> +	if (irqchip_in_kernel(v->kvm)) {
> +		struct kvm_pic *s;
> +		int vector;
>
> -	vector = kvm_get_apic_interrupt(v);	/* APIC */
> -	if (vector == -1) {
> -		if (kvm_apic_accept_pic_intr(v)) {
> -			s = pic_irqchip(v->kvm);
> -			s->output = 0;		/* PIC */
> -			vector = kvm_pic_read_irq(v->kvm);
> +		vector = kvm_get_apic_interrupt(v);	/* APIC */
> +		if (vector == -1) {
> +			if (kvm_apic_accept_pic_intr(v)) {
> +				s = pic_irqchip(v->kvm);
> +				s->output = 0;		/* PIC */
> +				vector = kvm_pic_read_irq(v->kvm);
> +			}
>  		}
> +		return vector;
>  	}
> -	return vector;
> +	return kvm_pop_irq(v);
>  }
>  EXPORT_SYMBOL_GPL(kvm_cpu_get_interrupt);
>
> diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c
> index 053f3c5..1903c27 100644
> --- a/arch/x86/kvm/svm.c
> +++ b/arch/x86/kvm/svm.c
> @@ -2089,8 +2089,9 @@ static int interrupt_window_interception(struct
> vcpu_svm *svm, * If the user space waits to inject interrupts, exit as soon
> as * possible
>  	 */
> -	if (kvm_run->request_interrupt_window &&
> -	    !svm->vcpu.arch.irq_summary) {
> +	if (!irqchip_in_kernel(svm->vcpu.kvm) &&
> +	    kvm_run->request_interrupt_window &&
> +	    !kvm_cpu_has_interrupt(&svm->vcpu)) {
>  		++svm->vcpu.stat.irq_window_exits;
>  		kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
>  		return 0;
> @@ -2371,7 +2372,8 @@ static void do_interrupt_requests(struct kvm_vcpu
> *vcpu, (svm->vmcb->save.rflags & X86_EFLAGS_IF) &&
>  		 (svm->vcpu.arch.hflags & HF_GIF_MASK));
>
> -	if (svm->vcpu.arch.interrupt_window_open && svm->vcpu.arch.irq_summary)
> +	if (svm->vcpu.arch.interrupt_window_open &&
> +	    kvm_cpu_has_interrupt(&svm->vcpu))
>  		/*
>  		 * If interrupts enabled, and not blocked by sti or mov ss. Good.
>  		 */
> @@ -2381,7 +2383,8 @@ static void do_interrupt_requests(struct kvm_vcpu
> *vcpu, * Interrupts blocked.  Wait for unblock.
>  	 */
>  	if (!svm->vcpu.arch.interrupt_window_open &&
> -	    (svm->vcpu.arch.irq_summary || kvm_run->request_interrupt_window))
> +	    (kvm_cpu_has_interrupt(&svm->vcpu) ||
> +	     kvm_run->request_interrupt_window))
>  		svm_set_vintr(svm);
>  	else
>  		svm_clear_vintr(svm);
> diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
> index c6997c0..b3292c1 100644
> --- a/arch/x86/kvm/vmx.c
> +++ b/arch/x86/kvm/vmx.c
> @@ -2535,21 +2535,20 @@ static void do_interrupt_requests(struct kvm_vcpu
> *vcpu, vmx_inject_nmi(vcpu);
>  		if (vcpu->arch.nmi_pending)
>  			enable_nmi_window(vcpu);
> -		else if (vcpu->arch.irq_summary
> -			 || kvm_run->request_interrupt_window)
> +		else if (kvm_cpu_has_interrupt(vcpu) ||
> +			 kvm_run->request_interrupt_window)
>  			enable_irq_window(vcpu);
>  		return;
>  	}
>
>  	if (vcpu->arch.interrupt_window_open) {
> -		if (vcpu->arch.irq_summary && !vcpu->arch.interrupt.pending)
> -			kvm_queue_interrupt(vcpu, kvm_pop_irq(vcpu));
> +		if (kvm_cpu_has_interrupt(vcpu) && !vcpu->arch.interrupt.pending)
> +			kvm_queue_interrupt(vcpu, kvm_cpu_get_interrupt(vcpu));
>
>  		if (vcpu->arch.interrupt.pending)
>  			vmx_inject_irq(vcpu, vcpu->arch.interrupt.nr);
> -	}
> -	if (!vcpu->arch.interrupt_window_open &&
> -	    (vcpu->arch.irq_summary || kvm_run->request_interrupt_window))
> +	} else if(kvm_cpu_has_interrupt(vcpu) ||
> +		  kvm_run->request_interrupt_window)
>  		enable_irq_window(vcpu);
>  }
>
> @@ -2976,8 +2975,9 @@ static int handle_interrupt_window(struct kvm_vcpu
> *vcpu, * If the user space waits to inject interrupts, exit as soon as *
> possible
>  	 */
> -	if (kvm_run->request_interrupt_window &&
> -	    !vcpu->arch.irq_summary) {
> +	if (!irqchip_in_kernel(vcpu->kvm) &&
> +	    kvm_run->request_interrupt_window &&

I think kvm_run->request_interrupt_window can indicate it's userspace irqchip?

> +	    !kvm_cpu_has_interrupt(vcpu)) {
>  		kvm_run->exit_reason = KVM_EXIT_IRQ_WINDOW_OPEN;
>  		return 0;
>  	}
> diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
> index 52c7a29..6e30cef 100644
> --- a/arch/x86/kvm/x86.c
> +++ b/arch/x86/kvm/x86.c
> @@ -3064,7 +3064,7 @@ EXPORT_SYMBOL_GPL(kvm_emulate_cpuid);
>  static int dm_request_for_irq_injection(struct kvm_vcpu *vcpu,
>  					  struct kvm_run *kvm_run)
>  {
> -	return (!vcpu->arch.irq_summary &&
> +	return (!irqchip_in_kernel(vcpu->kvm) && !kvm_cpu_has_interrupt(vcpu) &&
>  		kvm_run->request_interrupt_window &&

ditto.

-- 
regards
Yang, Sheng

>  		vcpu->arch.interrupt_window_open &&
>  		(kvm_x86_ops->get_rflags(vcpu) & X86_EFLAGS_IF));
> @@ -3081,7 +3081,7 @@ static void post_kvm_run_save(struct kvm_vcpu *vcpu,
>  	else
>  		kvm_run->ready_for_interrupt_injection =
>  					(vcpu->arch.interrupt_window_open &&
> -					 vcpu->arch.irq_summary == 0);
> +					 !kvm_cpu_has_interrupt(vcpu));
>  }
>
>  static void vapic_enter(struct kvm_vcpu *vcpu)
>
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html



  parent reply	other threads:[~2009-04-07  9:56 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-04-07  9:08 [PATCH 1/3] Make kvm_cpu_(has|get)_interrupt() work for userspace irqchip too Gleb Natapov
2009-04-07  9:08 ` [PATCH 2/3] Consolidate userspace and kernel interrupt injection for VMX Gleb Natapov
2009-04-11 11:29   ` Avi Kivity
2009-04-11 19:53     ` Gleb Natapov
2009-04-07  9:08 ` [PATCH 3/3] Cleanup vmx_intr_assist() Gleb Natapov
2009-04-11 11:30   ` Avi Kivity
2009-04-11 19:52     ` Gleb Natapov
2009-04-07  9:56 ` Sheng Yang [this message]
2009-04-07 10:07   ` [PATCH 1/3] Make kvm_cpu_(has|get)_interrupt() work for userspace irqchip too Gleb Natapov
2009-04-11 11:24     ` Avi Kivity

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200904071756.13864.sheng@linux.intel.com \
    --to=sheng@linux.intel.com \
    --cc=avi@redhat.com \
    --cc=gleb@redhat.com \
    --cc=kvm@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox