qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Cam Macdonell <cam@cs.ualberta.ca>
To: Jan Kiszka <jan.kiszka@siemens.com>
Cc: "qemu-devel@nongnu.org Developers" <qemu-devel@nongnu.org>,
	"Michael S. Tsirkin" <mst@redhat.com>
Subject: [Qemu-devel] MSI-X bug with ivshmem since msix_reset moved to PCI
Date: Thu, 23 Aug 2012 17:13:41 -0600	[thread overview]
Message-ID: <CAKjmthLitHaMp9+aOiipQinKPo213rEQPzNFyapS4OZEEvqgJQ@mail.gmail.com> (raw)

Hi Jan,

I've bisected a bug in which MSI interrupts are not being delivered to
the following patch, where msix_reset was moved in tot he PCI core.

commit cbd2d4342b3d42ab33baa99f5b7a23491b5692f2
Author: Jan Kiszka <jan.kiszka@siemens.com>
Date:   Tue May 15 20:09:56 2012 -0300

    msi: Invoke msi/msix_reset from PCI core

    There is no point in pushing this burden to the devices, they tend to
    forget to call them (like intel-hda, ahci, xhci did). Instead, reset
    functions are now called from pci_device_reset. They do nothing if
    MSI/MSI-X is not in use.

I've been debugging and it seems that when msix_notify() is triggered
the second test in the "if" fails

/* Send an MSI-X message */
void msix_notify(PCIDevice *dev, unsigned vector)
{
    MSIMessage msg;

    if (vector >= dev->msix_entries_nr || !dev->msix_entry_used[vector])
        return;

   …
}

here is some MSI-X debugging statements

msix_init
IVSHMEM: msix initialized (1 vectors)
IVSHMEM: using vector 0
IVSHMEM: ivshmem_reset
IVSHMEM: using vector 0
msix_reset
msix_free_irq_entries 0x7fd52d1cea20

msix_free_irq_entries() sets dev->msix_entries_nr to 0, so I think it
may be the cause.

Shouldn't ivshmem's reset (which reenables the vectors) be triggered
by the msix_reset?

Thanks,
Cam

p.s. And apologies, I should've caught this bug closer to that patch
being merged.

             reply	other threads:[~2012-08-23 23:13 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-08-23 23:13 Cam Macdonell [this message]
2012-08-24  5:59 ` [Qemu-devel] MSI-X bug with ivshmem since msix_reset moved to PCI Jan Kiszka
2012-08-24  8:11   ` Michael S. Tsirkin
2012-08-24  8:15     ` Jan Kiszka
2012-08-24  8:36       ` Michael S. Tsirkin
2012-08-24  8:39         ` Jan Kiszka
2012-08-24  9:20           ` Michael S. Tsirkin

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=CAKjmthLitHaMp9+aOiipQinKPo213rEQPzNFyapS4OZEEvqgJQ@mail.gmail.com \
    --to=cam@cs.ualberta.ca \
    --cc=jan.kiszka@siemens.com \
    --cc=mst@redhat.com \
    --cc=qemu-devel@nongnu.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;
as well as URLs for NNTP newsgroup(s).