kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Avi Kivity <avi@redhat.com>
To: Gleb Natapov <gleb@redhat.com>
Cc: kvm@vger.kernel.org, mtosatti@redhat.com
Subject: Re: [PATCH 1/2] KVM: PIC: call ack notifiers for irqs that are dropped form irr
Date: Thu, 26 Jul 2012 12:18:19 +0300	[thread overview]
Message-ID: <50110B5B.7070707@redhat.com> (raw)
In-Reply-To: <20120726091123.GT26120@redhat.com>

On 07/26/2012 12:11 PM, Gleb Natapov wrote:
> On Thu, Jul 26, 2012 at 12:09:36PM +0300, Avi Kivity wrote:
>> On 07/26/2012 10:00 AM, Gleb Natapov wrote:
>> > After commit 242ec97c358256 PIT interrupts are no longer delivered after
>> > PIC reset. It happens because PIT injects interrupt only if previous one
>> > was acked, but since on PIC reset it is dropped from irr it will never
>> > be delivered and hence acknowledged. Fix that by calling ack notifier on
>> > PIC reset.
>> > 
>> > Signed-off-by: Gleb Natapov <gleb@redhat.com>
>> > ---
>> >  arch/x86/kvm/i8259.c |   17 +++++++++++++++++
>> >  1 file changed, 17 insertions(+)
>> > 
>> > diff --git a/arch/x86/kvm/i8259.c b/arch/x86/kvm/i8259.c
>> > index 81cf4fa..0147d16 100644
>> > --- a/arch/x86/kvm/i8259.c
>> > +++ b/arch/x86/kvm/i8259.c
>> > @@ -305,6 +305,11 @@ static void pic_ioport_write(void *opaque, u32 addr, u32 val)
>> >  	addr &= 1;
>> >  	if (addr == 0) {
>> >  		if (val & 0x10) {
>> > +			u8 edge_irr = s->irr & ~s->elcr;
>> > +			int i;
>> > +			bool found;
>> > +			struct kvm_vcpu *vcpu;
>> > +
>> >  			s->init4 = val & 1;
>> >  			s->last_irr = 0;
>> >  			s->irr &= s->elcr;
>> > @@ -322,6 +327,18 @@ static void pic_ioport_write(void *opaque, u32 addr, u32 val)
>> >  			if (val & 0x08)
>> >  				pr_pic_unimpl(
>> >  					"level sensitive irq not supported");
>> > +
>> > +			kvm_for_each_vcpu(i, vcpu, s->pics_state->kvm)
>> > +				if (kvm_apic_accept_pic_intr(vcpu)) {
>> > +					found = true;
>> > +					break;
>> > +				}
>> > +
>> > +
>> > +			if (found)
>> > +				for (irq = 0; irq < PIC_NUM_PINS/2; irq++)
>> > +					if (edge_irr & (1 << irq))
>> > +						pic_clear_isr(s, irq);
>> >  		} else if (val & 0x08) {
>> 
>> 
>> This duplicates the code in pic_reset().  Please extract it into a
>> function (just the new code, since this is going into 3.6).
>> 
>> 
> Extract what into a function? I specifically sent follow up patch to
> cleanup duplicates.

So you did.  I didn't even look at it because I wasn't going to send
cleanup patches to 3.6.

I'll apply to master then.  Please repost the cleanup once 3.6 is updated.

-- 
error compiling committee.c: too many arguments to function



      reply	other threads:[~2012-07-26  9:18 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-26  7:00 [PATCH 1/2] KVM: PIC: call ack notifiers for irqs that are dropped form irr Gleb Natapov
2012-07-26  7:00 ` [PATCH 2/2] KVM: cleanup pic reset Gleb Natapov
2012-07-26  9:09 ` [PATCH 1/2] KVM: PIC: call ack notifiers for irqs that are dropped form irr Avi Kivity
2012-07-26  9:11   ` Gleb Natapov
2012-07-26  9:18     ` Avi Kivity [this message]

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=50110B5B.7070707@redhat.com \
    --to=avi@redhat.com \
    --cc=gleb@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=mtosatti@redhat.com \
    /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;
as well as URLs for NNTP newsgroup(s).