From: Gavin Shan <gwshan@linux.vnet.ibm.com>
To: Alex Williamson <alex.williamson@redhat.com>
Cc: david@gibson.dropbear.id.au, qemu-ppc@nongnu.org,
Gavin Shan <gwshan@linux.vnet.ibm.com>,
qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [Qemu-ppc] [PATCH v2 2/3] VFIO: Disable INTx interrupt on EEH reset
Date: Wed, 18 Mar 2015 15:54:09 +1100 [thread overview]
Message-ID: <20150318045409.GA18622@shangw> (raw)
In-Reply-To: <1426627006.3643.342.camel@redhat.com>
On Tue, Mar 17, 2015 at 03:16:46PM -0600, Alex Williamson wrote:
>On Tue, 2015-03-17 at 03:31 +1100, Gavin Shan wrote:
>> When Linux guest recovers from EEH error on the following Emulex
>> adapter, the MSIx interrupts are disabled and the INTx emulation
>> is enabled. One INTx interrupt is injected to the guest by host
>> because of detected pending INTx interrupts on the adapter. QEMU
>> disables mmap'ed BAR regions and starts a timer to enable those
>> regions at later point the INTx interrupt handler. Unfortunately,
>> "VFIOPCIDevice->intx.pending" isn't cleared, meaning those disabled
>> mapp'ed BAR regions won't be reenabled properly. It leads to EEH
>> recovery failure at guest side because of hanged MMIO access.
>>
>> # lspci | grep Emulex
>> 0000:01:00.0 Ethernet controller: Emulex Corporation \
>> OneConnect 10Gb NIC (be3) (rev 02)
>> 0000:01:00.1 Ethernet controller: Emulex Corporation \
>> OneConnect 10Gb NIC (be3) (rev 02)
>>
>> The patch disables INTx interrupt before doing EEH reset to avoid
>> the issue.
>>
>> Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com>
>> ---
>> hw/vfio/pci.c | 13 +++++++++++++
>> 1 file changed, 13 insertions(+)
>>
>> diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c
>> index fca1edc..bfa3d0c 100644
>> --- a/hw/vfio/pci.c
>> +++ b/hw/vfio/pci.c
>> @@ -3340,6 +3340,14 @@ int vfio_container_eeh_event(AddressSpace *as, int32_t groupid,
>> * disable it so that it can be reenabled properly. Also,
>> * the cached MSIx table should be cleared as it's not
>> * reflecting the contents in hardware.
>> + *
>> + * We might have INTx interrupt whose handler disables the
>> + * memory mapped BARs. The INTx pending state can't be
>> + * cleared with memory BAR access in slow path. The timer
>> + * kicked by the INTx interrupt handler won't enable those
>> + * disabled memory mapped BARs, which leads to hanged MMIO
>> + * register access and EEH recovery failure. We simply disable
>> + * INTx if it has been enabled.
>> */
>
>This feels like a quick hack for a problem we don't really understand.
>Why is INTx being fired through QEMU rather than KVM? Why isn't the
>INTx re-enabling happening since this is exactly the scenario where it's
>supposed to work (ie. INTx occurs, BAR mmap disabled, guest accesses
>BAR, mmap re-enabled, INTx unmasked)?
>
Indeed. It's a quick hack before finding the root cause about why slow
path doesn't work when fast path is disabled. I'm still tracing it and
hopefully I can find something soon. Note that: KVM IRQFD isn't enabled
on the system I was doing experiments.
Thanks,
Gavin
>> QLIST_FOREACH(vbasedev, &group->device_list, next) {
>> vdev = container_of(vbasedev, VFIOPCIDevice, vbasedev);
>> @@ -3348,6 +3356,11 @@ int vfio_container_eeh_event(AddressSpace *as, int32_t groupid,
>> }
>>
>> msix_reset(&vdev->pdev);
>> +
>> + /* Disable INTx */
>> + if (vdev->interrupt == VFIO_INT_INTx) {
>> + vfio_disable_intx(vdev);
>> + }
>> }
>>
>> break;
>
>
>
>
next prev parent reply other threads:[~2015-03-18 4:55 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-16 16:31 [Qemu-devel] [PATCH v2 1/3] VFIO: Clear stale MSIx table during EEH reset Gavin Shan
2015-03-16 16:31 ` [Qemu-devel] [PATCH v2 2/3] VFIO: Disable INTx interrupt on " Gavin Shan
2015-03-17 21:16 ` Alex Williamson
2015-03-18 4:54 ` Gavin Shan [this message]
2015-03-20 4:01 ` [Qemu-devel] [Qemu-ppc] " Gavin Shan
2015-03-20 5:57 ` Gavin Shan
2015-03-16 16:31 ` [Qemu-devel] [PATCH v2 3/3] sPAPR: Reenable EEH functionality on reboot Gavin Shan
2015-03-17 21:09 ` [Qemu-devel] [PATCH v2 1/3] VFIO: Clear stale MSIx table during EEH reset Alex Williamson
2015-03-17 23:26 ` Gavin Shan
2015-03-23 5:05 ` Gavin Shan
2015-03-20 6:04 ` David Gibson
2015-03-20 6:27 ` [Qemu-devel] [Qemu-ppc] " Gavin Shan
2015-03-23 5:06 ` David Gibson
2015-03-23 5:25 ` Gavin Shan
2015-03-24 5:41 ` David Gibson
2015-03-24 6:24 ` Gavin Shan
2015-03-24 6:54 ` David Gibson
2015-03-24 12:53 ` Alex Williamson
2015-03-26 0:53 ` Gavin Shan
2015-03-26 1:10 ` David Gibson
2015-03-26 1:30 ` Gavin Shan
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=20150318045409.GA18622@shangw \
--to=gwshan@linux.vnet.ibm.com \
--cc=alex.williamson@redhat.com \
--cc=david@gibson.dropbear.id.au \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@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).